:root {
            --primary: #00ffcc;
            --secondary: #ff00ff;
            --dark: #0a0a12;
            --darker: #050508;
            --light: #e0e0ff;
            --accent: #ff00aa;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 18, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--primary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            margin-top: 100px;
            padding: 50px 0;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
        }
        
        .cookie-content {
            background: rgba(10, 10, 18, 0.7);
            border-radius: 10px;
            padding: 40px;
            border: 1px solid rgba(0, 255, 204, 0.3);
        }
        
        .cookie-section {
            margin-bottom: 30px;
        }
        
        .cookie-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .cookie-section h3 {
            font-size: 1.4rem;
            margin: 20px 0 10px;
            color: var(--primary);
        }
        
        .cookie-section p {
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .cookie-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-section li {
            margin-bottom: 10px;
            color: var(--light);
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        
        .cookie-table th,
        .cookie-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookie-table th {
            background-color: rgba(0, 255, 204, 0.1);
            color: var(--primary);
            font-weight: bold;
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .cookie-table tr:hover {
            background-color: rgba(0, 255, 204, 0.05);
        }
        
        /* Footer */
        footer {
            background: var(--darker);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(0, 255, 204, 0.3);
            margin-top: 50px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .footer-logo p {
            color: var(--light);
        }
        
        .footer-links {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-links h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-contact h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--light);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 18, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .cookie-content {
                padding: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .page-title h1 {
                font-size: 1.8rem;
            }
        }

