:root {
  --ink: #120c1c;
  --panel: #1c142c;
  --panel-2: #271c3c;
  --line: rgba(255, 244, 214, 0.08);
  --cream: #fff4d6;
  --muted: #c9b8e0;
  --mango: #ffb020;
  --bubble: #ff4f8b;
  --mint: #3ee0b0;
  --shadow: 0 14px 0 rgba(8, 4, 16, 0.45);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Outfit, system-ui, sans-serif;
  background:
    radial-gradient(1200px 500px at 70% -10%, rgba(255, 79, 139, 0.18), transparent 50%),
    radial-gradient(900px 500px at -10% 110%, rgba(255, 176, 32, 0.12), transparent 45%),
    var(--ink);
  color: var(--cream);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  background: rgba(18, 12, 28, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: "Titan One", system-ui;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--mango);
  text-shadow: 0 3px 0 #8a4a12;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.wordmark span { color: var(--bubble); text-shadow: 0 3px 0 #7a1840; font-size: 18px; }

.search {
  justify-self: center;
  width: min(520px, 100%);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--cream);
}
.search:focus { outline: 2px solid var(--mango); }

.top-play {
  background: var(--mango);
  color: #2a1600;
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 4px 0 #8a4a12;
}

.shell {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: calc(100vh - 64px);
}

.rail {
  border-right: 1px solid var(--line);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rail a, .rail button {
  background: transparent;
  border: 0;
  color: var(--muted);
  border-radius: 14px;
  padding: 10px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.rail a:hover, .rail a.active {
  background: var(--panel-2);
  color: var(--cream);
}
.rail .ico { font-size: 20px; display: block; margin-bottom: 4px; }

.main { padding: 22px 28px 64px; max-width: 1280px; }

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.hero-art {
  min-height: 340px;
  background:
    linear-gradient(to top, rgba(18,12,28,.55), transparent 40%),
    url("thumbs/shooting-master-2000-hero.jpg") center/cover;
}
.hero-art.precinct {
  background:
    linear-gradient(to top, rgba(18,12,28,.55), transparent 40%),
    url("thumbs/precinct-panic-97-hero.jpg") center/cover;
}
.hero-copy { padding: 28px 28px 24px 8px; display: flex; flex-direction: column; justify-content: center; }
.kicker {
  color: var(--mint);
  font-weight: 800;
  font-size: 13px;
}
.hero h1 {
  font-family: "Titan One", system-ui;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
  margin: 8px 0 10px;
  font-weight: 400;
}
.hero p { color: var(--muted); margin: 0 0 18px; max-width: 36ch; }
.tags { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.tag {
  background: #3a244e;
  color: var(--cream);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}
.play {
  display: inline-block;
  background: var(--bubble);
  color: white;
  font-weight: 800;
  border-radius: 14px;
  padding: 12px 22px;
  box-shadow: 0 5px 0 #7a1840;
}
.play:hover { transform: translateY(1px); box-shadow: 0 4px 0 #7a1840; }

.row-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 8px 2px 12px;
}
.row-title h2 { margin: 0; font-size: 22px; }
.row-title span { color: var(--muted); font-size: 13px; }

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 120ms ease;
}
.card:hover { transform: translateY(-4px); }
.card img, .card .ph {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  background: #3a244e;
}
.card .meta { padding: 10px 12px 12px; }
.card h3 { margin: 0; font-size: 14px; }
.card small { color: var(--muted); }

.ph {
  display: grid;
  place-items: center;
  font-family: "Titan One", system-ui;
  font-size: 22px;
  color: var(--cream);
}
.soon { opacity: 0.72; pointer-events: none; }
.soon .meta small { color: var(--mango); }

.foot {
  color: var(--muted);
  font-size: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* play page */
.play-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.stage-wrap {
  background: #07050c;
  padding: 12px 16px 0;
}
.stage {
  width: min(1280px, 100%);
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stage iframe { width: 100%; height: 100%; border: 0; background: #000; }
.about {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 22px 16px 64px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
}
.ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
}

@media (max-width: 980px) {
  .shell { grid-template-columns: 1fr; }
  .rail {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero, .about, .grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .top { grid-template-columns: auto 1fr; }
  .top-play { display: none; }
  .hero-copy { padding: 18px; }
}
