
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Courier Prime', monospace;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #00ff00;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.1;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            border: 2px solid #00ff00;
            border-radius: 15px;
            background: rgba(0, 255, 0, 0.05);
        }
        
        .logo {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 900;
            color: #00ff00;
            margin-bottom: 10px;
        }
        
        .subtitle {
            font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            color: #00cccc;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .nav-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .btn {
            padding: 12px 24px;
            background: linear-gradient(45deg, #1a1a2e, #16213e);
            color: #00ff00;
            border: 2px solid #00ff00;
            border-radius: 8px;
            text-decoration: none;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .btn:hover {
            background: linear-gradient(45deg, #00ff00, #00cccc);
            color: #000;
            transform: translateY(-2px);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background: rgba(0, 255, 0, 0.03);
            border: 1px solid #00ff00;
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            border-color: #00cccc;
            transform: translateY(-5px);
        }
        
        .stat-header {
            font-family: 'Orbitron', monospace;
            font-size: 1.4rem;
            color: #00cccc;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .stat-item {
            margin: 10px 0;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 255, 0, 0.2);
        }
        
        .stat-label {
            color: #00cccc;
            font-weight: bold;
        }
        
        .stat-value {
            color: #00ff00;
            float: right;
        }
        
        .status-active {
            color: #00ff00;
            font-weight: bold;
        }
        
        .status-error {
            color: #ff4444;
            font-weight: bold;
        }
        
        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            border-top: 1px solid #00ff00;
            color: #00cccc;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }
        
        .footer-link {
            color: #00cccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: #00ff00;
        }
        
        .last-update {
            font-size: 0.9rem;
            margin-top: 10px;
            color: #666;
        }
        
        .terminal-cursor {
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .nav-buttons {
                gap: 10px;
            }
            
            .btn {
                padding: 10px 18px;
                font-size: 0.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }