:root {
            --primary: #6a00f4;
            --secondary: #39ff14;
            --dark: #0a0a0a;
            --light: #f0f0f0;
            --accent: #ff00ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            padding-top: 80px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        .nav-links 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;
        }
        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        h1, h2, h3 {
            font-family: 'Arial Black', sans-serif;
            letter-spacing: 1px;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        h2 {
            font-size: 2rem;
            margin: 2rem 0 1rem;
            color: var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
            color: var(--secondary);
        }
        p {
            line-height: 1.6;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            margin-top: 1rem;
        }
        .btn:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
        }
        .disclaimer {
            background-color: rgba(255, 0, 0, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 3rem;
            border-left: 4px solid var(--accent);
        }
        footer {
            background-color: var(--dark);
            padding: 3rem 2rem;
            border-top: 2px solid var(--primary);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 1rem;
            display: inline-block;
        }
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--light);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .footer-contact p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(106, 0, 244, 0.3);
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1.5rem;
            border-top: 2px solid var(--primary);
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .cookie-banner p {
            margin: 0;
            flex: 1;
            min-width: 250px;
        }
        .cookie-banner-btns {
            display: flex;
            gap: 1rem;
        }
        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .cookie-accept {
            background-color: var(--primary);
            color: var(--light);
            border: none;
        }
        .cookie-accept:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }
        .cookie-decline:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .nav-links {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                border-bottom: 2px solid var(--primary);
            }
            .nav-links.active {
                transform: translateY(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);
            }
        }

