:root {
  --ink: #0c1016;
  --ink-2: #121822;
  --panel: rgba(22, 30, 42, 0.72);
  --panel-2: rgba(28, 37, 52, 0.6);
  --line: rgba(150, 172, 198, 0.22);
  --line-strong: rgba(168, 190, 216, 0.4);
  --steel: #8ea6c0;
  --steel-dim: #61748c;
  --gold: #c9a24a;
  --gold-soft: #e3c477;
  --gold-dim: rgba(201, 162, 74, 0.35);
  --text: #d5dfea;
  --text-dim: #97a7ba;
  --mono: "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
  --sans: "Helvetica Neue", "Arial Narrow", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --radius: 3px;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body, h1, h2, h3, p, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
html, body {
  min-height: 100%;
}
body {
  background:
    radial-gradient(120% 80% at 12% -10%, rgba(38, 54, 76, 0.55), transparent 60%),
    radial-gradient(90% 70% at 100% 0%, rgba(201, 162, 74, 0.08), transparent 55%),
    linear-gradient(180deg, #0a0e14 0%, #0c1016 40%, #090d12 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.96), rgba(10, 14, 20, 0.78));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px 20px;
  flex-wrap: wrap;
}
.site-brand {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-left: 14px;
  position: relative;
  white-space: nowrap;
}
.site-brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.14);
}
a[data-contract="site-name"] {
  color: var(--gold-soft);
  text-decoration: none;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #f2ddac;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--steel);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(30, 41, 56, 0.5);
  text-decoration: none;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--gold-soft);
  border-color: var(--gold-dim);
  background: rgba(201, 162, 74, 0.1);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 12px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.3;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  bottom: 0.1em;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 162, 74, 0.15));
}
.movie-overview {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 14px;
  align-items: start;
}
.hero-watch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #05070a;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6), 0 10px 26px rgba(0, 0, 0, 0.5);
}
.player-shell video {
  display: block;
  width: 100%;
}
.player-shell.player-lights-off {
  background: #000;
}
.player-shell.player-lights-off video {
  filter: brightness(0.42) contrast(1.1);
}
.player-shell.player-theater {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 14px 34px rgba(0, 0, 0, 0.6);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ctl {
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  color: var(--steel);
  background: rgba(30, 41, 56, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.ctl:hover, .ctl:focus-visible {
  color: var(--gold-soft);
  border-color: var(--gold-dim);
  background: rgba(201, 162, 74, 0.12);
  outline: none;
}
.ctl-play {
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-color: rgba(201, 162, 74, 0.7);
  font-weight: 700;
}
.ctl-play:hover, .ctl-play:focus-visible {
  color: var(--ink);
  background: linear-gradient(180deg, #f0d691, #d5ac52);
}
.ctl-progress {
  flex: 1 1 180px;
  min-width: 120px;
  height: 5px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 0%, rgba(110, 130, 152, 0.35) 0%, rgba(110, 130, 152, 0.35) 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}
.ctl-progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid #6d5a24;
  box-shadow: 0 0 6px rgba(201, 162, 74, 0.6);
}
.ctl-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid #6d5a24;
}
.ctl-volume {
  flex: 0 1 90px;
  min-width: 64px;
  height: 5px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(110, 130, 152, 0.35);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}
.ctl-volume::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--steel);
  border: 1px solid #2c3a4c;
}
.ctl-volume::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--steel);
  border: 1px solid #2c3a4c;
}
.hero-dial {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 24%, rgba(201, 162, 74, 0.12), transparent 52%),
    linear-gradient(160deg, rgba(30, 41, 56, 0.85), rgba(14, 19, 27, 0.92));
  padding: 16px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.hero-dial::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(142, 166, 192, 0.18);
  border-radius: 2px;
  pointer-events: none;
}
.dial-gears {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gear {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 162, 74, 0.3) 0 22%, transparent 23%),
    repeating-conic-gradient(from 0deg, rgba(201, 162, 74, 0.42) 0deg 9deg, transparent 9deg 30deg);
  -webkit-mask: radial-gradient(circle, transparent 0 46%, #000 47%);
  mask: radial-gradient(circle, transparent 0 46%, #000 47%);
  opacity: 0.55;
}
.gear-a {
  width: 190px;
  height: 190px;
  top: -62px;
  right: -46px;
}
.gear-b {
  width: 118px;
  height: 118px;
  bottom: -38px;
  left: -26px;
  opacity: 0.38;
  background:
    radial-gradient(circle, rgba(142, 166, 192, 0.35) 0 22%, transparent 23%),
    repeating-conic-gradient(from 0deg, rgba(142, 166, 192, 0.5) 0deg 10deg, transparent 10deg 34deg);
}
.gear-c {
  width: 72px;
  height: 72px;
  top: 46%;
  right: 14px;
  opacity: 0.3;
  background:
    radial-gradient(circle, rgba(201, 162, 74, 0.4) 0 22%, transparent 23%),
    repeating-conic-gradient(from 0deg, rgba(201, 162, 74, 0.5) 0deg 12deg, transparent 12deg 40deg);
}
.dial-face {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10px 6px;
}
.hero-slogan {
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gold-soft);
  margin-bottom: 8px;
  font-family: var(--mono);
}
.hero-title {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: #eaf1f8;
  text-shadow: 0 0 18px rgba(142, 166, 192, 0.28);
}
.hero-seo {
  position: relative;
  z-index: 2;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  padding-top: 10px;
  text-align: justify;
}
.overview-bar {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}
.overview-poster {
  position: relative;
  width: 100%;
  align-self: start;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  background: #070a0e;
}
.poster-img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}
.overview-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.meta-lead {
  font-size: 13px;
  line-height: 1.72;
  color: var(--text-dim);
  border-left: 2px solid var(--gold-dim);
  padding-left: 10px;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.status-current, .status-total, .status-duration {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(30, 41, 56, 0.6);
  color: var(--steel);
  white-space: nowrap;
}
.status-current {
  color: var(--gold-soft);
  border-color: var(--gold-dim);
  background: rgba(201, 162, 74, 0.12);
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px 14px;
}
.detail-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(142, 166, 192, 0.16);
  font-size: 12.5px;
  min-width: 0;
}
.detail-row dt {
  flex: 0 0 62px;
  color: var(--steel-dim);
  letter-spacing: 0.08em;
}
.detail-row dd {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text);
}
.synopsis {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.78;
  color: var(--text-dim);
  padding: 4px 0 4px 14px;
  position: relative;
}
.synopsis-para::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.75;
}
.synopsis-para + .synopsis-para {
  margin-top: 4px;
  border-top: 1px solid rgba(142, 166, 192, 0.1);
  padding-top: 8px;
}
.cast {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}
.cast-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 104px;
  padding: 8px 4px;
  border: 1px solid rgba(142, 166, 192, 0.14);
  border-radius: var(--radius);
  background: rgba(16, 22, 31, 0.5);
}
.cast-portrait {
  display: block;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(142, 166, 192, 0.55);
  box-shadow: 0 0 0 3px rgba(10, 14, 20, 0.9), 0 0 10px rgba(201, 162, 74, 0.22);
  background: #0b0f15;
}
.cast-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.06);
}
.cast-name {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}
.timeline {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px 16px;
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 34px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 6%, var(--line-strong) 94%, transparent);
}
.timeline-track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 21px;
  height: 7px;
  background-image:
    repeating-linear-gradient(90deg, rgba(142, 166, 192, 0.5) 0 1px, transparent 1px 4.5%);
  opacity: 0.55;
  pointer-events: none;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 0 4px;
}
.node-gear {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 162, 74, 0.85) 0 26%, transparent 27%),
    repeating-conic-gradient(from 0deg, rgba(201, 162, 74, 0.7) 0deg 14deg, transparent 14deg 45deg);
  -webkit-mask: radial-gradient(circle, transparent 0 44%, #000 45%);
  mask: radial-gradient(circle, transparent 0 44%, #000 45%);
  filter: drop-shadow(0 0 5px rgba(201, 162, 74, 0.35));
}
.node-time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gold-soft);
  padding: 2px 7px;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  background: rgba(201, 162, 74, 0.08);
  white-space: nowrap;
}
.node-label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dim);
}
.episodes {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 11px 9px 44px;
  border: 1px solid rgba(142, 166, 192, 0.16);
  border-left: 2px solid rgba(142, 166, 192, 0.3);
  border-radius: var(--radius);
  background: rgba(16, 22, 31, 0.55);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.episode-card:hover {
  border-color: rgba(142, 166, 192, 0.36);
  background: rgba(24, 33, 46, 0.7);
}
.episode-card-active {
  border-color: var(--gold);
  border-left-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.16), rgba(16, 22, 31, 0.72));
  box-shadow: inset 0 0 0 1px rgba(201, 162, 74, 0.28);
}
.ep-number {
  position: absolute;
  left: 10px;
  top: 9px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--steel);
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.05;
}
.episode-card-active .ep-number {
  color: var(--gold-soft);
}
.ep-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e6eef7;
  line-height: 1.35;
}
.ep-summary {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-dim);
}
.ep-duration {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--steel-dim);
  margin-top: 2px;
}
.comments {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px 16px;
}
.comment-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}
.comment-note {
  flex: 1 1 240px;
  min-width: 0;
  position: relative;
  padding: 10px 12px 10px 14px;
  background: linear-gradient(170deg, rgba(38, 50, 68, 0.92), rgba(22, 30, 42, 0.92));
  border: 1px solid rgba(142, 166, 192, 0.22);
  border-radius: 2px;
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(10, 14, 20, 0.6);
}
.comment-note:nth-child(odd) {
  transform: rotate(-0.6deg);
}
.comment-note:nth-child(even) {
  transform: rotate(0.7deg);
}
.comment-note:nth-child(3n) {
  transform: rotate(-0.35deg);
}
.comment-note::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 34px;
  height: 8px;
  background: rgba(201, 162, 74, 0.32);
  border: 1px solid rgba(201, 162, 74, 0.4);
}
.note-nick {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  margin-bottom: 5px;
}
.note-text {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--text-dim);
}
.rec-region {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.rec-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 8px;
  align-items: start;
}
a.rec-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: start;
  padding: 7px;
  border: 1px solid rgba(142, 166, 192, 0.16);
  border-radius: var(--radius);
  background: rgba(16, 22, 31, 0.6);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
a.rec-item:hover, a.rec-item:focus-visible {
  border-color: var(--gold-dim);
  background: rgba(30, 41, 56, 0.8);
  transform: translateY(-1px);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a.rec-item img.rec-thumb {
  grid-row: 1 / span 2;
  width: 78px;
  max-width: 78px;
  height: 104px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(142, 166, 192, 0.28);
  filter: saturate(0.85) contrast(1.05);
}
.rec-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #e6eef7;
  line-height: 1.4;
  align-self: end;
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--steel-dim);
  border-left: 2px solid rgba(142, 166, 192, 0.24);
  padding-left: 10px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
}
.friend-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  padding: 2px 8px;
  border: 1px solid rgba(142, 166, 192, 0.18);
  border-radius: 999px;
  background: rgba(16, 22, 31, 0.6);
  color: var(--steel);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--gold-soft);
  border-color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 4px;
  border-top: 1px dotted rgba(142, 166, 192, 0.16);
}
a[data-contract="footer-home"] {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--steel);
  text-decoration: none;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus-visible {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}
a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--steel-dim);
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.player .play .ctl-play, .player.play .ctl-play {
  color: var(--ink);
}
.player.play .ctl-play {
  background: linear-gradient(180deg, #f0d691, #d5ac52);
}
.player.mute .ctl-mute, .player .mute .ctl-mute {
  color: var(--gold-soft);
  border-color: var(--gold-dim);
  background: rgba(201, 162, 74, 0.14);
}
.player.speed .ctl-speed {
  color: var(--gold-soft);
  border-color: var(--gold-dim);
}
.player.pip .ctl-pip, .player.fullscreen .ctl-fullscreen, .player.theater .ctl-theater, .player.light .ctl-light {
  color: var(--gold-soft);
  border-color: var(--gold-dim);
  background: rgba(201, 162, 74, 0.14);
}
.player.progress .ctl-progress, .player.timeupdate .ctl-progress {
  border-color: rgba(201, 162, 74, 0.5);
}
.player.volume .ctl-volume, .player.input .ctl-volume {
  border-color: var(--line-strong);
}
.player.player-lights-off .player-controls {
  background: rgba(6, 9, 13, 0.92);
  border-color: rgba(201, 162, 74, 0.28);
}
.player.player-theater .player-controls {
  border-color: var(--gold-dim);
}
.player .ctl-progress.click, .player .ctl-progress.input {
  border-color: var(--gold);
}
@media (max-width: 980px) {.overview-hero {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-dial {
    min-height: 0;
  }
.overview-bar {
    grid-template-columns: 132px minmax(0, 1fr);
  }
.rec-list {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }}
@media (max-width: 720px) {body {
    font-size: 14px;
  }
.header-inner {
    padding: 7px 12px;
    gap: 8px;
  }
.category-nav {
    justify-content: flex-start;
    flex-basis: 100%;
  }
.page-main {
    padding: 12px 12px 6px;
    gap: 14px;
  }
.overview-bar {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-poster {
    max-width: 168px;
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 12px;
    row-gap: 20px;
  }
.timeline-track::before, .timeline-track::after {
    display: none;
  }
.node-gear {
    position: static;
    transform: none;
    margin-bottom: 2px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-list {
    grid-template-columns: minmax(0, 1fr);
  }
.site-footer {
    padding: 12px 12px 22px;
  }}
@media (max-width: 460px) {.overview-poster {
    max-width: 140px;
  }
.cast-card {
    width: 92px;
  }
.cast-portrait {
    width: 58px;
    height: 58px;
  }
.ctl {
    padding: 4px 7px;
    font-size: 11.5px;
  }
.ctl-progress {
    flex-basis: 100%;
    order: 3;
  }}
@media (min-width: 1100px) {.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}

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}
