* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero { text-align: center; color: white; }
.hero h1 { font-size: 3em; margin-bottom: 20px; }
.hero p { font-size: 1.3em; color: #888; margin-bottom: 30px; }
.status { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 12px; height: 12px; background: #3fb950; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
