/* style.css */
        @import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #000;
            color: #00ff00;
            font-family: 'Courier Prime', monospace;
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
            cursor: crosshair;
        }
        
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            min-height: 100vh;
        }
        
        .terminal-header {
            border: 2px solid #00ff00;
            border-radius: 5px;
            margin-bottom: 20px;
            background: rgba(0, 255, 0, 0.05);
        }
        
        .terminal-bar {
            background: #00ff00;
            color: #000;
            padding: 5px 10px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .terminal-content {
            padding: 20px;
        }
        
        .prompt {
            color: #ff6600;
            margin-right: 10px;
        }
        
        .cursor {
            animation: blink 1s infinite;
            color: #00ff00;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .typing-line {
            margin: 10px 0;
            opacity: 0;
        }
        
        .glitch {
            text-shadow: 
                2px 0 #ff0000,
                -2px 0 #00ffff;
            animation: glitch 0.3s ease-in-out infinite alternate;
        }
        
        @keyframes glitch {
            0% {
                text-shadow: 2px 0 #ff0000, -2px 0 #00ffff;
            }
            25% {
                text-shadow: -2px 0 #ff0000, 2px 0 #00ffff;
            }
            50% {
                text-shadow: 2px 0 #00ffff, -2px 0 #ff0000;
            }
            75% {
                text-shadow: -2px 0 #00ffff, 2px 0 #ff0000;
            }
            100% {
                text-shadow: 2px 0 #ff0000, -2px 0 #00ffff;
            }
        }
        
        .ascii-art {
            color: #00ff00;
            text-align: center;
            font-size: 12px;
            margin: 20px 0;
            white-space: pre;
            filter: drop-shadow(0 0 10px #00ff00);
        }
        
        .menu-item {
            margin: 15px 0;
            padding: 10px;
            border-left: 3px solid #00ff00;
            background: rgba(0, 255, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .menu-item:hover {
            background: rgba(0, 255, 0, 0.1);
            transform: translateX(10px);
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
        }
        
        .status-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #00ff00;
            color: #000;
            padding: 5px 20px;
            font-size: 12px;
            display: flex;
            justify-content: space-between;
        }
        
        .warning {
            color: #ff6600;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        .matrix-rain {
            position: absolute;
            color: #00ff00;
            font-size: 14px;
            animation: fall linear infinite;
        }
        
        @keyframes fall {
            0% { transform: translateY(-100vh); opacity: 1; }
            100% { transform: translateY(100vh); opacity: 0; }
        }
