:root {
            --primary: #6e00ff;
            --secondary: #ff00a0;
            --accent: #00f0ff;
            --dark: #0a0a1a;
            --light: #f0f0ff;
            --success: #00ff88;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid var(--primary);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        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: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        nav ul li 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: 50px 5%;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--accent);
            text-align: center;
        }
        
        h2 {
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: var(--accent);
        }
        
        h3 {
            font-size: 1.3rem;
            margin: 30px 0 15px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            text-align: center;
            margin-bottom: 40px;
            opacity: 0.8;
            font-style: italic;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .cookie-table th, .cookie-table td {
            border: 1px solid rgba(110, 0, 255, 0.3);
            padding: 12px 15px;
            text-align: left;
        }
        
        .cookie-table th {
            background-color: rgba(110, 0, 255, 0.1);
            color: var(--accent);
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: rgba(110, 0, 255, 0.05);
        }
        
        footer {
            background-color: #0a0a1a;
            padding: 50px 5% 20px;
            border-top: 1px solid rgba(110, 0, 255, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
            opacity: 0.8;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
            opacity: 1;
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(20, 20, 40, 0.95);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            box-shadow: 0 -5px 20px 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-banner p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .cookie-banner a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .cookie-accept {
            background-color: var(--success);
            color: var(--dark);
            border: none;
        }
        
        .cookie-decline {
            background-color: transparent;
            border: 1px solid var(--light);
            color: var(--light);
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 26, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: clip-path 0.5s ease;
                pointer-events: none;
            }
            
            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            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);
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
        }

