/* Legal Pages Styling */
:root {
    --background: #1a1a1a;
    --foreground: #ffffff;
    --card: #2d2d2d;
    --primary: #dc2626;
    --secondary: #f59e0b;
    --muted: #6b7280;
    --muted-foreground: #d1d5db;
    --border: #4b5563;
    --radius: 0.5rem;
    --font-orbitron: 'Orbitron', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    background: var(--card);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-title {
    font-family: var(--font-orbitron);
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Legal Section */
.legal-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-orbitron);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--muted-foreground);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-orbitron);
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 2rem 0 1rem;
}

.legal-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--background);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--secondary);
}

/* Footer */
.footer {
    background: var(--card);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-title {
    font-family: var(--font-orbitron);
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
}

.footer-link:hover,
.footer-link.active {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: var(--muted-foreground);
    font-size: 1.2rem;
}

.footer-social-link:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    color: var(--muted-foreground);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--card);
        padding: 1rem;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .legal-content {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.6rem 1rem;
    }
}