/* Same CSS as index.html */
        :root {
            --primary: #FF4D80;
            --secondary: #00E5FF;
            --accent: #FFEB3B;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --retro-font: 'Courier New', monospace;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: var(--retro-font);
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem;
            border-bottom: 2px solid var(--primary);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        h1, h2, h3 {
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        h1 {
            font-size: 3rem;
            text-transform: uppercase;
        }
        h2 {
            font-size: 2.5rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        footer {
            background: #0F0F1A;
            padding: 3rem 1rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .contact-info {
            margin-bottom: 2rem;
        }
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
            max-width: 800px;
            margin: 0 auto;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 46, 0.95);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            border-top: 2px solid var(--primary);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .cookie-banner.active {
            transform: translateY(0);
        }
        .cookie-banner p {
            margin-right: 1rem;
            flex: 1;
            min-width: 200px;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background: rgba(26, 26, 46, 0.95);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in;
                z-index: 999;
            }
            .nav-links.active {
                transform: translateY(0);
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .burger {
                display: block;
            }
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }

