:root {
  --bg1: #03122f;
  --bg2: #071c47;
  --panel: rgba(7, 23, 58, .92);
  --line: rgba(148, 163, 184, .24);
  --text: #f8fafc;
  --muted: #bfd3f6;
  --green: #22c55e;
  --blue: #38bdf8;
  --amber: #f59e0b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #11336d 0%, var(--bg2) 30%, var(--bg1) 100%);
}
.tv-wrap { min-height: 100vh; padding: 28px 34px; }
.tv-header { display:flex; justify-content:space-between; gap:24px; align-items:flex-start; margin-bottom: 20px; }
.eyebrow { letter-spacing: .2em; font-size: .82rem; color: #86efac; margin-bottom: 10px; }
.tv-header h1 { margin: 0 0 10px; font-size: 3.2rem; }
.tv-header p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.tv-clock { font-size: 2rem; font-weight: 700; white-space: nowrap; }
.tv-stats { display:grid; gap:16px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 20px; }
.stat-card, .tv-panel { background: var(--panel); border:1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: 0 18px 34px rgba(0,0,0,.18); }
.stat-card h3 { margin: 0 0 8px; color: #dbeafe; font-size: 1.2rem; }
.stat-card div { font-size: 2.3rem; font-weight: 800; }
.tv-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:20px; margin-bottom: 20px; }
.panel-head { display:flex; justify-content:space-between; gap:12px; align-items:center; margin-bottom: 16px; }
.panel-head h2 { margin: 0; font-size: 1.8rem; }
.panel-note { color: var(--muted); }
.tv-launch-grid { display:grid; gap:16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.tv-launch-card { border-radius: 20px; padding: 18px; border:1px solid rgba(56,189,248,.22); background: linear-gradient(180deg, rgba(11,31,74,.95), rgba(5,18,48,.95)); }
.tv-launch-card h3 { margin: 0 0 10px; font-size: 1.4rem; }
.vs-card { padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.05); margin-bottom: 10px; }
.vs-card strong { font-size: 1.25rem; }
.tv-list { display:grid; gap:12px; }
.tv-list.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tv-row { border-radius: 16px; padding: 14px 16px; background: rgba(255,255,255,.04); border:1px solid rgba(148,163,184,.16); }
.tv-row strong { display:block; font-size: 1.18rem; margin-bottom: 6px; }
.tv-row .meta { color: var(--muted); font-size: .96rem; }
.status-pill { display:inline-block; margin-top: 8px; padding: 6px 10px; border-radius: 999px; font-size: .82rem; border:1px solid rgba(148,163,184,.2); }
.status-pill.checked_in { color: #bbf7d0; border-color: rgba(34,197,94,.4); }
.status-pill.arrived { color: #bae6fd; border-color: rgba(56,189,248,.4); }
.status-pill.pending { color: #fde68a; border-color: rgba(245,158,11,.4); }
.empty { color: var(--muted); padding: 18px; border-radius: 18px; border:1px dashed rgba(148,163,184,.24); text-align:center; }
@media (max-width: 1200px) {
  .tv-stats, .tv-grid, .tv-list.two-col { grid-template-columns: 1fr 1fr; }
}
