* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0d1117; color: #f0f6fc; padding: 40px; }
.container { max-width: 800px; margin: 0 auto; }
.header { border-bottom: 1px solid #2d3548; padding-bottom: 20px; margin-bottom: 30px; }
.header h1 { font-size: 28px; font-weight: 800; }
.header h1 span { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.back-link { color: #60a5fa; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 14px; }
.back-link:hover { text-decoration: underline; }
.card { background: #1c2333; border: 1px solid #2d3548; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.card h2 { font-size: 18px; margin-bottom: 12px; color: #f0f6fc; }
.card p { color: #8b949e; font-size: 14px; line-height: 1.7; }
.card .sub-text { color: #8b949e; font-size: 14px; }
.status-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #2d3548; }
.status-item:last-child { border-bottom: none; }
.status-item .service { color: #f0f6fc; font-size: 14px; }
.status-item .status { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.status-dot.operational { background: #3fb950; }
.status-dot.degraded { background: #f0883e; }
.status-dot.down { background: #f85149; }
.footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #2d3548; text-align: center; color: #8b949e; font-size: 13px; }
.footer strong { color: #f0f6fc; }
.no-incidents { color: #8b949e; font-size: 14px; }
