@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy-950: #071b28;
  --navy-900: #0c2c41;
  --card: #1b3b50;
  --card-hi: #25455a;
  --cream: #f2e8ce;
  --cream-dim: #b9c2cc;
  --gold: #c9a24b;
  --gold-bright: #e0bc6c;
  --slate-line: rgba(242, 232, 206, 0.12);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { background: var(--navy-900); color: var(--cream); font-family: var(--font-body); line-height:1.5; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Header */
.site-header { position: sticky; top:0; z-index:50; background: rgba(12,44,65,0.9); backdrop-filter: blur(10px); border-bottom:1px solid var(--slate-line); }
.site-header .wrap { display:flex; align-items:center; justify-content:space-between; height:72px; }
.brand { display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:18px; }
.brand img { width:30px; height:30px; object-fit: contain; }
.nav-links { display:flex; gap:8px; font-size:14px; font-weight:600; }
.nav-links a { padding:8px 16px; border-radius:999px; color: var(--cream-dim); }
.nav-links a.active, .nav-links a:hover { background: var(--card); color: var(--gold-bright); }
.nav-toggle { display:none; background:none; border:none; color:var(--cream); font-size:22px; cursor:pointer; }
@media (max-width: 640px) {
  .nav-links { position: fixed; top:72px; left:0; right:0; background: var(--navy-950); flex-direction:column; gap:0; border-bottom:1px solid var(--slate-line); max-height:0; overflow:hidden; transition:max-height 0.3s ease; padding: 0 16px;}
  .nav-links.open { max-height:260px; padding: 8px 16px; }
  .nav-links a { padding:14px 12px; border-bottom:1px solid var(--slate-line); border-radius:0; }
  .nav-toggle { display:block; }
}

/* Buttons */
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 26px; border-radius:999px; font-family:var(--font-display); font-weight:700; font-size:14px; cursor:pointer; border:1px solid transparent; transition: transform 0.2s ease, background 0.2s ease; }
.btn-primary { background: var(--gold); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost { border-color: var(--slate-line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* Eyebrow */
.eyebrow { font-size:13px; font-weight:600; color: var(--gold); text-transform:uppercase; letter-spacing:0.08em; }

/* Hero */
.hero {
  padding: 90px 0 100px;
  text-align:center;
  position: relative;
  background-image: linear-gradient(180deg, rgba(7,27,40,0.35), var(--navy-900) 92%), url('assets/hero-moon.jpg');
  background-size: cover;
  background-position: center;
}
.hero-mark { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 12px; opacity: 0.95; }
.hero h1 { font-family: var(--font-display); font-weight:700; font-size: clamp(32px, 5vw, 52px); line-height:1.1; margin: 14px 0 12px; }
.hero p { color: var(--cream-dim); max-width: 460px; margin: 0 auto 40px; }

.selector {
  background: var(--card);
  border: 1px solid var(--slate-line);
  border-radius: 20px;
  padding: 20px;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.selector-field { background: var(--navy-900); border: 1px solid var(--slate-line); border-radius: 14px; padding: 12px 16px; text-align: left; }
.selector-field label { display:block; font-size:11px; text-transform:uppercase; letter-spacing:0.06em; color:var(--gold); font-weight:600; margin-bottom:2px; }
.selector-field select { background:none; border:none; color: var(--cream); font-family: var(--font-body); font-size: 14px; font-weight:600; width:100%; appearance:none; }
.selector-go { background: var(--gold); color: var(--navy-950); border:none; border-radius: 14px; padding: 0 26px; font-family: var(--font-display); font-weight:700; font-size:14px; cursor:pointer; }
@media (max-width: 720px) { .selector { grid-template-columns: 1fr; } }

/* Sections */
.section { padding: 70px 0; }
.section-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:28px; gap:16px; flex-wrap:wrap; }
.section-head h2 { font-family: var(--font-display); font-weight:700; font-size: clamp(22px, 3vw, 30px); }
.section-head p { color: var(--cream-dim); font-size:14px; }
.pill-link { font-size:13px; font-weight:600; color: var(--gold-bright); }

/* Destination cards (homepage featured) */
.card-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
@media (max-width: 880px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

.dest-card { background: var(--card); border: 1px solid var(--slate-line); border-radius: 18px; overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.dest-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.dest-image { aspect-ratio: 4/3; position: relative; display:flex; align-items:flex-end; padding: 14px; background-size:cover; background-position:center; }
.badge { background: rgba(12,44,65,0.85); border: 1px solid var(--slate-line); border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight:600; color: var(--gold-bright); backdrop-filter: blur(4px); }
.dest-body { padding: 18px; }
.dest-body .kicker { font-size:11px; text-transform:uppercase; letter-spacing:0.06em; color:var(--gold); font-weight:700; }
.dest-body h3 { font-family: var(--font-display); font-size:18px; font-weight:600; margin: 6px 0 4px; }
.dest-body p { font-size:13px; color: var(--cream-dim); }
.dest-footer { display:flex; justify-content:space-between; align-items:center; padding: 0 18px 18px; }
.play-chip { background: var(--gold); color: var(--navy-950); border-radius: 999px; padding: 8px 16px; font-size:13px; font-weight:700; }

/* Episode grid (episodes page) */
.structure-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .structure-grid { grid-template-columns: 1fr; } }
.structure-card { background: var(--card); border: 1px solid var(--slate-line); border-radius: 18px; padding: 28px; }
.structure-card .step-num { font-family: monospace; font-size: 12px; color: var(--gold); font-weight:700; letter-spacing:0.08em; }
.structure-card h3 { font-family: var(--font-display); font-size: 19px; font-weight:700; margin: 10px 0 10px; color: var(--gold-bright); }
.structure-card p { font-size: 13.5px; color: var(--cream-dim); line-height:1.65; }

.volume-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:28px; gap:16px; flex-wrap:wrap; padding-top: 20px; border-top: 1px solid var(--slate-line); }
.volume-head h2 { font-family: var(--font-display); font-weight:700; font-size: clamp(24px, 3.4vw, 34px); margin-top:8px; }
.volume-count { font-family: var(--font-display); font-weight:700; color: var(--gold); font-size:14px; text-transform:uppercase; letter-spacing:0.06em; }

.ep-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; padding-bottom: 60px; }
@media (max-width: 880px) { .ep-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ep-grid { grid-template-columns: 1fr; } }
.ep-card { background: var(--card); border: 1px solid var(--slate-line); border-radius: 16px; overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.ep-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.ep-image { aspect-ratio: 4/3; position: relative; background-size: cover; background-position: center; display:flex; align-items:flex-start; justify-content:space-between; padding: 12px; }
.ep-image.placeholder { background: linear-gradient(135deg, var(--card-hi), var(--navy-900)); display:flex; align-items:center; justify-content:center; }
.ep-image.placeholder span { font-family: monospace; font-size:11px; color: var(--slate-line); text-transform:uppercase; letter-spacing:0.08em; }
.ep-num { background: rgba(12,44,65,0.85); border: 1px solid var(--slate-line); border-radius: 999px; width: 26px; height: 26px; display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700; font-size: 12px; color: var(--gold-bright); backdrop-filter: blur(4px); }
.season-badge { background: rgba(12,44,65,0.85); border: 1px solid var(--slate-line); border-radius: 999px; padding: 4px 10px; font-size: 10px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color: var(--gold-bright); backdrop-filter: blur(4px); }
.ep-body { padding: 14px 16px 16px; }
.ep-body h3 { font-family: var(--font-display); font-size:16px; font-weight:700; }
.ep-body .play-chip-sm { font-size:12px; color: var(--gold-bright); font-weight:600; margin-top:6px; display:inline-flex; align-items:center; gap:5px; background:none; padding:0; }

/* Shop cards */
.shop-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; padding-bottom: 80px; }
.shop-card { background: var(--card); border: 1px solid var(--slate-line); border-radius: 16px; overflow:hidden; display:flex; flex-direction:column; transition: transform 0.25s ease, border-color 0.25s ease; }
.shop-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.shop-card-image { aspect-ratio: 4/3; background: var(--card-hi); display:flex; align-items:center; justify-content:center; color: var(--slate-line); font-family: monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.08em; }
.shop-card-body { padding: 20px; flex:1; display:flex; flex-direction:column; gap:8px; }
.shop-card-tag { font-family: monospace; font-size:11px; color: var(--gold); text-transform:uppercase; letter-spacing:0.08em; }
.shop-card-body h3 { font-family: var(--font-display); font-size:18px; font-weight:600; }
.shop-card-body p { font-size:13px; color: var(--cream-dim); flex:1; }
.shop-card-footer { display:flex; justify-content:space-between; align-items:center; padding-top:10px; border-top:1px solid var(--slate-line); font-size:13px; }
.shop-card-footer .via { color: var(--slate-line); font-family: monospace; font-size:11px; }
.shop-card-footer a { color: var(--gold-bright); font-weight:700; }

/* Note banner */
.note { margin: 20px 0 60px; border: 1px dashed var(--slate-line); border-radius: 14px; padding: 20px 24px; color: #8ea0ae; font-size: 12.5px; line-height:1.7; }
.note strong { color: var(--cream-dim); }

/* Footer */
.site-footer { border-top: 1px solid var(--slate-line); padding: 56px 0 40px; background: var(--navy-950); }
.footer-grid { display:flex; justify-content:space-between; flex-wrap:wrap; gap:32px; }
.footer-brand { font-family: var(--font-display); font-size: 18px; font-weight:700; }
.footer-tag { font-size: 13px; color: var(--cream-dim); margin-top: 6px; max-width: 320px; }
.footer-links { display:flex; gap:24px; font-size:13px; color: var(--cream-dim); }
.footer-links a:hover { color: var(--gold-bright); }
.footer-copy { margin-top: 40px; font-size: 12px; color: var(--slate-line); font-family: monospace; }

/* Preloader (homepage only, added via JS) */
html.preload-active, html.preload-active body { background: var(--navy-950) !important; overflow: hidden; }
#site-preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  animation: preloaderFadeOut 6s ease forwards;
}
#site-preloader img { width: 120px; height: 120px; opacity: 0; animation: logoFade 6s ease forwards; }
@keyframes preloaderFadeOut { 0%{opacity:1;} 66.67%{opacity:1;} 100%{opacity:0;} }
@keyframes logoFade { 0%{opacity:0;} 16.67%{opacity:0;} 50%{opacity:1;} 66.67%{opacity:1;} 100%{opacity:0;} }

/* ===========================================================
   Night Mode: dim-to-black listening experience (shared)
   =========================================================== */
html.nightmode-active, html.nightmode-active body {
  background: #030405 !important;
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}
.nightmode-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nightmode-overlay.open { opacity: 1; pointer-events: auto; }
.nightmode-bg { position: absolute; inset: 0; background: var(--navy-950); z-index: 0; }
.nightmode-overlay.open .nightmode-bg { animation: nightBgSequence 6s ease forwards; }
@keyframes nightBgSequence {
  0%   { background-color: var(--navy-950); }
  55%  { background-color: var(--navy-950); }
  100% { background-color: #030405; }
}
.nightmode-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  opacity: 0;
  z-index: 2;
}
.nightmode-overlay.open .nightmode-logo { animation: nightLogoSequence 6s ease forwards; }
@keyframes nightLogoSequence {
  0%   { opacity: 0; }
  16%  { opacity: 1; }
  40%  { opacity: 1; }
  58%  { opacity: 0; }
  100% { opacity: 0; }
}
.nightmode-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  transition: opacity 1.8s ease;
  display: none;
}
.nightmode-video.active { display: block; }
.nightmode-video.visible { opacity: 1; }
.nightmode-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 110px 26px 44px;
  background: linear-gradient(to top, rgba(3,4,5,0.95) 0%, rgba(3,4,5,0.85) 35%, rgba(3,4,5,0) 100%);
}
.nightmode-controls.visible { opacity: 1; pointer-events: auto; }
.nightmode-passport-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.nightmode-passport-bg.visible { opacity: 0.9; }
.nightmode-passport-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(3,4,5,0.35) 0%, rgba(3,4,5,0.82) 100%);
}
.nightmode-exit {
  position: fixed;
  top: 24px; right: 24px;
  background: rgba(242,232,206,0.08);
  border: 1px solid var(--slate-line);
  color: var(--cream-dim);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  z-index: 4;
}
.nightmode-exit:hover { color: var(--cream); border-color: var(--gold); }

/* Now-playing controls sit directly over the full-bleed background */
.nightmode-card {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.nightmode-art { display: none; }

.nightmode-track-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nightmode-track-info { text-align: center; }
.nightmode-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--cream); line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.nightmode-sub { font-size: 12.5px; color: var(--cream-dim); margin-top: 4px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.nightmode-badge { display: none; }

.nightmode-progress {
  display: flex; align-items: center; gap: 8px;
  width: 100%; font-size: 10px; color: var(--cream-dim); font-family: monospace;
  margin-bottom: 4px;
}
.nightmode-progress .bar {
  flex: 1; height: 4px;
  background: rgba(242,232,206,0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  touch-action: none;
  padding: 14px 0;
  margin: -14px 0;
  background-clip: content-box;
}
.nightmode-progress .bar span {
  position: absolute; left:0; top:14px; bottom:14px;
  background: var(--gold);
  border-radius: 2px;
}
.nightmode-progress .bar span::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.chapter-tick {
  position: absolute;
  top: 14px; bottom: 14px;
  width: 2px;
  background: rgba(7,27,40,0.65);
  z-index: 2;
  cursor: pointer;
}
.chapter-tick:hover { background: rgba(7,27,40,0.9); }
.chapter-label {
  text-align: center;
  font-family: monospace;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
  min-height: 14px;
  opacity: 0.9;
}

.nightmode-transport {
  background: var(--navy-950);
  border-radius: 999px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.skip-btn {
  background: none; border: none; color: var(--cream-dim);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: color 0.2s ease;
  position: relative;
}
.skip-btn span {
  position: absolute;
  font-size: 8px; font-weight: 700; font-family: monospace;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  margin-top: 1px;
}
.skip-btn:hover { color: var(--cream); }
.nightmode-playpause {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--navy-950); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.15s ease, background 0.2s ease;
  flex-shrink: 0;
}
.nightmode-playpause:hover { background: var(--gold-bright); transform: scale(1.04); }
.nightmode-playpause svg { position: relative; left: 1px; }

.nightmode-hint {
  text-align: center;
  font-size: 11px;
  color: rgba(242,232,206,0.35);
  margin-top: 16px;
  opacity: 0;
}
.nightmode-controls.visible .nightmode-hint { animation: hintFade 3.5s ease forwards; }
@keyframes hintFade { 0% { opacity: 0; } 15%,70% { opacity: 1; } 100% { opacity: 0; } }

/* Refined play button used in episode/prologue cards */
.refined-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  padding: 0;
}
.refined-play-btn svg { flex-shrink: 0; }

/* Volume 2 "Coming Soon" locked cards */
.ep-card-locked { opacity: 0.6; cursor: default; }
.ep-card-locked:hover { transform: none; border-color: var(--slate-line); }
.ep-card-locked .ep-image.placeholder { background: linear-gradient(135deg, var(--card), var(--navy-900)); }
.soon-badge {
  font-family: monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d68a85;
  border: 1px solid rgba(176,69,63,0.4);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(176,69,63,0.1);
}

/* Locked/Coming Soon stamps on Passport page */
.stamp-slot.locked { cursor: default; opacity: 0.55; }
.stamp-slot.locked .locked-stamp {
  border: 2px dashed rgba(176,69,63,0.4);
  background: var(--card);
}
.stamp-slot.locked .stamp-icon { opacity: 0.5; filter: none; font-size: 16px; }
.stamp-slot.locked .stamp-code { color: #b0453f; }
.stamp-slot.locked .stamp-title { color: var(--cream-dim); }
.stamp-slot.locked .hint { color: #b0453f; }

/* ===========================================================
   Mini Player: persistent bar shown after exiting night mode,
   so playback can always be seen, stopped, or resumed.
   =========================================================== */
.mini-player {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 9000;
  background: var(--card-hi);
  border: 1px solid var(--slate-line);
  border-radius: 14px;
  padding: 10px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
}
.mini-player.visible { display: flex; }
.mini-player-info { display: flex; align-items: center; gap: 10px; min-width: 0; cursor: pointer; flex: 1; }
.mini-player-art {
  width: 36px; height: 36px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-950);
  flex-shrink: 0;
}
.mini-player-text { min-width: 0; }
.mini-player-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-player-sub { font-size: 10.5px; color: var(--gold-bright); margin-top: 1px; }
.mini-player-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.mini-player-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-950);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mini-player-btn.mini-player-stop {
  background: transparent;
  border: 1px solid var(--slate-line);
  color: var(--cream-dim);
}
.mini-player-btn.mini-player-stop:hover { border-color: #b0453f; color: #d15850; }

/* Social links (footer + sidebar) */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--slate-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.social-links a:hover { color: var(--gold-bright); border-color: var(--gold); }
.social-links a.social-placeholder { opacity: 0.45; cursor: default; }
.social-links a.social-placeholder:hover { color: var(--cream-dim); border-color: var(--slate-line); }

/* "Double-tap to skip" hint shown briefly over the intro video */
.video-skip-hint {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  text-align: center;
  color: rgba(242,232,206,0.75);
  font-size: 12.5px;
  font-family: monospace;
  letter-spacing: 0.04em;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
.video-skip-hint.show {
  animation: videoSkipHintFade 3.5s ease forwards;
}
@keyframes videoSkipHintFade {
  0% { opacity: 0; }
  20%, 70% { opacity: 1; }
  100% { opacity: 0; }
}

/* ===========================================================
   Volume 2 voting + Top Ranked Destinations (Episodes page)
   =========================================================== */
.vote-section { padding-top: 10px; padding-bottom: 50px; }
.vote-intro { color: var(--cream-dim); font-size: 14px; margin: -6px 0 18px; max-width: 520px; }

.vote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.vote-chip {
  background: var(--card);
  border: 1px solid var(--slate-line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.vote-chip:hover { border-color: var(--gold); }
.vote-chip.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-950);
  font-weight: 600;
}
.vote-chip.disabled { opacity: 0.4; cursor: not-allowed; }

.vote-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--slate-line);
  margin-bottom: 26px;
}
.vote-count-hint { font-size: 12.5px; color: var(--cream-dim); font-family: monospace; }
.vote-submit-btn {
  background: var(--gold);
  color: var(--navy-950);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.vote-submit-btn:hover:not(:disabled) { background: var(--gold-bright); }
.vote-submit-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.vote-confirmation {
  display: none;
  background: rgba(201,162,75,0.1);
  border: 1px solid rgba(201,162,75,0.35);
  color: var(--gold-bright);
  font-size: 13.5px;
  padding: 12px 16px;
  border-radius: 10px;
  margin: -14px 0 26px;
  align-items: center;
  gap: 14px;
}
.vote-confirmation.visible { display: flex; }
.vote-change-btn {
  background: none;
  border: 1px solid rgba(201,162,75,0.4);
  color: var(--gold-bright);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.top-ranked h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
}
.top-ranked-list {
  list-style: none;
  counter-reset: rank;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 420px;
}
.top-ranked-list li {
  counter-increment: rank;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--slate-line);
  font-size: 14px;
}
.top-ranked-list li::before {
  content: counter(rank);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--gold);
  width: 22px;
  flex-shrink: 0;
}
.top-ranked-list li:nth-child(1)::before,
.top-ranked-list li:nth-child(2)::before,
.top-ranked-list li:nth-child(3)::before { color: var(--gold-bright); }
.top-ranked-empty { color: var(--cream-dim); font-size: 13px; padding: 10px 4px; }
.vote-disclaimer { font-size: 11px; color: rgba(242,232,206,0.4); margin-top: 12px; font-family: monospace; }
