:root {
  --ink: #1f1630;
  --muted: #5b4f72;
  --paper: #fff7fb;
  --card: #ffffff;
  --line: #ffd0e6;
  --sun: #ffd84d;
  --sky: #6ec8ff;
  --coral: #ff6b8a;
  --mint: #5ee0b5;
  --grape: #7b5cff;
  --go: #00c853;
  --go-glow: #69f0ae;
  --caution: #ffca28;
  --caution-glow: #ffe082;
  --stop: #ff1744;
  --stop-glow: #ff8a80;
  --sem-body: #1a1a1f;
  --s1: #00c853;
  --s2: #00c853;
  --s3: #ffca28;
  --s4: #ff1744;
  --s5: #ff1744;
  --shadow: 0 14px 0 rgba(31, 22, 48, 0.08);
  --radius: 22px;
  --font: "Nunito", system-ui, sans-serif;
  --display: "Fredoka", "Nunito", sans-serif;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, #ffe56a 0%, transparent 28%),
    radial-gradient(circle at 88% 0%, #9ad8ff 0%, transparent 32%),
    radial-gradient(circle at 70% 30%, #ffb7d5 0%, transparent 26%),
    linear-gradient(180deg, #fff3f8 0%, #fffaf2 40%, #eef9ff 100%);
  line-height: 1.45;
  min-height: 100vh;
  overflow-x: hidden;
}

.wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.topnav {
  position: relative;
  z-index: 2;
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.back-home {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  box-shadow: 0 3px 0 var(--ink);
}

.back-home:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--ink);
}

.confetti {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, #ff6b8a 0 4px, transparent 5px),
    radial-gradient(circle at 30% 70%, #ffd84d 0 5px, transparent 6px),
    radial-gradient(circle at 70% 25%, #6ec8ff 0 4px, transparent 5px),
    radial-gradient(circle at 85% 60%, #5ee0b5 0 5px, transparent 6px),
    radial-gradient(circle at 50% 10%, #7b5cff 0 3px, transparent 4px);
  opacity: 0.35;
  z-index: 0;
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(18px); }
}

.hero,
.vibe-row,
.watch-box,
.controls-bar,
.legend,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 2rem 0 0.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-copy {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 12px 0 var(--ink);
  transform: rotate(-0.6deg);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.02em;
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.pop {
  display: inline-block;
  animation: bounce 1.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-8px) rotate(8deg); }
}

.tagline {
  margin: 0.75rem 0 0;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34rem;
}

.tagline strong { color: var(--ink); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.hero-pills span {
  background: #fff3c4;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 3px 0 var(--ink);
}

.hero-pills span:nth-child(1) { background: #d8ffe8; }
.hero-pills span:nth-child(2) { background: #fff3c4; }
.hero-pills span:nth-child(3) { background: #ffd0d0; }

.vibe-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-top: 1.35rem;
}

.vibe-btn {
  appearance: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 0.85rem 0.9rem 0.95rem;
  box-shadow: 0 6px 0 var(--ink);
  display: grid;
  gap: 0.15rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.vibe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--ink);
}

.vibe-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--ink);
}

.vibe-btn.is-active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--ink);
}

.vibe-btn.vibe-safe.is-active { background: #d8ffe8; }
.vibe-btn.vibe-maybe.is-active { background: #fff3c4; }
.vibe-btn.vibe-skip.is-active {
  background: #ffd0d0;
  border-color: var(--stop);
  color: #8b0000;
}
.vibe-btn[data-bucket="all"].is-active { background: #e8ddff; }

.vibe-emoji {
  font-size: 1.55rem;
  line-height: 1;
}

.vibe-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
}

.vibe-sub {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.vibe-count {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  width: fit-content;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.bucket-hint {
  margin: 0;
  font-weight: 800;
  color: var(--muted);
  max-width: 36rem;
}

.bucket-pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
}

.bucket-pill.safe { background: #d8ffe8; }
.bucket-pill.maybe { background: #fff3c4; }
.bucket-pill.skip { background: #ffd0d0; color: #8b0000; }

.hero-card {
  background: #141018;
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 0.55rem;
  box-shadow: 0 12px 0 var(--ink);
  color: #fff;
  display: grid;
  gap: 0.75rem;
  transform: rotate(1.2deg);
  overflow: hidden;
}

.hero-cover {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.35);
  aspect-ratio: 16 / 10;
  background: #000;
}

.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transform: scale(1.02);
}

.disclaimer {
  margin: 0 0.35rem 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.95;
}

.controls-bar {
  display: grid;
  grid-template-columns: minmax(0, 10rem) minmax(0, 1fr) minmax(0, 10.5rem);
  gap: 0.75rem;
  align-items: end;
  margin-top: 1rem;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 0 var(--ink);
  overflow: hidden;
}

.field {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
}

.field.grow { min-width: 0; }

.field input,
.field select {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font: 700 1rem var(--font);
  color: var(--ink);
  border: 2px solid var(--ink);
  background: #fffaf2;
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
}

.field input:focus,
.field select:focus {
  outline: 3px solid var(--sky);
  outline-offset: 1px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.15rem;
}

.legend-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
}

.legend-scale::before {
  content: "Signals:";
  font-weight: 800;
  color: var(--muted);
  margin-right: 0.1rem;
}

.sem-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.9rem;
}

.mini-sem {
  display: inline-grid;
  gap: 2px;
  padding: 4px;
  border-radius: 8px;
  background: var(--sem-body);
  border: 2px solid var(--ink);
}

.mini-sem .lamp {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background: #2a2a32;
  opacity: 0.45;
}

.mini-sem .lamp.go.on {
  background: var(--go);
  box-shadow: 0 0 6px var(--go-glow);
  opacity: 1;
}
.mini-sem .lamp.caution.on {
  background: var(--caution);
  box-shadow: 0 0 6px var(--caution-glow);
  opacity: 1;
}
.mini-sem .lamp.stop.on {
  background: var(--stop);
  box-shadow: 0 0 8px var(--stop-glow);
  opacity: 1;
}

.stats {
  margin: 0;
  font-weight: 800;
  color: var(--muted);
}

.episode-list {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.75rem 0.9rem 0.7rem;
  display: grid;
  gap: 0.55rem;
  animation: pop-in 0.4s cubic-bezier(.2,1.4,.4,1) both;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card-still {
  margin: 0;
  flex: 0 0 200px;
  width: 200px;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: #1a1224;
  border-radius: 12px;
  border: 2px solid rgba(31, 22, 48, 0.14);
  align-self: flex-start;
}

.card-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.card.has-still .card-top,
.card.has-still .notes-block,
.card.has-still .notes,
.card.has-still .card-foot {
  padding-left: 0;
  padding-right: 0;
}

.card.has-still .card-foot {
  padding-bottom: 0;
}

.card-hit {
  display: grid;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  outline: none;
}

.card-hit:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 216, 77, 0.7);
}

.card-open-hint {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(91, 79, 114, 0.55);
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}

.card:hover .card-open-hint,
.card:focus-within .card-open-hint {
  color: var(--ink);
  transform: translateX(2px);
}

.card:hover {
  transform: translateY(-3px) rotate(-0.2deg);
  box-shadow: 0 18px 0 rgba(31, 22, 48, 0.1);
}

.card:nth-child(even) { background: #fffaf0; }
.card:nth-child(3n) { background: #f3fbff; }

@keyframes pop-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.9rem;
  justify-content: space-between;
  align-items: flex-start;
}

.card.has-still .card-copy {
  flex: 1 1 12rem;
  min-width: 0;
}

.ep-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.2rem;
}

.badge {
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--sun);
  color: var(--ink);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
}

.verdict {
  font-size: 0.95rem;
  font-weight: 800;
}

.card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.summary {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.88rem;
  line-height: 1.35;
  max-width: 38rem;
}

/* —— Kid-fit spectrum meter —— */
.fit-meter {
  margin-top: 0.85rem;
  max-width: 22rem;
  --fit: 0.2;
  --watch: 0.35;
}

.fit-meter-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.fit-meter-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(91, 79, 114, 0.7);
}

.fit-meter-readout {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}

.fit-meter.signal-go .fit-meter-readout { color: #1b8a4a; }
.fit-meter.signal-caution .fit-meter-readout { color: #9a6b00; }
.fit-meter.signal-stop .fit-meter-readout { color: #c62828; }

.fit-track {
  position: relative;
  height: 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(31, 22, 48, 0.14);
  background: #efeaf5;
  overflow: visible;
  box-shadow: inset 0 1px 2px rgba(31, 22, 48, 0.06);
}

.fit-gradient {
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #19c463 0%,
    #7adf8a 28%,
    #ffca28 52%,
    #ff8a65 76%,
    #ff1744 100%
  );
  opacity: 0.92;
}

.fit-balance {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.55) calc((1 - var(--watch)) * 100%),
    rgba(20, 14, 28, 0.22) calc((1 - var(--watch)) * 100%),
    rgba(20, 14, 28, 0.22) 100%
  );
  pointer-events: none;
  opacity: 0.55;
}

.fit-marker {
  position: absolute;
  top: 50%;
  left: calc(var(--fit) * 100%);
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  z-index: 2;
  transition: left 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.fit-marker-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--ink);
  box-shadow:
    0 2px 0 rgba(31, 22, 48, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.65);
}

.fit-meter.signal-go .fit-marker-dot {
  border-color: #148a45;
  box-shadow: 0 2px 0 rgba(20, 138, 69, 0.2), 0 0 0 4px rgba(25, 196, 99, 0.22);
}
.fit-meter.signal-caution .fit-marker-dot {
  border-color: #b8860b;
  box-shadow: 0 2px 0 rgba(184, 134, 11, 0.2), 0 0 0 4px rgba(255, 202, 40, 0.28);
}
.fit-meter.signal-stop .fit-marker-dot {
  border-color: #d50032;
  box-shadow: 0 2px 0 rgba(213, 0, 50, 0.2), 0 0 0 4px rgba(255, 23, 68, 0.22);
}

.fit-marker-score {
  position: absolute;
  top: calc(100% + 7px);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
}

.fit-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 1.05rem;
  font-size: 0.72rem;
  font-weight: 750;
  color: rgba(91, 79, 114, 0.72);
  letter-spacing: 0.01em;
}

/* Catalog mix styles kept unused on show pages; homepage uses .mix-bar */

.scores {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0.75rem 0.9rem;
  align-items: end;
}

.scores-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.score-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  min-width: 2.35rem;
  padding: 0.22rem 0.42rem;
  border-radius: 999px;
  border: 1.5px solid rgba(31, 22, 48, 0.14);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  cursor: help;
}

.score-chip-emoji {
  font-size: 0.78rem;
  line-height: 1;
}

.score-chip-n {
  font-variant-numeric: tabular-nums;
  min-width: 0.7rem;
  text-align: center;
}

.score-chip.signal-go {
  color: #0b6b35;
  background: #e8fff0;
  border-color: rgba(0, 200, 83, 0.35);
}

.score-chip.signal-caution {
  color: #8a5a00;
  background: #fff8df;
  border-color: rgba(255, 202, 40, 0.55);
}

.score-chip.signal-stop {
  color: #9b1028;
  background: #ffe8ec;
  border-color: rgba(255, 23, 68, 0.35);
}

.score-block {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  position: relative;
  min-width: 4.2rem;
}

.score-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-align: center;
}

.semaphore {
  position: relative;
  cursor: help;
}

.sem-housing {
  display: grid;
  gap: 5px;
  padding: 7px 6px;
  border-radius: 16px;
  background: linear-gradient(180deg, #2b2b33, #141418);
  border: 3px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
}

.semaphore .lamp {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  background: #2a2a32;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.55);
  opacity: 0.35;
  transition: opacity 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* Active lamp by signal */
.semaphore.signal-go .lamp.go {
  background: radial-gradient(circle at 35% 30%, #b9ffd3, var(--go));
  box-shadow: 0 0 10px var(--go-glow), 0 0 2px #fff inset;
  opacity: 1;
}
.semaphore.signal-caution .lamp.caution {
  background: radial-gradient(circle at 35% 30%, #fff3c0, var(--caution));
  box-shadow: 0 0 10px var(--caution-glow), 0 0 2px #fff inset;
  opacity: 1;
}
.semaphore.signal-stop .lamp.stop {
  background: radial-gradient(circle at 35% 30%, #ffb3c0, var(--stop));
  box-shadow: 0 0 14px var(--stop-glow), 0 0 2px #fff inset;
  opacity: 1;
  animation: stop-pulse 1.4s ease-in-out infinite;
}

.semaphore.intensity-5 .lamp.stop {
  animation-duration: 0.85s;
}

@keyframes stop-pulse {
  0%, 100% { box-shadow: 0 0 10px var(--stop-glow), 0 0 2px #fff inset; }
  50% { box-shadow: 0 0 18px var(--stop-glow), 0 0 4px #fff inset; }
}

.sem-hover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.28rem 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 5;
}

.sem-hover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}

.semaphore:hover .sem-hover,
.semaphore:focus-visible .sem-hover,
.score-block:focus-within .sem-hover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.card-safe { border-color: var(--go); }
.card-maybe { border-color: var(--caution); }
.card-skip {
  border-color: var(--stop);
  box-shadow: 0 14px 0 rgba(255, 23, 68, 0.18);
}

.card-copy {
  min-width: 0;
  flex: 1;
}

.notes-block {
  display: grid;
  gap: 0.25rem;
}

.examples-title {
  margin: 0;
  font-weight: 750;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.examples-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.theme-watch-list li.theme-item {
  display: grid;
  gap: 0.18rem;
  align-items: stretch;
}

.theme-watch-list li.theme-item[hidden] {
  display: none;
}

.theme-item-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.theme-item-head .theme-name {
  min-width: 0;
  flex: 1;
}

.theme-pager,
.watch-list-pager {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0.1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(31, 22, 48, 0.12);
  border-radius: 999px;
}

.watch-list-pager {
  justify-content: flex-end;
  margin: 0;
  width: auto;
  padding: 0.15rem;
}

.theme-page-btn {
  appearance: none;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.12s ease;
}

.theme-page-btn:hover,
.theme-page-btn:focus-visible {
  background: #fff3c4;
  outline: none;
}

.theme-page-btn:active {
  background: #ffe082;
}

.theme-page-n {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
  min-width: 2.2rem;
  padding: 0 0.1rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.theme-how {
  display: block;
  font-weight: 600;
  color: var(--muted);
  min-width: 0;
}

.list-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0.35rem auto 2.4rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 5px 0 var(--ink);
}

.list-pager-range {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
}

.list-pager-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.list-pager-btn {
  appearance: none;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.55rem;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 0 var(--ink);
}

.list-pager-btn:hover:not(:disabled),
.list-pager-btn:focus-visible {
  background: #fff3c4;
  outline: none;
}

.list-pager-btn.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 2px 0 rgba(31, 22, 48, 0.35);
}

.list-pager-btn:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}

.list-pager-gap {
  padding: 0 0.2rem;
  font-weight: 800;
  color: var(--muted);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.theme-col {
  min-width: 0;
}

.theme-head {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 0.88rem;
}

.theme-fine .theme-head { color: #1f9d55; }
.theme-watch .theme-head { color: #c62828; }

.examples-intro {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.examples {
  margin: 0.15rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.22rem;
}

.examples li {
  margin: 0;
  background: rgba(31, 22, 48, 0.035);
  border: none;
  border-radius: 10px;
  padding: 0.42rem 0.7rem;
  font-weight: 650;
  font-size: 0.86rem;
  line-height: 1.35;
}

.theme-fine .examples li {
  background: rgba(0, 180, 90, 0.06);
}

.theme-watch-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.12rem 0.4rem;
  border-radius: 0 10px 10px 0;
  border-left: 3px solid rgba(31, 22, 48, 0.16);
  background: rgba(31, 22, 48, 0.03);
  padding: 0.42rem 0.75rem 0.42rem 0.7rem;
}

.card-safe .theme-watch-list li {
  border-left-color: rgba(31, 157, 85, 0.45);
  background: rgba(31, 157, 85, 0.05);
}

.card-maybe .theme-watch-list li {
  border-left-color: rgba(200, 140, 0, 0.5);
  background: rgba(255, 202, 40, 0.1);
}

.card-skip .theme-watch-list li {
  border-left-color: rgba(220, 38, 38, 0.55);
  background: rgba(255, 23, 68, 0.05);
}

.theme-name {
  font-weight: 800;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.theme-more {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  background: rgba(31, 22, 48, 0.08);
  border-radius: 999px;
  padding: 0.05rem 0.38rem;
}

.theme-sep {
  color: rgba(91, 79, 114, 0.35);
  font-weight: 700;
}

.theme-speaker {
  font-weight: 800;
  color: rgba(31, 22, 48, 0.75);
}

.theme-how q,
.instance q {
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-style: italic;
}

/* —— Watch-for theme filters —— */
.theme-filter-bar {
  margin: 0.25rem auto 1rem;
  padding: 0.95rem 1.05rem 1.05rem;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(31, 22, 48, 0.12);
  border-radius: 22px;
}

.theme-filter-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.7rem;
}

.theme-filter-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.theme-filter-sub {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.theme-clear {
  appearance: none;
  border: 1.5px solid rgba(31, 22, 48, 0.18);
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.theme-clear:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.theme-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.theme-chips-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.theme-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.42rem 0.65rem 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1.5px solid rgba(31, 22, 48, 0.14);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.theme-chip:hover {
  border-color: rgba(31, 22, 48, 0.35);
  transform: translateY(-1px);
}

.theme-chip.is-on {
  background: #fff1f1;
  border-color: #ff1744;
  color: #8b0000;
  box-shadow: 0 2px 0 rgba(255, 23, 68, 0.15);
}

.theme-chip-count {
  min-width: 1.35rem;
  padding: 0.08rem 0.38rem;
  border-radius: 999px;
  background: rgba(31, 22, 48, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.theme-chip.is-on .theme-chip-count {
  background: rgba(255, 23, 68, 0.14);
  color: #8b0000;
}

.theme-chip:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .theme-grid {
    grid-template-columns: 1fr;
  }
}

.notes {
  margin: 0;
  padding: 0.7rem 0.85rem;
  background: #fff3c4;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* —— Report mistake (discreet + modal) —— */
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(31, 22, 48, 0.08);
}

.report-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.2rem 0.35rem;
  border: 0;
  background: transparent;
  color: rgba(91, 79, 114, 0.55);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.card:hover .report-trigger,
.card:focus-within .report-trigger {
  color: rgba(91, 79, 114, 0.92);
}

.report-trigger:hover,
.report-trigger:focus-visible {
  color: var(--ink);
  background: rgba(31, 22, 48, 0.05);
  outline: none;
}

.report-trigger:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(31, 22, 48, 0.35);
}

.report-ico {
  flex-shrink: 0;
  opacity: 0.85;
}

body.report-open {
  overflow: hidden;
}

#report-root {
  position: relative;
  z-index: 80;
}

.report-scrim {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 28, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.report-scrim.is-on {
  opacity: 1;
}

.report-sheet {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.report-sheet.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.report-panel {
  width: min(420px, 100%);
  background: #fffcf8;
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 24px 0 rgba(31, 22, 48, 0.12), 0 30px 60px rgba(20, 14, 28, 0.18);
  padding: 1.25rem 1.3rem 1.2rem;
  color: var(--ink);
}

.report-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.report-kicker {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.report-head h2,
.report-done h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.report-x {
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1.5px solid rgba(31, 22, 48, 0.14);
  background: #fff;
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.report-x:hover,
.report-x:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  outline: none;
}

.report-ep {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.35;
}

.report-ep-code {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 216, 77, 0.55);
  border: 1.5px solid rgba(31, 22, 48, 0.18);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.report-fieldset {
  margin: 0 0 0.95rem;
  padding: 0;
  border: 0;
}

.report-fieldset legend {
  padding: 0;
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}

.report-reasons {
  display: grid;
  gap: 0.4rem;
}

.report-reason {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.62rem 0.75rem;
  border-radius: 14px;
  border: 1.5px solid rgba(31, 22, 48, 0.12);
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.report-reason:hover {
  border-color: rgba(31, 22, 48, 0.28);
}

.report-reason:has(input:checked) {
  border-color: var(--ink);
  background: linear-gradient(180deg, #fff8e8, #fff);
  box-shadow: 0 2px 0 rgba(31, 22, 48, 0.08);
}

.report-reason input {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(31, 22, 48, 0.35);
  margin: 0;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff;
}

.report-reason input:checked {
  border-color: var(--ink);
  background: radial-gradient(circle at center, var(--ink) 0 40%, #fff 42%);
}

.report-label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.report-label .opt {
  font-weight: 650;
  color: var(--muted);
}

#report-details {
  width: 100%;
  resize: vertical;
  min-height: 84px;
  max-height: 180px;
  border-radius: 14px;
  border: 1.5px solid rgba(31, 22, 48, 0.16);
  padding: 0.7rem 0.8rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
  background: #fff;
  margin: 0 0 0.55rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#report-details::placeholder {
  color: rgba(91, 79, 114, 0.55);
  font-weight: 600;
}

#report-details:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 216, 77, 0.45);
}

.report-hint {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
}

.report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.report-btn-ghost,
.report-btn-solid {
  appearance: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, opacity 0.15s ease;
}

.report-btn-ghost {
  border: 1.5px solid rgba(31, 22, 48, 0.18);
  background: transparent;
  color: var(--muted);
}

.report-btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.report-btn-solid {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 3px 0 rgba(31, 22, 48, 0.2);
}

.report-btn-solid:hover:not(:disabled) {
  transform: translateY(-1px);
}

.report-btn-solid:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.report-error {
  margin: 0.65rem 0 0;
  color: #b71c1c;
  font-size: 0.82rem;
  font-weight: 700;
}

.report-done {
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 1.45rem;
}

.report-check {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1b8a4a;
  background: #e6f8ee;
  border: 1.5px solid rgba(27, 138, 74, 0.25);
}

.report-done p {
  margin: 0.4rem auto 1.15rem;
  max-width: 28ch;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
  line-height: 1.4;
}

.report-done .report-btn-solid {
  min-width: 7rem;
}

@media (prefers-reduced-motion: reduce) {
  .report-scrim,
  .report-sheet,
  .report-trigger,
  .report-btn-solid {
    transition: none;
  }
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.hidden { display: none; }

.site-footer {
  border-top: 3px dashed #ffb0cb;
  padding: 1.25rem 0 2.5rem;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

/* —— Episode detail page —— */
.ep-page .wrap {
  width: min(980px, calc(100% - 2rem));
  margin-inline: auto;
}

.ep-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  padding-top: 1rem;
}

.back-home.subtle {
  opacity: 0.65;
  font-weight: 700;
}

.ep-hero {
  padding: 1rem 0 0.5rem;
}

.ep-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 1.1rem;
  align-items: stretch;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 0 rgba(31, 22, 48, 0.08);
}

.ep-hero-cover {
  min-height: 220px;
  background: #111;
}

.ep-hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ep-hero-body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.ep-show {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ep-hero-body h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ep-hero-body .fit-meter {
  max-width: none;
  margin-top: 0.55rem;
}

.ep-main {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 0 2.5rem;
}

.ep-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(31, 22, 48, 0.12);
  border-radius: 22px;
  padding: 1rem 1.1rem 1.15rem;
}

.ep-section-title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.ep-scores {
  justify-content: start;
}

.verdict-line {
  margin: 0.9rem 0 0;
  font-weight: 800;
  color: var(--muted);
}

.ep-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.ep-pager {
  display: flex;
  gap: 0.5rem;
}

.ep-page-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 3px 0 rgba(31, 22, 48, 0.1);
}

.ep-page-link:hover {
  transform: translateY(-1px);
}

.ep-page-link.is-disabled {
  opacity: 0.35;
  box-shadow: none;
  pointer-events: none;
}

.ep-report {
  color: rgba(91, 79, 114, 0.75);
}

@media (max-width: 820px) {
  .ep-hero-card {
    grid-template-columns: 1fr;
  }
  .ep-hero-cover {
    min-height: 180px;
    max-height: 220px;
  }
}

@media (max-width: 1100px) {
  .vibe-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .controls-bar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .controls-bar .field.grow {
    grid-column: 1 / -1;
  }
  .hero-copy,
  .hero-card {
    transform: none;
  }
  .scores {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
}

/* —— Episode page: theme blocks with every instance —— */
.ep-prose {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
  font-weight: 650;
  line-height: 1.55;
  color: var(--ink);
  max-width: 46rem;
}

.ep-prose strong {
  font-weight: 850;
}

.theme-block {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem 0.9rem;
  border: 2px solid #f5a3a3;
  border-radius: 16px;
  background: #fff7f7;
}

.theme-block-head {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 1.05rem;
}

.theme-count {
  font-family: var(--body, inherit);
  font-size: 0.74rem;
  font-weight: 800;
  color: #8b0000;
  background: rgba(255, 23, 68, 0.12);
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
}

.theme-block-intro {
  margin: 0.35rem 0 0.6rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--muted);
  line-height: 1.4;
}

.instance-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.instance {
  margin: 0;
  padding: 0.5rem 0.7rem;
  background: #fff;
  border: 1.5px solid rgba(31, 22, 48, 0.1);
  border-radius: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.instance-speaker {
  font-weight: 850;
  color: rgba(31, 22, 48, 0.8);
}

.instance-note {
  color: var(--muted);
}

.instance-more {
  background: transparent;
  border-style: dashed;
  font-size: 0.85rem;
  color: var(--muted);
}

.no-themes {
  margin: 0.5rem 0 0;
  font-weight: 700;
  color: var(--muted);
}

.ep-foot-note {
  margin: 1.6rem 0 2.5rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: rgba(91, 79, 114, 0.7);
}

/* —— Show page: SEO copy + crawlable episode index —— */
.seo-copy {
  margin-top: 2rem;
  display: grid;
  gap: 0.6rem;
  max-width: 48rem;
}

.seo-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
}

.seo-copy p {
  margin: 0;
  font-weight: 650;
  line-height: 1.55;
  color: var(--muted);
}

.ep-index {
  margin: 2rem 0 1rem;
}

.ep-index h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1.4rem;
}

.ep-index-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  columns: 1;
}

.ep-index-row {
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(31, 22, 48, 0.07);
  font-size: 0.85rem;
  line-height: 1.4;
}

.ep-index-row a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.ep-index-row a:hover {
  text-decoration: underline;
}

.ep-index-code {
  display: inline-block;
  min-width: 3.6rem;
  color: rgba(91, 79, 114, 0.85);
}

.ep-index-meta {
  display: block;
  font-weight: 650;
  color: var(--muted);
  font-size: 0.8rem;
}

.ep-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(91, 79, 114, 0.75);
}

.ep-related {
  margin: 1.2rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.ep-related a {
  color: var(--ink);
}

.faq {
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid rgba(31, 22, 48, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.7rem 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.season-jump {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--muted);
}

.season-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.1rem 0.7rem;
  margin: 0.15rem 0.12rem 0.15rem 0;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 0 2px 0 var(--ink);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.season-jump a:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--ink);
}

.about-copy ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

/* —— About / how we rate —— */
.about-page {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.about-lead {
  margin: 1.35rem 0 0;
  max-width: 46rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--muted);
}

.about-lead strong { color: var(--ink); }

.about-demo {
  color: #fff;
  gap: 0.55rem;
  padding: 0.95rem 1rem 1.05rem;
}

.about-demo-kicker {
  margin: 0 0.1rem 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.about-demo-row {
  display: grid;
  grid-template-columns: 6.2rem 1fr 1.4rem;
  gap: 0.45rem;
  align-items: center;
  font-weight: 800;
  font-size: 0.88rem;
}

.about-demo-row b {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.about-dots {
  display: flex;
  gap: 0.28rem;
}

.about-dots i {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: block;
}

.about-dots i.on.go { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.55); }
.about-dots i.on.caution { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.5); }
.about-dots i.on.stop { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.55); }

.about-demo-overall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-top: 0.35rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  font-size: 0.88rem;
}

.about-demo-overall strong {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-buckets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 1.35rem 0 0;
}

.about-bucket {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 8px 0 var(--ink);
  padding: 1rem 1.05rem 1.1rem;
  display: grid;
  gap: 0.15rem;
}

.about-bucket.safe { background: #d8ffe8; }
.about-bucket.maybe { background: #fff8d6; }
.about-bucket.skip { background: #ffd6d6; }

.about-bucket-emoji {
  font-size: 1.7rem;
  line-height: 1;
}

.about-bucket-range {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-bucket h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.about-bucket p:last-child {
  margin: 0.2rem 0 0;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.35;
}

.about-section {
  margin-top: 2rem;
}

.about-section h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.5rem;
}

.about-section > p {
  margin: 0 0 0.85rem;
  max-width: 42rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.5;
}

.about-themes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-theme {
  display: inline-flex;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 3px 0 var(--ink);
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.about-steps article {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 8px 0 var(--ink);
  padding: 0.95rem 1rem 1.05rem;
  display: grid;
  gap: 0.25rem;
}

.about-steps span {
  font-size: 1.55rem;
  line-height: 1;
}

.about-steps h3 {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.about-steps p {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.35;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
  gap: 1rem 1.3rem;
  align-items: center;
  margin-top: 2rem;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(120deg, #fff4b8 0%, #ffd84d 45%, #ffb7d5 100%);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 0 10px 0 var(--ink);
  padding: 1rem 1.1rem 1.05rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta:hover {
  transform: translateY(-3px) rotate(-0.2deg);
  box-shadow: 0 13px 0 var(--ink);
}

.about-cta-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.5rem;
}

.about-cta-stack img {
  width: 6.6rem;
  height: 4.15rem;
  object-fit: cover;
  border-radius: 12px;
  border: 2.5px solid var(--ink);
  margin-left: -1.45rem;
  background: #111;
}

.about-cta-stack img:first-child { margin-left: 0; transform: rotate(-8deg); }
.about-cta-stack img:nth-child(2) { transform: rotate(-3deg); z-index: 2; }
.about-cta-stack img:nth-child(3) { transform: rotate(2deg); z-index: 3; }
.about-cta-stack img:nth-child(4) { transform: rotate(7deg); z-index: 4; }

.about-cta-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.about-cta-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a3a12;
}

.about-cta-copy strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.about-cta-sub {
  font-weight: 700;
  color: var(--muted);
}

.about-cta-btn {
  margin-top: 0.45rem;
  display: inline-flex;
  width: fit-content;
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}

@media (max-width: 900px) {
  .about-cta {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .about-cta-stack {
    min-height: 5.2rem;
  }

  .about-cta-stack img {
    width: 5.4rem;
    height: 3.4rem;
    margin-left: -1.15rem;
  }
}

@media (max-width: 640px) {
  .about-buckets,
  .about-steps {
    grid-template-columns: 1fr;
  }

  .about-demo-row {
    grid-template-columns: 5.4rem 1fr 1.2rem;
    font-size: 0.82rem;
  }
}

@media (hover: none) {
  .about-cta:hover {
    transform: none;
    box-shadow: 0 10px 0 var(--ink);
  }
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.topnav .subtle {
  margin-left: 0.8rem;
  opacity: 0.75;
}

/* —— Where to watch / where to buy —— */
.watch-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
  margin: 1rem auto 0.25rem;
  padding: 1rem 1.1rem 1.1rem;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 8px 0 var(--ink);
}

.ep-page .watch-box {
  margin-top: 0.85rem;
  margin-bottom: 0.15rem;
}

.watch-heading {
  margin: 0 0 0.2rem;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.watch-sub {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.35;
}

.watch-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.watch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.75rem 0.42rem 0.58rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff7ef;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 3px 0 var(--ink);
}

.watch-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--ink);
  background: #fff;
}

.watch-logo {
  flex: 0 0 auto;
  display: block;
  height: 20px;
  width: auto;
  object-fit: contain;
}

.watch-chip[data-provider="netflix"] .watch-logo {
  width: 72px;
  height: 20px;
}

.watch-chip[data-provider="hbo"] .watch-logo {
  width: 48px;
  height: 20px;
}

.watch-chip[data-provider="disney"] .watch-logo {
  width: 88px;
  height: 22px;
}

.watch-chip[data-provider="amazon"] .watch-logo {
  width: 68px;
  height: 20px;
}

.watch-chip[data-provider="apple"] .watch-logo {
  width: 72px;
  height: 20px;
}

.watch-chip[data-provider="google"] .watch-logo {
  width: 96px;
  height: 20px;
}

.watch-chip[data-provider="netflix"],
.watch-chip[data-provider="hbo"],
.watch-chip[data-provider="disney"],
.watch-chip[data-provider="amazon"],
.watch-chip[data-provider="apple"],
.watch-chip[data-provider="google"] {
  padding: 0.48rem 0.82rem 0.48rem 0.72rem;
}

.watch-chip[data-provider="netflix"] { background: #ffd0d0; }
.watch-chip[data-provider="hbo"] { background: #ddd0ff; }
.watch-chip[data-provider="disney"] { background: #c9ecff; }
.watch-chip[data-provider="official"] { background: #ffe56a; }
.watch-chip[data-provider="amazon"] { background: #ffe1c4; }
.watch-chip[data-provider="apple"] { background: #ece8ff; }
.watch-chip[data-provider="google"] { background: #d8ffe8; }

.watch-chip-note {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
}

.watch-ext {
  font-size: 0.78rem;
  opacity: 0.7;
}

.watch-disclose {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.scores-compact {
  display: none;
}

@media (max-width: 700px) {
  .wrap,
  .ep-page .wrap {
    width: min(1100px, calc(100% - 1.5rem));
  }

  .topnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding-top: 0.85rem;
  }

  .topnav .subtle {
    margin-left: 0;
  }

  .back-home {
    min-height: 44px;
    padding: 0.5rem 0.9rem;
  }

  .hero {
    padding: 0.75rem 0 0.2rem;
  }

  h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .tagline {
    font-size: 1rem;
  }

  .hero-copy {
    padding: 1rem 1.05rem 1.1rem;
    border-radius: 20px;
    box-shadow: 0 8px 0 var(--ink);
  }

  .hero-card {
    border-radius: 20px;
    box-shadow: 0 8px 0 var(--ink);
  }

  .hero-pills span {
    font-size: 0.78rem;
    padding: 0.28rem 0.55rem;
  }

  .watch-box {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 0.75rem;
    padding: 0.85rem 0.9rem 0.95rem;
    border-radius: 18px;
    box-shadow: 0 6px 0 var(--ink);
  }

  .watch-chip {
    min-height: 40px;
    padding: 0.45rem 0.75rem;
  }

  .vibe-row {
    gap: 0.65rem;
    margin-top: 0.95rem;
  }

  .vibe-btn {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 0.4rem;
    row-gap: 0;
    padding: 0.55rem 0.6rem;
    border-radius: 16px;
    box-shadow: 0 4px 0 var(--ink);
    min-height: 48px;
  }

  .vibe-sub {
    display: none;
  }

  .vibe-emoji {
    font-size: 1.2rem;
  }

  .vibe-label {
    font-size: 0.95rem;
  }

  .vibe-count {
    margin-top: 0;
    font-size: 0.78rem;
  }

  .controls-bar {
    padding: 0.8rem 0.85rem;
    border-radius: 18px;
    box-shadow: 0 6px 0 var(--ink);
  }

  .field input,
  .field select {
    min-height: 44px;
    font-size: 16px;
    padding: 0.55rem 0.7rem;
  }

  .theme-filter-bar {
    padding: 0.75rem 0.85rem 0.9rem;
    border-radius: 18px;
  }

  .theme-chip,
  .theme-clear {
    min-height: 40px;
  }

  .legend {
    padding: 0.75rem 0.1rem;
    gap: 0.5rem 0.75rem;
  }

  .card {
    padding: 0.65rem 0.7rem 0.55rem;
    border-radius: 18px;
  }

  .card.has-still .card-top,
  .card.has-still .notes-block,
  .card.has-still .notes,
  .card.has-still .card-foot {
    padding-left: 0;
    padding-right: 0;
  }

  .card-still {
    flex: 0 0 132px;
    width: 132px;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 10px;
  }

  .card-top {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.55rem 0.65rem;
  }

  .card.has-still .card-copy {
    flex: 1 1 calc(100% - 148px);
  }

  .card-top .scores-full {
    display: none;
  }

  .card-top .scores-compact {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .score-chip {
    min-height: 32px;
    padding: 0.35rem 0.5rem;
  }

  .card h2 {
    font-size: 1.05rem;
  }

  .summary {
    font-size: 0.84rem;
  }

  .theme-watch-list li {
    padding: 0.35rem 0.55rem 0.35rem 0.55rem;
    font-size: 0.82rem;
  }

  .theme-page-btn {
    width: 2rem;
    height: 2rem;
  }

  .list-pager {
    padding: 0.75rem 0.8rem;
    border-radius: 16px;
  }

  .list-pager-btn {
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.7rem;
  }

  .report-trigger,
  .card-open-hint {
    min-height: 44px;
    padding: 0.4rem 0.35rem;
    display: inline-flex;
    align-items: center;
  }

  .ep-hero-cover {
    min-height: 140px;
    max-height: 168px;
  }

  .ep-hero-body {
    padding: 0.9rem 0.95rem 1rem;
  }

  .ep-hero-body h1 {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
  }

  .ep-panel {
    padding: 0.85rem 0.9rem 1rem;
    border-radius: 18px;
  }

  .ep-scores .score-block {
    min-width: 0;
  }

  .ep-scores .score-label {
    font-size: 0.62rem;
  }

  .ep-scores .semaphore .lamp {
    width: 13px;
    height: 13px;
  }

  .ep-scores .sem-housing {
    padding: 5px 4px;
    gap: 3px;
    border-radius: 12px;
  }

  .ep-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ep-pager {
    width: 100%;
  }

  .ep-page-link {
    flex: 1;
    justify-content: center;
    min-height: 44px;
  }

  .ep-report {
    align-self: center;
    min-height: 44px;
  }

  .report-sheet {
    padding: 0;
    align-items: end;
  }

  .report-panel {
    width: 100%;
    border-radius: 22px 22px 0 0;
    max-height: min(92dvh, 100%);
    overflow: auto;
    padding-bottom: max(1.2rem, env(safe-area-inset-bottom, 0px));
  }

  .ep-index-row {
    padding: 0.55rem 0.7rem;
  }

  .season-jump {
    line-height: 1.8;
  }

  .season-jump a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.1rem 0.5rem;
    margin: 0.12rem 0.08rem 0.12rem 0;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid rgba(31, 22, 48, 0.14);
    text-decoration: none;
  }

  .faq-item summary {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }
}

@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .vibe-btn:hover,
  .watch-chip:hover,
  .back-home:hover,
  .ep-page-link:hover,
  .theme-chip:hover {
    transform: none;
  }

  .sem-hover {
    display: none;
  }
}

@media (max-width: 380px) {
  .vibe-label {
    font-size: 0.92rem;
  }

  .hero-pills {
    gap: 0.3rem;
  }
}

/* —— Guides hub: cover cards —— */
.guide-hero-covers {
  position: relative;
  display: block;
  min-height: 320px;
}

.guide-hero-covers img {
  position: absolute;
  width: 64%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  background: #000;
}

.guide-hero-covers img:nth-child(1) { top: 0; left: 2%; transform: rotate(-5deg); }
.guide-hero-covers img:nth-child(2) { top: 6%; right: 0; transform: rotate(4deg); }
.guide-hero-covers img:nth-child(3) { top: 44%; left: 8%; transform: rotate(-2.5deg); }
.guide-hero-covers img:nth-child(4) { top: 50%; right: 5%; transform: rotate(6deg); }

.guide-grid {
  list-style: none;
  margin: 1.4rem 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.guide-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-4px) rotate(-0.3deg);
  box-shadow: 0 12px 0 var(--ink);
}

.guide-cover {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.guide-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transition: transform 0.45s ease;
}

.guide-card:hover img {
  transform: scale(1.06);
}

.guide-body {
  display: grid;
  gap: 0.28rem;
  padding: 0.75rem 0.85rem 0.9rem;
  align-content: start;
}

.guide-body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.guide-stat {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
}

.guide-mix {
  display: flex;
  height: 8px;
  margin-top: 0.25rem;
  border-radius: 999px;
  overflow: hidden;
  background: #efe8f4;
  border: 1.5px solid var(--ink);
}

.guide-seg {
  display: block;
  min-width: 0;
  flex-basis: 0;
}

.guide-seg.safe { background: #22c55e; }
.guide-seg.maybe { background: #f59e0b; }
.guide-seg.skip { background: #ef4444; }

.guide-legend {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
}

.guide-legend strong {
  color: var(--ink);
}

.guide-badge {
  justify-self: start;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
}

.guide-badge.safe { background: #d8ffe8; }
.guide-badge.maybe { background: #fff3c4; }
.guide-badge.skip { background: #ffd0d0; color: #8b0000; }

.guide-cta {
  justify-self: start;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--grape);
}

.guide-card:hover .guide-cta {
  text-decoration: underline;
}

/* —— Guide sections & groups —— */
.guide-sections {
  display: grid;
  gap: 2.4rem;
  margin-top: 1.6rem;
  margin-bottom: 2rem;
}

.guide-section-head,
.guide-group-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 0.75rem 1rem;
  box-shadow: 0 6px 0 var(--ink);
}

.guide-section-head.safe,
.guide-group-head.safe { background: #eafff2; }

.guide-section-head.maybe,
.guide-group-head.maybe { background: #fff7dc; }

.guide-section-head.skip,
.guide-group-head.skip { background: #ffecec; }

.guide-section-emoji {
  flex: 0 0 auto;
  font-size: 1.7rem;
  line-height: 1;
}

.guide-section-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.guide-section-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.guide-section-copy p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
  color: var(--muted);
}

.guide-section-count {
  flex: 0 0 auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  white-space: nowrap;
}

/* —— Guide episode cards —— */
.ep-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.ep-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 0.8rem 0.55rem 0.55rem;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 4px 0 var(--ink);
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.ep-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--ink);
}

.ep-card-still {
  flex: 0 0 auto;
  width: 118px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #efe8f4;
}

.ep-card-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ep-card-main {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 0.3rem;
}

.ep-card-top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ep-card-code {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 800;
  background: #efe8f4;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  white-space: nowrap;
}

.ep-card-title {
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.25;
}

.ep-card-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.ep-theme-chip {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: #fff3c4;
  border: 1.5px solid rgba(31, 22, 48, 0.55);
}

.ep-theme-chip.more {
  background: #efe8f4;
}

.ep-card-why {
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.4;
  color: var(--muted);
}

.ep-card-score {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  white-space: nowrap;
}

.ep-card-score.safe { background: #d8ffe8; }
.ep-card-score.maybe { background: #fff3c4; }
.ep-card-score.skip { background: #ffd0d0; color: #8b0000; }

.ep-cards-empty {
  font-weight: 700;
  color: var(--muted);
}

.hero-card .disclaimer a {
  color: #fff;
}

@media (max-width: 640px) {
  .guide-section-head,
  .guide-group-head {
    align-items: flex-start;
  }

  .guide-section-count {
    font-size: 0.8rem;
    padding: 0.2rem 0.55rem;
  }

  .ep-card {
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.5rem 0.65rem 0.65rem 0.5rem;
  }

  .ep-card-still {
    width: 96px;
  }
}

@media (max-width: 420px) {
  .ep-card-still {
    display: none;
  }
}

@media (hover: none) {
  .ep-card:hover {
    transform: none;
    box-shadow: 0 4px 0 var(--ink);
  }
}

@media (max-width: 900px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-hero-covers {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .guide-card:hover {
    transform: none;
    box-shadow: 0 8px 0 var(--ink);
  }

  .guide-card:hover img {
    transform: none;
  }
}

@media (hover: none) {
  .guide-card:hover {
    transform: none;
    box-shadow: 0 8px 0 var(--ink);
  }

  .guide-card:hover img {
    transform: none;
  }
}
