        @import url('/lib/fonts/fonts.css');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Orbitron', monospace;
            background: #000;
            overflow: hidden;
            cursor: none;
            color: #00ffff;
        }

        #container {
            position: relative;
            width: 100vw;
            height: 100vh;
        }

        .cyber-cursor {
            position: fixed;
            width: 30px;
            height: 30px;
            border: 2px solid #ff0080;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            background: radial-gradient(circle, rgba(255, 0, 128, 0.3), transparent);
            box-shadow: 0 0 20px #ff0080, inset 0 0 20px rgba(255, 0, 128, 0.2);
        }

        .cyber-cursor::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 60px;
            height: 60px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 50%;
            animation: scanLine 2s linear infinite;
        }

        .cyber-cursor::after {
            content: '+';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ff0080;
            font-size: 16px;
            font-weight: bold;
        }

        @keyframes scanLine {
            0% { transform: rotate(0deg) scale(1); opacity: 1; }
            100% { transform: rotate(360deg) scale(1.5); opacity: 0; }
        }

        .ui-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 100;
            pointer-events: none;
            text-align: center;
        }

        .access-denied {
            font-size: 1.5rem;
            color: #ff0080;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: glitch 2s infinite;
        }

        .error-code {
            font-size: 12rem;
            font-weight: 900;
            color: transparent;
            background: linear-gradient(45deg, #ff0080, #00ffff, #ff4444, #00ff00);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            background-clip: text;
            animation: cyberpunkGlow 3s ease-in-out infinite, textGlitch 0.3s infinite;
            text-shadow: 0 0 50px rgba(255, 0, 128, 0.8);
            margin-bottom: 30px;
            filter: drop-shadow(0 0 20px #ff0080);
        }

        @keyframes cyberpunkGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes textGlitch {
            0%, 90%, 100% { transform: translate(0); }
            10% { transform: translate(-2px, 2px); }
            20% { transform: translate(2px, -2px); }
            30% { transform: translate(-2px, -2px); }
            40% { transform: translate(2px, 2px); }
            50% { transform: translate(-2px, 2px); }
            60% { transform: translate(2px, -2px); }
            70% { transform: translate(-2px, -2px); }
            80% { transform: translate(2px, 2px); }
        }

        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            10% { transform: translate(-2px, 2px); }
            20% { transform: translate(2px, -2px); }
            30% { transform: translate(0); }
            40% { transform: translate(-1px, 1px); }
            50% { transform: translate(1px, -1px); }
            60% { transform: translate(0); }
        }

        .security-message {
            font-size: 2rem;
            color: #00ffff;
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            animation: typing 4s steps(30) infinite;
        }

        .security-subtitle {
            font-size: 1.2rem;
            color: #ff4444;
            margin-bottom: 40px;
            opacity: 0.9;
            text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
        }

        @keyframes typing {
            0%, 50% { width: 100%; }
            75%, 100% { width: 0; border-right: 2px solid #00ffff; }
        }

        .security-panel {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
            border: 2px solid #00ffff;
            border-radius: 10px;
            padding: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
            animation: panelGlow 2s ease-in-out infinite alternate;
        }

        @keyframes panelGlow {
            from { box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); }
            to { box-shadow: 0 0 50px rgba(0, 255, 255, 0.6); }
        }

        .auth-button {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-family: 'Orbitron', monospace;
            background: linear-gradient(45deg, #ff0080, #00ffff);
            color: #000;
            border: none;
            border-radius: 30px;
            cursor: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            pointer-events: auto;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
            margin: 10px;
        }

        .auth-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 0, 128, 0.6);
            background: linear-gradient(45deg, #00ffff, #ff0080);
        }

        .security-status {
            position: absolute;
            top: 30px;
            left: 30px;
            background: rgba(255, 0, 128, 0.2);
            color: #ff0080;
            padding: 15px 25px;
            border-radius: 25px;
            border: 2px solid #ff0080;
            font-weight: bold;
            backdrop-filter: blur(10px);
            animation: securityPulse 1.5s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes securityPulse {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 40px rgba(255, 0, 128, 0.8);
                transform: scale(1.05);
            }
        }

        .scan-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 255, 0.03) 2px,
                rgba(0, 255, 255, 0.03) 4px
            );
            pointer-events: none;
            animation: scanMove 0.1s linear infinite;
        }

        @keyframes scanMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(4px); }
        }

        .matrix-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .warning-text {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            color: #ff4444;
            font-size: 1rem;
            text-align: center;
            animation: warningBlink 1s infinite;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        @keyframes warningBlink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }
   