* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #00FFFF;
            --secondary-color: #FF00FF;
            --dark-color: #0D0221;
            --light-color: #1A1A3E;
            --accent-color: #FF3366;
            --text-color: #E0E0FF;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--text-color);
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(255, 51, 102, 0.03) 0%, transparent 50%);
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--primary-color);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 0 10px var(--primary-color);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
            text-shadow: 0 0 5px var(--primary-color);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            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(--primary-color);
            margin: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 0 5px var(--primary-color);
        }
        
        main {
            padding: 100px 5% 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::before, .page-title h1::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .page-title h1::before {
            left: -60px;
        }
        
        .page-title h1::after {
            right: -60px;
        }
        
        .privacy-content {
            background-color: rgba(26, 26, 62, 0.5);
            border: 1px solid rgba(0, 255, 255, 0.3);
            padding: 2rem;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .privacy-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
            z-index: 0;
        }
        
        .privacy-section {
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .privacy-section h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin: 1.5rem 0 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .privacy-section p {
            margin-bottom: 1rem;
        }
        
        .privacy-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        
        .privacy-section li {
            margin-bottom: 0.5rem;
        }
        
        footer {
            background-color: var(--dark-color);
            color: var(--text-color);
            padding: 3rem 5%;
            border-top: 1px solid var(--secondary-color);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-column ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
            text-shadow: 0 0 5px var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(13, 2, 33, 0.95), rgba(26, 26, 62, 0.95));
            color: var(--text-color);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            border-top: 1px solid var(--primary-color);
            box-shadow: 0 -5px 20px rgba(0, 255, 255, 0.3);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            max-width: 800px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .cookie-accept {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: var(--dark-color);
        }
        
        .cookie-accept:hover {
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--text-color);
            border: 1px solid var(--primary-color);
        }
        
        .cookie-decline:hover {
            background-color: rgba(0, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background: linear-gradient(90deg, rgba(13, 2, 33, 0.95), rgba(26, 26, 62, 0.95));
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                border-left: 1px solid var(--primary-color);
                border-bottom: 1px solid var(--primary-color);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .page-title h1::before, .page-title h1::after {
                width: 30px;
            }
            
            .page-title h1::before {
                left: -40px;
            }
            
            .page-title h1::after {
                right: -40px;
            }
            
            .cookie-banner {
                flex-direction: column;
                gap: 1rem;
            }
        }

