:root {
            --primary: #6C4BFF;
            --secondary: #FF4BE8;
            --accent: #00F7FF;
            --dark: #1A1A2E;
            --light: #F1F1FF;
            --retro-pink: #FF6B9E;
            --retro-blue: #00D4FF;
            --font-main: 'Courier New', monospace;
            --font-heading: 'Arial Black', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-main);
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: bold;
            color: var(--retro-blue);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--retro-pink);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        .privacy-container {
            max-width: 1000px;
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .privacy-title {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--retro-pink);
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
        }
        
        .privacy-section {
            margin-bottom: 40px;
        }
        
        .privacy-section h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--retro-blue);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 5px;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-section ul li {
            margin-bottom: 8px;
        }
        
        footer {
            background-color: #1A1A2E;
            color: var(--light);
            padding: 50px 20px 20px;
            text-align: center;
            border-top: 2px solid var(--primary);
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .footer-logo .logo {
            font-size: 24px;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-links {
            flex: 1;
            min-width: 250px;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--retro-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent);
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .footer-contact h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--retro-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--accent);
            width: 20px;
            text-align: center;
        }
        
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .disclaimer {
            background-color: #0F0F1A;
            color: rgba(255, 255, 255, 0.6);
            padding: 20px;
            font-size: 12px;
            line-height: 1.5;
            text-align: center;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #25253E;
            color: var(--light);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 20px;
            margin-bottom: 10px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background-color: var(--primary);
            color: white;
            border: none;
        }
        
        .cookie-accept:hover {
            background-color: #5A3BE8;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
                border-bottom: 2px solid var(--primary);
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.toggle .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.toggle .line2 {
                opacity: 0;
            }
            
            .burger.toggle .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .privacy-title {
                font-size: 30px;
            }
            
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-logo, .footer-links, .footer-contact {
                text-align: center;
            }
            
            .footer-links ul, .footer-contact p {
                justify-content: center;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

