*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ink-0: #0d0a07;
  --ink-1: #16110c;
  --ink-2: #1f1811;
  --ink-3: #2b2116;
  --ink-4: #3a2c1d;
  --sand-1: #6b5a3e;
  --sand-2: #8a7551;
  --sand-3: #a89066;
  --sand-4: #c4ab7d;
  --gold: #b99a5f;
  --gold-dim: #7d6a42;
  --blood: #7a2018;
  --blood-hot: #a52c1e;
  --bone: #d9cbb2;
  --bone-dim: #a89a80;
  --line: rgba(196, 171, 125, 0.22);
  --line-soft: rgba(196, 171, 125, 0.12);
  --font-head: "Heiti SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Songti SC", "Noto Serif SC", "SimSun", "Song", serif;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: var(--ink-0);
  background-image:
    radial-gradient(120% 90% at 12% 0%, rgba(122, 32, 24, 0.16), transparent 58%),
    radial-gradient(140% 120% at 88% 8%, rgba(185, 154, 95, 0.1), transparent 62%),
    linear-gradient(178deg, #1a130c 0%, #0d0a07 46%, #100c08 100%);
  background-attachment: fixed;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0.02em;
  min-height: 100vh;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--sand-3);
  text-decoration: none;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 18px;
  padding: 8px 20px;
  background:
    linear-gradient(180deg, rgba(13, 10, 7, 0.96), rgba(13, 10, 7, 0.82));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.brand-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  min-width: 0;
}
.brand-mark {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--sand-4);
  text-transform: uppercase;
  border-left: 3px solid var(--blood);
  padding-left: 8px;
}
a[data-contract="site-name"] {
  color: var(--sand-4);
  text-decoration: none;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--sand-1);
  white-space: nowrap;
}
.categories-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 4px;
  min-width: 0;
  max-width: 100%;
}
.runtime-category, a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--sand-3);
  text-decoration: none;
  padding: 3px 9px;
  border: 1px solid var(--line-soft);
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
a.runtime-category:hover, a.runtime-category:focus {
  color: var(--bone);
  background-color: rgba(122, 32, 24, 0.28);
  border-color: var(--blood);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-main {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 44px;
}
.banner-shell {
  position: relative;
  margin: 14px 0 20px;
  min-height: clamp(320px, 52vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 26px 26px 30px;
  border: 1px solid var(--line);
  overflow: hidden;
  background-color: #1b130b;
  background-image:
    linear-gradient(180deg, rgba(13, 10, 7, 0.32) 0%, rgba(13, 10, 7, 0.62) 52%, rgba(9, 7, 5, 0.94) 100%),
    radial-gradient(90% 70% at 70% 22%, rgba(196, 171, 125, 0.26), transparent 60%),
    repeating-linear-gradient(102deg, rgba(196, 171, 125, 0.09) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(74deg, rgba(122, 32, 24, 0.12) 0 3px, transparent 3px 11px),
    linear-gradient(168deg, #4a3820 0%, #2a1d10 42%, #100b06 100%);
  background-size: cover;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.72);
}
.banner-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 7, 5, 0.9) 0%, rgba(9, 7, 5, 0.1) 32%, rgba(9, 7, 5, 0.1) 68%, rgba(9, 7, 5, 0.9) 100%);
  mix-blend-mode: multiply;
}
.banner-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blood) 22%, var(--gold-dim) 60%, transparent);
  opacity: 0.8;
}
.banner-eyebrow {
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--sand-3);
  text-transform: uppercase;
}
.banner-title {
  position: relative;
  z-index: 2;
  font-size: clamp(30px, 6.4vw, 66px);
  letter-spacing: 0.2em;
  color: var(--bone);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.85), 0 0 3px rgba(196, 171, 125, 0.35);
}
.banner-tagline {
  position: relative;
  z-index: 2;
  font-size: clamp(15px, 2.4vw, 22px);
  letter-spacing: 0.52em;
  color: var(--sand-4);
  padding-left: 2px;
  text-shadow: 0 0 22px rgba(122, 32, 24, 0.7);
}
.banner-hint {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--sand-1);
  border-top: 1px solid var(--line-soft);
  padding-top: 8px;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2px 14px;
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 54px;
  height: 2px;
  background: var(--blood);
}
.section-title {
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--sand-4);
}
.section-note {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--sand-1);
}
.timeline-shell {
  margin-bottom: 26px;
  padding: 14px 14px 16px;
  background:
    linear-gradient(180deg, rgba(58, 44, 29, 0.34), rgba(22, 17, 12, 0.7));
  border: 1px solid var(--line-soft);
}
.dune-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 30px 4px 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--sand-1) transparent;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(196, 171, 125, 0.16) 50%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 34px;
}
.dune-track::-webkit-scrollbar {
  height: 6px;
}
.dune-track::-webkit-scrollbar-track {
  background: rgba(58, 44, 29, 0.4);
}
.dune-track::-webkit-scrollbar-thumb {
  background: var(--sand-1);
}
.dune-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0 12px 4px 0;
  min-width: 0;
}
.dune-timecode {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sand-3);
  white-space: nowrap;
}
.dune-dot {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  margin: 2px 0 2px 1px;
  border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 0 3px rgba(122, 32, 24, 0.22), 0 0 14px rgba(165, 44, 30, 0.55);
}
.dune-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 32, 24, 0.6), transparent);
}
.dune-node:last-child .dune-dot::after {
  display: none;
}
.dune-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--bone-dim);
  letter-spacing: 0.02em;
  max-width: 220px;
}
.episodes-shell {
  margin-bottom: 26px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  padding: 9px 11px 10px;
  background:
    linear-gradient(180deg, rgba(43, 33, 22, 0.72), rgba(22, 17, 12, 0.86));
  border: 1px solid var(--line-soft);
  border-left: 2px solid rgba(122, 32, 24, 0.5);
  transition: background-color 0.2s ease, border-color 0.2s ease, border-left-color 0.2s ease;
}
.episode-card:hover {
  background:
    linear-gradient(180deg, rgba(107, 90, 62, 0.5), rgba(43, 33, 22, 0.92));
  border-color: rgba(196, 171, 125, 0.34);
  border-left-color: var(--blood-hot);
}
.episode-index {
  font-family: var(--font-head);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--blood-hot);
  text-transform: uppercase;
}
.episode-name {
  font-size: 14.5px;
  letter-spacing: 0.12em;
  color: var(--sand-4);
}
.episode-brief {
  font-size: 12.5px;
  line-height: 1.58;
  color: var(--bone-dim);
  letter-spacing: 0.01em;
}
.episode-meta {
  margin-top: 2px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--sand-1);
  border-top: 1px solid var(--line-soft);
  padding-top: 4px;
  width: 100%;
}
.overview-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.35fr);
  grid-template-areas:
    "head head"
    "poster info";
  align-items: start;
  gap: 12px 22px;
  margin-bottom: 26px;
  padding: 16px;
  background:
    linear-gradient(184deg, rgba(43, 33, 22, 0.66), rgba(16, 12, 8, 0.9));
  border: 1px solid var(--line);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);
}
.overview-head {
  grid-area: head;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.overview-title {
  font-size: 22px;
  letter-spacing: 0.24em;
  color: var(--bone);
}
.overview-tagline {
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--blood-hot);
}
.overview-seo {
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--bone-dim);
  max-width: 78ch;
}
.poster-column {
  grid-area: poster;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
  align-self: start;
}
.poster-frame {
  width: 100%;
  border: 1px solid var(--line);
  background: #0d0a07;
  align-self: start;
}
.poster-image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.94);
}
.player-frame {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: #000;
}
.player-frame video {
  display: block;
  width: 100%;
  height: auto;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: rgba(13, 10, 7, 0.85);
  border: 1px solid var(--line-soft);
}
.ctl-btn {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sand-3);
  background: rgba(43, 33, 22, 0.7);
  border: 1px solid var(--line);
  padding: 4px 9px;
  cursor: pointer;
  transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}
.ctl-btn:hover, .ctl-btn:focus {
  color: var(--bone);
  background: rgba(122, 32, 24, 0.4);
  border-color: var(--blood);
}
.ctl-btn.is-active, .ctl-btn.play, .ctl-btn.click, .ctl-btn.change, .ctl-btn.input {
  color: var(--ink-0);
  background: var(--gold);
  border-color: var(--sand-4);
}
.ctl-range {
  flex: 1 1 120px;
  min-width: 90px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--blood), var(--sand-1));
  border: none;
  cursor: pointer;
}
.ctl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sand-4);
  border: 1px solid var(--ink-0);
  cursor: pointer;
}
.ctl-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 1px solid var(--ink-0);
  border-radius: 50%;
  background: var(--sand-4);
  cursor: pointer;
}
.ctl-select {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--sand-3);
  background: rgba(43, 33, 22, 0.7);
  border: 1px solid var(--line);
  padding: 3px 6px;
  cursor: pointer;
}
.overview-info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
}
.status-chip {
  font-family: var(--font-head);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--sand-4);
  padding: 3px 8px;
  border: 1px solid var(--line);
  background: rgba(107, 90, 62, 0.16);
  white-space: nowrap;
}
.cast {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.cast-title, .synopsis-title, .details-title {
  font-size: 13px;
  letter-spacing: 0.26em;
  color: var(--sand-4);
  margin-bottom: 8px;
  position: relative;
  padding-left: 10px;
}
.cast-title::before, .synopsis-title::before, .details-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 4px;
  height: 0.95em;
  background: var(--blood);
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 6px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 6px;
  min-height: 116px;
  padding: 6px 6px 6px 4px;
  background:
    repeating-linear-gradient(102deg, rgba(196, 171, 125, 0.06) 0 2px, transparent 2px 6px),
    linear-gradient(170deg, #2f2418 0%, #16110c 100%);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.cast-name {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--bone);
  padding: 2px 0;
  border-right: 1px solid var(--line);
  margin-right: 2px;
}
.cast-role {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--sand-1);
  align-self: flex-end;
  padding-bottom: 2px;
}
.synopsis {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.78;
  color: var(--bone-dim);
  letter-spacing: 0.015em;
  margin-bottom: 7px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.details {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.details-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 12px;
  align-items: baseline;
}
.details-key {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sand-1);
  white-space: nowrap;
}
.details-val {
  font-size: 12.5px;
  color: var(--bone-dim);
  letter-spacing: 0.01em;
}
.comments-shell {
  margin-bottom: 26px;
}
.note-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.note-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.note-card {
  padding: 8px 10px 9px;
  background: rgba(58, 44, 29, 0.62);
  border: 1px solid var(--line-soft);
  border-top: 2px solid rgba(196, 171, 125, 0.3);
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.42);
}
.note-column:nth-child(1) .note-card {
  background: rgba(58, 44, 29, 0.62);
}
.note-column:nth-child(2) .note-card {
  background: rgba(43, 33, 22, 0.72);
  border-top-color: rgba(122, 32, 24, 0.55);
}
.note-column:nth-child(3) .note-card {
  background: rgba(72, 55, 34, 0.55);
  border-top-color: rgba(185, 154, 95, 0.4);
}
.note-card:nth-child(2) {
  background: rgba(48, 37, 25, 0.68);
}
.note-text {
  font-size: 12px;
  line-height: 1.65;
  color: var(--bone-dim);
  letter-spacing: 0.01em;
}
.note-author {
  margin-top: 5px;
  font-family: var(--font-head);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--sand-1);
  text-align: right;
  border-top: 1px dashed var(--line-soft);
  padding-top: 4px;
}
.rec-region {
  margin-bottom: 22px;
}
.rec-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 10px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  background: rgba(22, 17, 12, 0.6);
}
.rec-title {
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--sand-4);
}
.rec-badge {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-0);
  background: var(--gold);
  padding: 1px 7px;
  transform: translateY(-12px);
  align-self: flex-start;
}
.rec-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  align-items: start;
}
.rec-card, a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: rgba(31, 24, 17, 0.78);
  border: 1px solid var(--line-soft);
  color: var(--sand-3);
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
a.rec-card:hover, a.rec-card:focus {
  border-color: var(--blood);
  background: rgba(58, 44, 29, 0.85);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05) brightness(0.9);
}
.rec-thumb {
  border: 1px solid var(--line-soft);
}
.rec-name {
  font-family: var(--font-head);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--sand-4);
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--sand-1);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 16px 20px 26px;
  background: linear-gradient(180deg, rgba(16, 12, 8, 0.5), rgba(9, 7, 5, 0.95));
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 8px;
}
.footer-link, a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--sand-3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus, .footer-link:hover, .footer-link:focus {
  color: var(--gold);
  border-bottom-color: var(--blood);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--sand-1);
  max-width: 92ch;
  margin-bottom: 10px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.friend-label {
  font-family: var(--font-head);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--sand-2);
  white-space: nowrap;
}
.runtime-friend-link {
  font-size: 11.5px;
  color: var(--sand-1);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.16s ease;
}
.runtime-friend-link:hover, .runtime-friend-link:focus {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lights-off .page-main, .lights-off .site-footer {
  filter: brightness(0.42) contrast(1.08);
  transition: filter 0.3s ease;
}
.lights-off .overview-shell {
  filter: none;
  box-shadow: 0 0 0 2px rgba(185, 154, 95, 0.4), inset 0 0 60px rgba(0, 0, 0, 0.6);
}
.overview-shell.is-theater .poster-column {
  grid-column: 1 / -1;
}
.overview-shell.is-theater .player-frame {
  border-color: var(--blood);
}
.player .is-muted, video.is-muted {
  opacity: 0.94;
}
.ctl-btn.fullscreen.is-active, .ctl-btn.theater.is-active, .ctl-btn.light.is-active, .ctl-btn.mute.is-active, .ctl-btn.pip.is-active, .ctl-btn.speed.is-active, .ctl-btn.progress.is-active, .ctl-btn.volume.is-active, .ctl-btn.play.is-active {
  color: var(--ink-0);
  background: var(--blood-hot);
  border-color: var(--sand-4);
}
.ctl-btn.timeupdate {
  color: var(--sand-4);
}
@media (max-width: 900px) {.overview-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "head"
      "poster"
      "info";
  }
.poster-column {
    max-width: 460px;
  }
.note-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 680px) {body {
    font-size: 14.5px;
  }
.site-header {
    padding: 7px 12px;
  }
.brand-sub {
    letter-spacing: 0.16em;
  }
.page-main {
    padding: 0 11px 34px;
  }
.banner-shell {
    padding: 18px 14px 22px;
    min-height: 300px;
  }
.banner-title {
    letter-spacing: 0.14em;
  }
.banner-tagline {
    letter-spacing: 0.3em;
  }
.banner-hint {
    letter-spacing: 0.2em;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.note-wall {
    grid-template-columns: minmax(0, 1fr);
  }
.dune-track {
    grid-auto-columns: minmax(168px, 1fr);
  }
.poster-column {
    max-width: none;
  }
.cast-row {
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  }
.rec-row {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  }
.details-list {
    gap: 2px 10px;
  }}
@media (max-width: 420px) {.cast-card {
    min-height: 100px;
  }
.rec-row {
    grid-template-columns: minmax(0, 1fr);
  }
.player-controls {
    gap: 5px;
  }
.ctl-range {
    flex: 1 1 100%;
  }}
@media (min-width: 1180px) {.page-main {
    padding: 0 22px 52px;
  }}

footer{text-align:center!important}
footer *{justify-content:center!important}
footer :is(div,nav,ul,ol,p,section,address){margin-left:auto!important;margin-right:auto!important}
