        @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: relative;
            width: 100vw;
            height: 100vh;
        }
        
        #canvas {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        #ui {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            pointer-events: none;
        }
        
        .glitch {
            font-size: 8rem;
            font-weight: 900;
            text-shadow: 
                0.05em 0 0 #ff0040,
                -0.05em 0 0 #00ffff,
                0 0 0 #00ff41;
            animation: glitch 2s infinite;
        }
        
        @keyframes glitch {
            0%, 100% { text-shadow: 0.05em 0 0 #ff0040, -0.05em 0 0 #00ffff, 0 0 0 #00ff41; }
            25% { text-shadow: -0.05em 0 0 #ff0040, 0.05em 0 0 #00ffff, 0 0 0 #00ff41; }
            50% { text-shadow: 0.05em 0.05em 0 #ff0040, -0.05em -0.05em 0 #00ffff, 0 0 0 #00ff41; }
            75% { text-shadow: -0.05em -0.05em 0 #ff0040, 0.05em 0.05em 0 #00ffff, 0 0 0 #00ff41; }
        }
        
        .subtitle {
            font-size: 2rem;
            margin-top: 2rem;
            text-align: center;
            opacity: 0.8;
            animation: pulse 3s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }
        
        .error-details {
            margin-top: 3rem;
            text-align: center;
            font-size: 1.2rem;
            opacity: 0.6;
            max-width: 600px;
            line-height: 1.6;
        }
        
        .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff41, transparent);
            animation: scanline 3s linear infinite;
            z-index: 3;
        }
        
        @keyframes scanline {
            0% { top: 0; opacity: 1; }
            100% { top: 100vh; opacity: 0; }
        }
        
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid #00ff41;
            border-radius: 50%;
            pointer-events: none;
            z-index: 999;
            mix-blend-mode: difference;
            transition: transform 0.1s;
        }
        
        .cursor-trail {
            position: fixed;
            width: 4px;
            height: 4px;
            background: #00ff41;
            border-radius: 50%;
            pointer-events: none;
            z-index: 998;
            opacity: 0.7;
        }
        
        .retry-btn {
            margin-top: 3rem;
            padding: 1rem 2rem;
            background: transparent;
            border: 2px solid #00ff41;
            color: #00ff41;
            font-family: 'Orbitron', monospace;
            font-size: 1.1rem;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .retry-btn:hover {
            background: #00ff41;
            color: #000;
            box-shadow: 0 0 20px #00ff41;
            transform: scale(1.05);
        }
        
        .matrix-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.1;
        }
   