        @import url('/lib/fonts/fonts.css');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Orbitron', monospace;
            background: #000;
            color: #00ff41;
            overflow: hidden;
            cursor: none;
        }
        
        #container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        #ui-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .error-code {
            font-size: 8rem;
            font-weight: 900;
            color: #ff0040;
            text-shadow: 0 0 20px #ff0040, 0 0 40px #ff0040;
            animation: glitch 2s infinite;
            margin-bottom: 20px;
        }
        
        .error-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #00ff41;
            text-shadow: 0 0 10px #00ff41;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .error-description {
            font-size: 1.2rem;
            color: #ffffff;
            text-align: center;
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.8;
        }
        
        .status-panel {
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #00ff41;
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
            animation: pulse-border 3s infinite;
        }
        
        .status-line {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            font-size: 1.1rem;
        }
        
        .status-label {
            color: #ffffff;
        }
        
        .status-value {
            color: #ff0040;
            font-weight: 700;
        }
        
        .retry-button {
            margin-top: 30px;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff0040, #ff4080);
            border: none;
            border-radius: 25px;
            color: white;
            font-family: 'Orbitron', monospace;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
        }
        
        .retry-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 0, 64, 0.8);
        }
        
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid #00ff41;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
        }
        
        .custom-cursor::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 4px;
            height: 4px;
            background: #00ff41;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }
        
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 65, 0.03) 2px,
                rgba(0, 255, 65, 0.03) 4px
            );
            pointer-events: none;
            z-index: 5;
            animation: scanline-move 2s linear infinite;
        }
        
        @keyframes glitch {
            0%, 100% { transform: translateX(0); }
            10% { transform: translateX(-5px) scaleX(0.95); }
            20% { transform: translateX(5px); }
            30% { transform: translateX(-2px) scaleY(0.98); }
            40% { transform: translateX(2px); }
            50% { transform: translateX(-1px); }
            60% { transform: translateX(1px) scaleX(1.02); }
            70% { transform: translateX(0) scaleY(1.01); }
            80% { transform: translateX(-1px); }
            90% { transform: translateX(1px); }
        }
        
        @keyframes pulse-border {
            0%, 100% { border-color: #00ff41; box-shadow: 0 0 20px rgba(0, 255, 65, 0.5); }
            50% { border-color: #ff0040; box-shadow: 0 0 30px rgba(255, 0, 64, 0.7); }
        }
        
        @keyframes scanline-move {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100vh); }
        }
        
        .particle-trail {
            position: fixed;
            width: 2px;
            height: 2px;
            background: #00ff41;
            border-radius: 50%;
            pointer-events: none;
            z-index: 8;
        }
    