:root {
  --bg: #071014;
  --panel: #101d22;
  --border: #294047;
  --gold: #f1b84b;
  --cream: #fff4dd;
  --muted: #a8c1cb;
  --green: #43e6a6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top right, #14262e 0, var(--bg) 42%);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--green); }
a:hover { color: var(--gold); }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(7,16,20,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--cream); }
.brand img { width: 44px; height: 44px; }
.brand strong { font-family: Georgia, serif; font-size: 1.35rem; color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 18px; padding: 0; margin: 0; flex-wrap: wrap; }
nav a { color: var(--cream); text-decoration: none; font-weight: 650; }
main { flex: 1; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero { padding: 96px 0 72px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 44px; align-items: center; }
.eyebrow { color: var(--green); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { font-family: Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); margin: 10px 0 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 0 0 18px; }
h3 { font-size: 1.35rem; }
.lead { color: var(--muted); font-size: 1.16rem; max-width: 720px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-block; padding: 12px 18px; border-radius: 10px;
  text-decoration: none; font-weight: 800; border: 1px solid var(--border);
}
.button.primary { background: var(--gold); color: #17130a; border-color: var(--gold); }
.button.secondary { color: var(--cream); background: var(--panel); }
.hero-card, .card {
  background: linear-gradient(145deg, rgba(16,29,34,.98), rgba(10,21,26,.98));
  border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,.2);
}
.hero-card img { width: 120px; height: 120px; border-radius: 24px; display: block; margin-bottom: 20px; }
.status { display: grid; gap: 10px; margin-top: 18px; }
.status-row { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 10px; }
.dot { color: var(--green); }
.section { padding: 72px 0; }
.section.alt { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(16,29,34,.38); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card p { color: var(--muted); }
.badge { display: inline-block; border: 1px solid var(--border); border-radius: 999px; padding: 4px 10px; color: var(--gold); font-size: .8rem; font-weight: 800; }
.legal { max-width: 880px; padding: 64px 0 88px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.legal h2 { font-size: 1.75rem; margin-top: 42px; }
.legal p, .legal li { color: #c7d7dc; }
.notice { border-left: 4px solid var(--gold); padding: 14px 18px; background: var(--panel); border-radius: 8px; }
footer { border-top: 1px solid var(--border); background: #050b0e; }
.footer { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer a { color: var(--cream); }
.small { color: var(--muted); font-size: .92rem; }
@media (max-width: 800px) {
  .hero, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; padding: 14px 0; flex-direction: column; }
  .hero { padding-top: 56px; }
}
/* Watch page */
.video-frame {
  position: relative; width: 100%; padding-top: 56.25%;
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  background: #000; box-shadow: 0 18px 60px rgba(0,0,0,.25); margin-top: 8px;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.channel {
  display: flex; flex-direction: column; gap: 6px; text-align: center;
  background: var(--panel); border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 12px; text-decoration: none; color: var(--cream); font-weight: 700;
}
.channel:hover { border-color: var(--gold); color: var(--gold); }
.channel span { color: var(--muted); font-size: .82rem; font-weight: 500; }
.fact { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; margin-top: 14px; }
.fact .k { color: var(--gold); font-weight: 800; white-space: nowrap; }
.fact .v { color: #c7d7dc; }
@media (max-width: 800px) { .channels { grid-template-columns: repeat(2, 1fr); } }

/* Cinematic key-art banner */
.hero-banner { display:block; width:100%; line-height:0; background:#000; border-bottom:1px solid var(--border); }
.hero-banner img { width:100%; height:auto; display:block; }
