:root {
            --neon-pink: #FF2A6D;
            --electric-blue: #05D9E8;
            --cyber-purple: #D300C5;
            --matrix-green: #00FECA;
            --dark: #0D0221;
            --light: #E5F4E3;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--electric-blue);
        }
        
        .logo {
            color: var(--matrix-green);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--matrix-green);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--electric-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 150px 5% 100px;
            position: relative;
        }
        
        h1, h2, h3 {
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3rem;
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
            margin-bottom: 40px;
        }
        
        h2 {
            font-size: 2rem;
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
            margin-top: 30px;
        }
        
        h3 {
            font-size: 1.5rem;
            color: var(--matrix-green);
            margin-top: 25px;
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        .disclaimer {
            background-color: #0D0221;
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid var(--neon-pink);
        }
        
        footer {
            background-color: #0A0118;
            padding: 50px 5% 30px;
            color: var(--light);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            color: var(--matrix-green);
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--matrix-green);
        }
        
        .footer-links h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--neon-pink);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 2px solid var(--electric-blue);
            transform: translateY(100%);
            transition: transform 0.5s ease;
            z-index: 1001;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-right: 20px;
        }
        
        .cookie-btn {
            background-color: var(--neon-pink);
            color: var(--light);
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 120px 5% 80px;
            }
            
            .burger {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 60%;
                height: calc(100vh - 80px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.5s ease;
                border-left: 2px solid var(--electric-blue);
            }
            
            nav ul.active {
                right: 0;
            }
            
            nav ul li {
                margin: 20px 0;
            }
        }

