:root {
  color-scheme: dark;
  --bg: #08191d;
  --surface: #102a2f;
  --text: #eff7f5;
  --muted: #9bb2b1;
  --accent: #57d8bc;
  --danger: #ff725e;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(87, 216, 188, .14), transparent 34rem),
    linear-gradient(150deg, #0a1e22 0%, var(--bg) 62%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 22px;
}

header, footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
}

.brand-mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 6px 6px 9px 9px;
  transform: rotate(45deg);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7b14a;
  box-shadow: 0 0 0 5px rgba(215, 177, 74, .12);
}

.status.is-live .status-dot {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(87, 216, 188, .12);
}

.status.is-offline .status-dot {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 114, 94, .12);
}

.intro { padding: clamp(56px, 9vw, 112px) 0 34px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.lede {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: #020607;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020607;
}

.offline {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle, rgba(87, 216, 188, .08), transparent 38%),
    #071418;
}

.offline[hidden] { display: none; }

.offline-icon {
  width: 68px;
  height: 52px;
  margin-bottom: 18px;
  border: 2px solid #628083;
  border-radius: 12px;
}

.offline-icon::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 18px auto;
  border-radius: 50%;
  background: #628083;
}

.offline h2 { margin: 0; font-size: clamp(1.35rem, 4vw, 2rem); }
.offline p { margin: 9px 0 0; color: var(--muted); }

.live-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 7px;
  background: #e7392f;
  color: white;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
}

footer {
  padding: 22px 2px 0;
  color: #718c8d;
  font-size: .82rem;
}

@media (max-width: 640px) {
  .shell { width: min(100% - 24px, 1180px); padding-top: 18px; }
  .status #statusText { display: none; }
  .intro { padding-top: 62px; }
  .player-frame { border-radius: 10px; }
}
