*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg-deep: #0b0e13;
  --bg-panel: #11151d;
  --bg-panel-2: #161b26;
  --line: #232a38;
  --line-soft: #1b2130;
  --ink: #c7cedb;
  --ink-dim: #7d8798;
  --ink-faint: #4d5766;
  --cold: #5b7fa6;
  --cold-soft: #2c3c50;
  --red: #8c1f28;
  --red-deep: #5a1219;
  --alert: #ff7a18;
  --alert-dim: #b8550f;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
  --narrow: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.02em;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 14, 19, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 16px;
  max-width: 1440px;
  margin: 0 auto;
}
a[data-contract="site-name"] {
  color: var(--alert);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  border-left: 3px solid var(--alert);
  padding-left: 8px;
}
a[data-contract="site-name"]:hover { color: #ffb066; }
.header-timecode {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--alert);
  letter-spacing: 0.14em;
  border: 1px solid var(--alert-dim);
  padding: 2px 8px;
  background: rgba(255, 122, 24, 0.06);
  white-space: nowrap;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 14px;
  padding: 6px 16px 8px;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
}
a.runtime-category {
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  padding: 1px 0;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  font-family: var(--narrow);
}
a.runtime-category:hover {
  color: var(--cold);
  border-bottom-color: var(--cold);
}
.page-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px 40px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 20px;
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: relative;
  align-self: start;
  background: #05070a;
  border: 1px solid var(--line);
  overflow: hidden;
}
.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #05070a;
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.12) brightness(0.62) saturate(0.7);
  mix-blend-mode: luminosity;
}
.poster-caption {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--alert);
  background: rgba(11, 14, 19, 0.78);
  border: 1px solid var(--alert-dim);
  padding: 2px 7px;
  white-space: nowrap;
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 14, 19, 0.55) 0%, rgba(11, 14, 19, 0) 22%, rgba(11, 14, 19, 0) 62%, rgba(11, 14, 19, 0.85) 100%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, rgba(0, 0, 0, 0) 1px 3px);
}
.hero-progress-rail {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: 3px;
  background: rgba(91, 127, 166, 0.18);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-progress-fill {
  display: block;
  width: 100%;
  height: 75%;
  background: linear-gradient(180deg, var(--alert) 0%, var(--red) 100%);
  box-shadow: 0 0 8px rgba(255, 122, 24, 0.7);
  font-size: 0;
  color: transparent;
  overflow: hidden;
}
.hero-episode-ticker {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(90deg, rgba(11, 14, 19, 0.92) 0%, rgba(11, 14, 19, 0.4) 70%, rgba(11, 14, 19, 0) 100%);
  width: 100%;
}
.ticker-pixel {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--alert);
  text-shadow:
    1px 0 0 var(--red-deep),
    -1px 0 0 var(--cold-soft),
    0 0 12px rgba(255, 122, 24, 0.35);
  opacity: 0.95;
}
.ticker-pixel:nth-child(2) { opacity: 0.55; transform: translateY(-1px); }
.ticker-pixel:nth-child(3) { opacity: 0.3; transform: translateY(1px); }
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.movie-title {
  font-family: var(--narrow);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #e5ebf5;
  border-left: 4px solid var(--red);
  padding-left: 12px;
}
.movie-tagline {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--cold);
  padding-left: 16px;
  border-left: 1px solid var(--cold-soft);
}
.movie-seo {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-dim);
  text-align: justify;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 16px;
}
.btn {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  color: var(--ink);
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn:hover { background: #1d2534; border-color: var(--cold-soft); color: #e5ebf5; }
.btn-play {
  background: var(--red);
  border-color: var(--red);
  color: #f4e8e8;
  font-weight: 700;
}
.btn-play:hover { background: #a3272f; border-color: #a3272f; color: #fff; }
.btn-theater { border-color: var(--cold-soft); color: var(--cold); }
.btn-light { border-color: var(--line); color: var(--ink-dim); }
.btn-light:hover { color: var(--alert); border-color: var(--alert-dim); }
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #05070a;
  border: 1px solid var(--line);
  margin-left: 16px;
}
.player-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 0;
  object-fit: cover;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 7px 9px;
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
}
.pc-btn {
  font-family: var(--narrow);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  padding: 4px 10px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.pc-btn:hover { color: var(--cold); border-color: var(--cold-soft); }
.pc-range {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--cold-soft);
  border: 0;
  outline: none;
  cursor: pointer;
}
.pc-progress { flex: 1 1 120px; min-width: 90px; }
.pc-volume { flex: 0 0 80px; width: 80px; }
.pc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--alert);
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.pc-range::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--alert);
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.pc-speed {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  padding: 4px 6px;
  cursor: pointer;
}
.player-shell.is-playing .player-frame { outline: 1px solid var(--red); outline-offset: -1px; }
.player-shell.is-muted .pc-volume { opacity: 0.4; }
.player-shell.is-theater { box-shadow: 0 0 0 1px var(--alert-dim), 0 0 30px rgba(255, 122, 24, 0.12); }
.player-shell.is-lights-off { filter: brightness(0.72) contrast(1.08); }
.player-shell.is-lights-off .player-controls { background: #0a0d12; }
html.lights-off body { background: #05070a; }
html.lights-off .page-main { opacity: 0.9; }
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin-left: 16px;
  padding: 8px 12px;
  background: var(--bg-panel);
  border-left: 3px solid var(--red);
}
.status-label {
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.status-value {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--alert);
  letter-spacing: 0.04em;
}
.status-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.synopsis-block {
  margin-left: 16px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.block-heading {
  font-family: var(--narrow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cold);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 2px;
  background: var(--red);
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.78;
  color: var(--ink-dim);
  text-align: justify;
}
.details-block {
  margin-left: 16px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 12.5px;
}
.detail-row dt {
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}
.detail-row dd {
  font-family: var(--mono);
  color: var(--ink);
  text-align: right;
  flex: 1 1 auto;
  min-width: 0;
}
.cast-block {
  margin-left: 16px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 6px;
}
.cast-item {
  position: relative;
  height: 96px;
  background:
    linear-gradient(135deg, var(--cold-soft) 0%, #10151d 55%, var(--red-deep) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.cast-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0 1px, rgba(0, 0, 0, 0) 1px 4px),
    radial-gradient(circle at 30% 24%, rgba(199, 206, 219, 0.22) 0%, rgba(0, 0, 0, 0) 46%);
  mix-blend-mode: screen;
}
.cast-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 14, 19, 0.0) 0%, rgba(11, 14, 19, 0.85) 100%);
  border-left: 1px solid rgba(140, 31, 40, 0.4);
}
.cast-name {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5px 6px;
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: linear-gradient(0deg, rgba(11, 14, 19, 0.95) 0%, rgba(11, 14, 19, 0) 100%);
  writing-mode: horizontal-tb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-heading {
  font-family: var(--narrow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink);
  padding: 16px 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-heading::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--red);
  flex: 0 0 auto;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line) 0%, rgba(35, 42, 56, 0) 100%);
}
.timeline-section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.timeline-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 26px;
  margin-top: 4px;
}
.timeline-rail::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--cold) 0 6px,
    rgba(44, 60, 80, 0) 6px 11px
  );
  box-shadow: 0 0 7px rgba(91, 127, 166, 0.45);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 46px 96px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background: var(--cold);
  box-shadow: 0 0 6px rgba(91, 127, 166, 0.7);
  z-index: 2;
}
.timeline-thumb {
  width: 46px;
  height: 30px;
  background:
    linear-gradient(150deg, var(--cold-soft) 0%, #0c1016 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.timeline-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0 1px, rgba(0, 0, 0, 0) 1px 3px);
}
.timeline-timecode {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--alert);
  white-space: nowrap;
}
.timeline-label {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.timeline-node.is-current {
  background: linear-gradient(90deg, rgba(140, 31, 40, 0.16) 0%, rgba(140, 31, 40, 0) 70%);
  border-bottom-color: var(--red-deep);
  padding: 10px 0;
}
.timeline-node.is-current::before {
  width: 11px;
  height: 11px;
  left: -27px;
  background: var(--alert);
  box-shadow: 0 0 12px rgba(255, 122, 24, 0.85);
}
.timeline-node.is-current .timeline-thumb {
  width: 60px;
  height: 40px;
  border-color: var(--alert-dim);
  background:
    repeating-linear-gradient(0deg, rgba(255, 122, 24, 0.09) 0 1px, rgba(0, 0, 0, 0) 1px 4px),
    linear-gradient(150deg, var(--red-deep) 0%, #0c1016 100%);
  box-shadow: 0 0 14px rgba(255, 122, 24, 0.22);
}
.timeline-node.is-current .timeline-label { color: var(--ink); }
.timeline-node.is-current .timeline-timecode { font-weight: 700; }
.episodes-section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 11px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  min-height: 66px;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.episode-card:hover {
  background: var(--bg-panel-2);
  border-left-color: var(--cold);
}
.episode-number {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.episode-title {
  font-family: var(--narrow);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.35;
}
.episode-duration {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  align-self: flex-start;
  margin-top: 2px;
}
.episode-summary {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.62;
  color: var(--ink-dim);
  transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.28s ease;
  margin-top: 0;
}
.episode-card:hover .episode-summary {
  max-height: 200px;
  opacity: 1;
  margin-top: 5px;
}
.episode-card.is-current {
  border-left-color: var(--alert);
  background: linear-gradient(180deg, rgba(140, 31, 40, 0.2) 0%, var(--bg-panel) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 24, 0.14);
}
.episode-card.is-current .episode-number { color: var(--alert); }
.episode-card.is-current .episode-title { color: #e5ebf5; }
.episode-card.is-current::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(225deg, rgba(255, 122, 24, 0.22) 0%, rgba(255, 122, 24, 0) 62%);
  pointer-events: none;
}
.comments-section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.comments-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  margin-top: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--cold-soft) transparent;
}
.comments-scroller::-webkit-scrollbar { height: 6px; }
.comments-scroller::-webkit-scrollbar-track { background: var(--line-soft); }
.comments-scroller::-webkit-scrollbar-thumb { background: var(--cold-soft); }
.comments-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, auto));
  grid-auto-columns: minmax(230px, 260px);
  gap: 8px;
  align-content: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 11px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--line);
  align-self: start;
}
.comment-card:hover { border-top-color: var(--cold); }
.comment-nick {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--ink-dim);
}
.rec-region {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
}
.rec-heading {
  flex: 0 0 160px;
  max-width: 160px;
  font-family: var(--narrow);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  line-height: 1.45;
  padding-left: 9px;
  border-left: 3px solid var(--red);
  align-self: flex-start;
}
.rec-strip {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
a.rec-item {
  flex: 0 0 116px;
  width: 116px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: inherit;
  text-decoration: none;
  align-self: flex-start;
}
.rec-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0c1016;
  border: 1px solid var(--line);
  filter: grayscale(0.4) brightness(0.75) contrast(1.1);
  transition: filter 0.15s, border-color 0.15s;
}
a.rec-item:hover .rec-thumb {
  filter: grayscale(0) brightness(0.95) contrast(1.1);
  border-color: var(--cold);
}
.rec-name {
  font-family: var(--narrow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.rec-item:hover .rec-name { color: var(--cold); }
.site-footer {
  border-top: 1px solid var(--line);
  background: #090c11;
  margin-top: 8px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 12.5px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--ink-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--cold);
  border-bottom-color: var(--cold);
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-faint);
  max-width: 900px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.friend-label {
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--cold);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.85;
}
a.runtime-friend-link:hover {
  color: var(--alert);
  text-decoration: underline;
}
@media (max-width: 1100px) {.hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
.hero-media { max-width: 520px; }
.hero-info { max-width: 100%; }
.episode-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }}
@media (max-width: 860px) {.movie-title { font-size: 25px; }
.episode-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rec-region { flex-direction: column; gap: 9px; }
.rec-heading { flex: 0 0 auto; max-width: 100%; }
.rec-strip { width: 100%; }
a.rec-item { flex: 0 0 104px; width: 104px; }
.timeline-node { grid-template-columns: 40px 84px minmax(0, 1fr); gap: 9px; }
.timeline-thumb { width: 40px; height: 27px; }
.timeline-node.is-current .timeline-thumb { width: 52px; height: 34px; }}
@media (max-width: 640px) {body { font-size: 13.5px; }
.page-main { padding: 0 12px 30px; }
.header-bar { padding: 7px 12px; }
.category-strip { padding: 6px 12px 8px; gap: 2px 11px; }
.hero { padding: 14px 0 20px; }
.hero-media { max-width: 100%; }
.movie-title { font-size: 22px; padding-left: 9px; border-left-width: 3px; }
.movie-tagline, .movie-seo, .hero-actions, .synopsis-block, .details-block, .cast-block, .episode-status, .player-shell { margin-left: 0; padding-left: 0; }
.movie-tagline, .movie-seo, .hero-actions { padding-left: 10px; }
.synopsis-block, .details-block, .cast-block { padding-left: 10px; }
.episode-status { padding: 8px 10px; }
.details-list { grid-template-columns: minmax(0, 1fr); }
.cast-list { grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); }
.cast-item { height: 82px; }
.episode-grid { grid-template-columns: minmax(0, 1fr); gap: 6px; }
.episode-card { min-height: 0; }
.comments-track {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-auto-columns: auto;
    grid-template-columns: minmax(220px, 1fr);
  }
.rec-strip { gap: 7px; }
a.rec-item { flex: 1 1 92px; width: auto; min-width: 92px; }
.timeline-rail { padding-left: 22px; }
.timeline-rail::before { left: 5px; }
.timeline-node {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas:
      "thumb time"
      "thumb label";
    gap: 2px 10px;
    align-items: center;
  }
.timeline-thumb { grid-area: thumb; width: 34px; height: 23px; }
.timeline-timecode { grid-area: time; }
.timeline-label { grid-area: label; }
.timeline-node.is-current .timeline-thumb { width: 42px; height: 28px; }
.timeline-node::before { left: -22px; }
.timeline-node.is-current::before { left: -24px; }
.footer-inner { padding: 14px 12px; }
.ticker-pixel { font-size: 21px; }}
@media (max-width: 420px) {.ticker-pixel { font-size: 18px; }
.btn { padding: 7px 13px; font-size: 12px; }
.rec-strip { flex-wrap: wrap; }
a.rec-item { flex: 1 1 46%; }
.header-timecode { font-size: 10px; padding: 2px 6px; }}

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}
