 :root {
            --bg-black: #050505;
            --neon-pink: #FF3CAC;
            --neon-purple: #B026FF;
            --neon-green: #8AFF00;
            --neon-blue: #00F0FF;
            --glass-white: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Orbitron', sans-serif;
            background: var(--bg-black);
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            position: relative;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(176, 38, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(255, 60, 172, 0.1) 0%, transparent 20%);
        }

        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.1),
                rgba(0, 0, 0, 0.1) 1px,
                transparent 1px,
                transparent 2px
            );
            z-index: -1;
            pointer-events: none;
            animation: scan 8s linear infinite;
        }

        .binary-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.2;
        }

        h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            margin-bottom: 1.5rem;
            position: relative;
            text-shadow: 0 0 10px var(--neon-pink), 
                         0 0 20px var(--neon-purple);
            animation: glitch 3s infinite;
        }

        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-3px, 3px); }
            40% { transform: translate(3px, -3px); }
            60% { transform: translate(-3px, -3px); }
            80% { transform: translate(3px, 3px); }
            100% { transform: translate(0); }
        }

        p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            max-width: 600px;
            margin: 0 auto 3rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            animation: fadeIn 2s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn {
            display: inline-block;
            padding: 1.2rem 2.8rem;
            background: transparent;
            color: white;
            border: 2px solid var(--neon-blue);
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            margin-bottom: 3rem;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
            text-shadow: 0 0 5px var(--neon-blue);
            font-weight: bold;
            animation: pulse 2s infinite;
        }

        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
            z-index: -1;
            transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .btn:hover {
            color: var(--bg-black);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
            letter-spacing: 3px;
        }

        .btn:hover::before {
            width: 100%;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(0, 240, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
        }

        .loading-bar {
            width: 80%;
            max-width: 500px;
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            margin-top: 1rem;
        }

        .loading-bar::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
            animation: loading 4s linear infinite;
            box-shadow: 0 0 10px var(--neon-pink);
        }

        @keyframes loading {
            0% { width: 0; }
            50% { width: 70%; }
            100% { width: 100%; }
        }

        @keyframes scan {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        .cyber-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(255, 60, 172, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 60, 172, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            opacity: 0.3;
            pointer-events: none;
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(1px);
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, 100px) rotate(90deg); }
            50% { transform: translate(100px, 50px) rotate(180deg); }
            75% { transform: translate(50px, 0) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        .access-granted {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 1s ease;
        }

        .access-granted.active {
            opacity: 1;
            pointer-events: all;
        }

        .access-granted h2 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            margin-bottom: 2rem;
            color: var(--neon-green);
            text-shadow: 0 0 20px var(--neon-green);
            animation: glitch 2s infinite;
        }

        .redirecting {
            color: var(--neon-blue);
            font-size: 1.2rem;
            text-shadow: 0 0 10px var(--neon-blue);
        }