:root {
            --neon-pink: #ff2a6d;
            --cyber-blue: #05d9e8;
            --dark-purple: #2e2157;
            --matrix-green: #0f0;
            --black: #0d0221;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--black);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            color: var(--neon-pink);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--cyber-blue);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .nav-links a:hover::after {
            transform: scaleX(1);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--cyber-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        .terms-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            background-color: rgba(46, 33, 87, 0.5);
            border-radius: 10px;
            margin-bottom: 3rem;
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
            color: var(--neon-pink);
            text-align: center;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--cyber-blue);
        }
        p, li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .disclaimer {
            background-color: rgba(13, 2, 33, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid var(--neon-pink);
        }
        footer {
            background-color: var(--dark-purple);
            padding: 3rem 2rem;
            color: white;
            border-top: 1px solid var(--neon-pink);
        }
        .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;
            color: var(--neon-pink);
            margin-bottom: 1rem;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        .footer-links h3 {
            color: var(--cyber-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }
        .contact-info {
            margin-top: 1rem;
        }
        .contact-info p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            margin-right: 0.5rem;
            color: var(--cyber-blue);
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: rgba(13, 2, 33, 0.9);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            .nav-links 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);
            }
            h1 {
                font-size: 2rem;
            }
            .terms-container {
                padding: 1.5rem;
            }
        }

