:root {
            --neon-pink: #ff2a6d;
            --cyber-teal: #05d9e8;
            --dark-purple: #1a1a2e;
            --matrix-green: #0f0;
            --electric-blue: #005678;
            --neon-yellow: #d1f700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-purple);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)),
                url('../img/06.webp');
            background-size: cover;
            background-attachment: fixed;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        
        .logo {
            color: var(--neon-yellow);
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 0 0 5px var(--neon-yellow);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--cyber-teal);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-shadow: 0 0 3px var(--cyber-teal);
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 8px var(--neon-pink);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--cyber-teal);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        main {
            margin-top: 80px;
            padding: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        h1 {
            color: var(--neon-pink);
            text-shadow: 0 0 8px var(--neon-pink);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        h2 {
            color: var(--cyber-teal);
            margin: 2rem 0 1rem;
        }
        
        p, li {
            margin-bottom: 1rem;
        }
        
        ul {
            margin-left: 2rem;
        }
        
        footer {
            background-color: var(--dark-purple);
            color: white;
            padding: 3rem 2rem;
            border-top: 1px solid var(--neon-pink);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: var(--neon-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
            margin-left: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul li a {
            color: var(--cyber-teal);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--neon-pink);
        }
        
        .contact-info {
            margin-top: 1rem;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--electric-blue);
            margin-top: 2rem;
        }
        
        .disclaimer {
            background-color: rgba(255, 42, 109, 0.1);
            padding: 1rem;
            margin-top: 2rem;
            font-size: 0.8rem;
            border-top: 1px solid var(--neon-pink);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark-purple);
            color: white;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--cyber-teal);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            flex: 1;
            margin-right: 1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: transparent;
            color: var(--neon-yellow);
            border: 2px solid var(--neon-yellow);
            border-radius: 0;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 0 10px var(--neon-yellow);
        }
        
        .btn:hover {
            background-color: var(--neon-yellow);
            color: var(--dark-purple);
            box-shadow: 0 0 20px var(--neon-yellow);
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-purple);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                border-bottom: 1px solid var(--neon-pink);
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

