.status-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.live-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    background: var(--surface-light);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.2;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
.live-badge.on { color: var(--accent-green); border-color: var(--accent-green); }
.live-badge.off { color: var(--accent-red); border-color: var(--accent-red); }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.live-note { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.live-note.warn { color: var(--accent-yellow); }
.live-grid { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 18px; align-items: flex-start; }
.live-players { min-width: 170px; }
.live-num { font-size: 2.4rem; font-weight: 900; line-height: 1.1; font-variant-numeric: tabular-nums; }
.live-cap {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 2px;
}
.live-max { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; margin-top: 2px; }
.live-meta { flex: 1; min-width: 240px; }
.meta-row {
    display: flex; gap: 14px; align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}
.meta-row:last-child { border-bottom: 0; }
.meta-row dt {
    color: var(--text-muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    min-width: 64px;
    flex-shrink: 0;
}
.meta-row dd { flex: 1; font-weight: 600; word-break: break-word; white-space: pre-wrap; }

.stat-card { background: var(--surface); }
.stat-card::before { display: none; }
.stat-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); }
.stats-row .stat-num { background: none; -webkit-text-fill-color: currentColor; color: var(--accent-blue); }

.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.panel h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 150px; border-bottom: 1px solid var(--border); }
.chart-bar { flex: 1 1 0; min-width: 3px; background: var(--accent-green); border-radius: 3px 3px 0 0; }
.chart-labels {
    display: flex; justify-content: space-between;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}
.incident-row {
    display: flex; align-items: center; gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.incident-row:last-child { border-bottom: 0; }
.inc-date { font-weight: 800; font-variant-numeric: tabular-nums; }
.inc-dur { color: var(--text-muted); font-weight: 700; font-variant-numeric: tabular-nums; }
.inc-tag {
    margin-left: auto;
    background: var(--accent-green);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.inc-tag.ongoing { background: var(--accent-red); }
.empty-note { color: var(--text-muted); font-weight: 600; }
.footnote { font-size: 0.78rem; color: var(--text-muted); }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 480px) {
    .live-grid { gap: 18px; }
    .meta-row dt { min-width: 56px; }
    .chart-bars { gap: 3px; }
    .incident-row { gap: 10px; font-size: 0.9rem; }
}
