:root {
            --primary: #FF5E7D;
            --secondary: #47B8E0;
            --accent: #FFD166;
            --dark: #1A1A2E;
            --light: #F8F8F8;
            --retro-orange: #FF7B25;
            --retro-blue: #00C4CC;
            --retro-pink: #FF3E6D;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: linear-gradient(to right, var(--dark) 0%, #16213E 100%);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--retro-orange);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--retro-orange);
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--retro-orange);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--retro-orange);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        .cookie-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            margin-bottom: 4rem;
        }

        h1, h2, h3 {
            font-family: 'Arial Black', sans-serif;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: 2.5rem;
            color: var(--retro-orange);
            margin-bottom: 2rem;
            text-align: center;
        }

        h2 {
            font-size: 1.8rem;
            color: var(--retro-blue);
            margin-top: 2rem;
            border-bottom: 2px solid var(--retro-orange);
            padding-bottom: 0.5rem;
        }

        h3 {
            font-size: 1.4rem;
            color: var(--accent);
            margin-top: 1.5rem;
        }

        p, li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }

        th, td {
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.8rem;
            text-align: left;
        }

        th {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--retro-blue);
        }

        footer {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid var(--retro-orange);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--retro-orange);
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            margin-bottom: 1rem;
        }

        .footer-links h3 {
            color: var(--retro-blue);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--retro-orange);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .footer-contact i {
            color: var(--retro-orange);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .disclaimer {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 2rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }

            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            .burger {
                display: block;
            }

            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active .line2 {
                opacity: 0;
            }

            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .cookie-container {
                padding: 1rem;
            }

            table {
                display: block;
                overflow-x: auto;
            }
        }

