:root {
  --bg-deep: #070b14;
  --bg-panel: #0d1420;
  --bg-panel-2: #111a29;
  --bg-warm: #17110b;
  --line-cold: #1d2b40;
  --line-warm: #2a2016;
  --ink-warm: #f2e9d8;
  --ink-mute: #a89c88;
  --ink-dim: #6f6656;
  --gold: #c9a05a;
  --gold-soft: #8f7439;
  --blue-glow: #4f7db3;
  --blue-dim: #223349;
  --amber: #d68c3c;
  --radius: 14px;
  --radius-sm: 9px;
  --gap: 12px;
  --font-head: "Songti SC", "STSong", "SimSun", "Noto Serif SC", serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(79, 125, 179, 0.16), transparent 62%),
    radial-gradient(900px 560px at 6% 12%, rgba(214, 140, 60, 0.10), transparent 60%),
    linear-gradient(180deg, #070b14 0%, #080d17 46%, #0b0f16 100%);
  background-attachment: fixed;
  color: var(--ink-warm);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.62;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
  display: block;
}
h1, h2, p, dl, dd, dt, figure, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-cold);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(201, 160, 90, 0.28);
  flex: 0 0 auto;
}
a[data-contract="site-name"]:hover {
  color: #edc987;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 240px;
}
a.runtime-category {
  display: inline-block;
  padding: 4px 11px;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--ink-mute);
  text-decoration: none;
  border: 1px solid var(--line-cold);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(79, 125, 179, 0.08), transparent);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--ink-warm);
  border-color: var(--gold-soft);
  background: rgba(214, 140, 60, 0.12);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 18px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--ink-warm);
  padding-left: 12px;
  border-left: 3px solid var(--gold);
  margin-bottom: 12px;
}
.movie-overview {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(34, 51, 73, 0.34) 0%, rgba(13, 20, 32, 0.9) 42%, rgba(23, 17, 11, 0.92) 100%);
  border: 1px solid var(--line-cold);
  box-shadow: 0 22px 60px -34px rgba(79, 125, 179, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  overflow: hidden;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 22px;
  padding: 20px;
  align-items: start;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-cold);
  background: linear-gradient(160deg, #16233a, #0a0e18);
  box-shadow: 0 16px 40px -22px rgba(0, 0, 0, 0.9);
  align-self: start;
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 80% 0%, rgba(214, 140, 60, 0.22), transparent 60%),
    linear-gradient(180deg, transparent 58%, rgba(7, 11, 20, 0.72) 100%);
  pointer-events: none;
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.movie-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0.04em;
  color: #fbf3e2;
  text-shadow: 0 2px 26px rgba(79, 125, 179, 0.45);
}
.movie-tagline {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-warm);
}
.movie-seo {
  font-size: 13px;
  line-height: 1.72;
  color: var(--ink-mute);
  max-width: 62ch;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.status-current, .status-total {
  display: inline-block;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
  white-space: nowrap;
}
.status-current {
  color: #1a1207;
  background: linear-gradient(180deg, #e0b268, #b8873f);
  box-shadow: 0 6px 18px -8px rgba(214, 140, 60, 0.85);
}
.status-total {
  color: var(--ink-warm);
  border: 1px solid var(--line-cold);
  background: rgba(79, 125, 179, 0.12);
}
.movie-details {
  border-top: 1px solid var(--line-cold);
  border-bottom: 1px solid var(--line-cold);
  padding: 8px 0;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 2px 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  padding: 3px 0;
  font-size: 12.5px;
}
.detail-row dt {
  flex: 0 0 auto;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  font-size: 11.5px;
}
.detail-row dt::after {
  content: "";
}
.detail-row dd {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--ink-warm);
  overflow-wrap: anywhere;
}
.player-shell {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-cold);
  background: #04070d;
  box-shadow: 0 18px 46px -26px rgba(0, 0, 0, 0.95);
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(17, 26, 41, 0.94), rgba(9, 13, 21, 0.98));
  border-top: 1px solid var(--line-warm);
}
.ctrl {
  border-radius: 8px;
  border: 1px solid var(--line-cold);
  background: rgba(79, 125, 179, 0.12);
  color: var(--ink-warm);
  font-size: 12px;
  line-height: 1;
  padding: 7px 10px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.ctrl:hover, .ctrl:focus-visible {
  border-color: var(--gold-soft);
  background: rgba(214, 140, 60, 0.16);
  color: #fbe9c9;
}
.ctrl-progress {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 150px;
  min-width: 110px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-glow), var(--amber)) no-repeat;
  background-size: 100% 100%;
  background-color: #1a2434;
  cursor: pointer;
}
.ctrl-volume {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 1 92px;
  min-width: 66px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #1a2434;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb, .ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0c07a, #b8873f);
  border: 1px solid #2a2016;
  box-shadow: 0 0 10px rgba(214, 140, 60, 0.6);
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb, .ctrl-volume::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 1px solid #2a2016;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0c07a, #b8873f);
  cursor: pointer;
}
.ctrl-speed {
  padding: 6px 8px;
  background: rgba(79, 125, 179, 0.12);
}
.ctrl-speed option {
  background: #0d1420;
  color: var(--ink-warm);
}
.player .play, .player .pause, .player .mute, .player .volume, .player .progress, .player .speed, .player .pip, .player .fullscreen, .player .theater, .player .light, .player .change, .player .click, .player .input, .player .timeupdate {
  transition: background 0.18s, border-color 0.18s, color 0.18s, opacity 0.18s;
}
.ctrl-play.is-playing, .ctrl-mute.is-muted, .ctrl-pip.is-active, .ctrl-fullscreen.is-active, .ctrl-theater.is-active, .ctrl-light.is-active {
  background: linear-gradient(180deg, #e0b268, #b8873f);
  border-color: #e0b268;
  color: #1a1207;
}
.is-active {
  border-color: var(--gold);
}
.is-playing {
  color: #fbe9c9;
}
.is-muted {
  opacity: 0.82;
}
.is-theater {
  box-shadow: 0 0 0 1px rgba(201, 160, 90, 0.5), 0 26px 70px -30px rgba(214, 140, 60, 0.7);
}
.is-lights-off {
  background: #000;
}
.is-lights-off .player-controls {
  opacity: 0.5;
}
.fullscreen, .player:fullscreen, .player-shell:fullscreen {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
}
.movie-synopsis {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.78;
  color: var(--ink-mute);
  max-width: 74ch;
  padding-left: 12px;
  border-left: 1px solid var(--line-warm);
}
.synopsis-para:first-of-type {
  color: #e4d9c4;
}
.movie-cast {
  border-top: 1px solid var(--line-cold);
  padding-top: 14px;
}
.cast-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cast-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "avatar role"
    "avatar voice";
  column-gap: 12px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(42, 32, 22, 0.7);
  position: relative;
}
.cast-item:last-child {
  border-bottom: 0;
}
.cast-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--gold-soft);
  opacity: 0;
  transition: opacity 0.2s;
}
.cast-item:hover::before {
  opacity: 1;
}
.cast-avatar {
  grid-area: avatar;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(201, 160, 90, 0.85), transparent 58%),
    linear-gradient(150deg, #24405f, #101a2a 70%);
  border: 1px solid var(--line-cold);
  box-shadow: inset 0 0 12px rgba(79, 125, 179, 0.5), 0 0 14px -6px rgba(214, 140, 60, 0.7);
}
.cast-role {
  grid-area: role;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #f4ead6;
}
.cast-voice {
  grid-area: voice;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.story-timeline {
  padding-top: 4px;
}
.film-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
  position: relative;
}
.film-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-cold) 8%, var(--line-warm) 92%, transparent);
  pointer-events: none;
}
.film-strip::-webkit-scrollbar {
  height: 6px;
}
.film-strip::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--blue-glow), var(--gold-soft));
  border-radius: 999px;
}
.timeline-node {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 152px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px 10px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(34, 51, 73, 0.42), rgba(13, 20, 32, 0.7));
  border: 1px solid var(--line-cold);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.timeline-node:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.node-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #ffe3b0, var(--amber) 62%, #6a4415);
  box-shadow: 0 0 0 4px rgba(214, 140, 60, 0.14), 0 0 16px rgba(214, 140, 60, 0.75);
  margin-bottom: 2px;
}
.timeline-node:nth-child(4) .node-dot {
  background: radial-gradient(circle at 34% 30%, #cfe4ff, var(--blue-glow) 62%, #16304d);
  box-shadow: 0 0 0 4px rgba(79, 125, 179, 0.16), 0 0 16px rgba(79, 125, 179, 0.7);
}
.node-timecode {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.node-label {
  font-family: var(--font-head);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-warm);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(266px, 1fr));
  gap: 10px;
  align-items: start;
}
.episode-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-cold);
  background: linear-gradient(180deg, rgba(17, 26, 41, 0.72), rgba(10, 15, 24, 0.86));
  padding: 9px 12px 10px;
  transition: border-color 0.2s, background 0.2s;
}
.episode-card:hover {
  border-color: var(--gold-soft);
  background: linear-gradient(180deg, rgba(29, 26, 22, 0.8), rgba(14, 15, 18, 0.9));
}
.episode-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.episode-number {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-warm);
  background: rgba(214, 140, 60, 0.1);
  white-space: nowrap;
}
.episode-title {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f6ecd9;
  text-align: left;
}
.episode-duration {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.episode-summary {
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--ink-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.episode-card:hover .episode-summary {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  color: #ded2bb;
}
.episode-card-active {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(46, 33, 16, 0.85), rgba(14, 13, 12, 0.92));
  box-shadow: 0 0 0 1px rgba(201, 160, 90, 0.35), 0 14px 34px -22px rgba(214, 140, 60, 0.9);
}
.episode-card-active .episode-number {
  color: #1a1207;
  background: linear-gradient(180deg, #e0b268, #b8873f);
  border-color: #e0b268;
}
.episode-card-active .episode-summary {
  color: #e5d8c0;
}
.comment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
  gap: 10px;
  align-items: start;
}
.comment-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-cold);
  background: linear-gradient(180deg, rgba(17, 26, 41, 0.6), rgba(11, 15, 23, 0.8));
}
.comment-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
  background: linear-gradient(180deg, rgba(35, 26, 16, 0.62), rgba(13, 13, 15, 0.84));
  border-color: var(--line-warm);
}
.comment-item:nth-child(3n) {
  margin-top: 0;
}
.comment-avatar {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(120, 168, 220, 0.9), transparent 56%),
    linear-gradient(150deg, #1d2f47, #0c1320 74%);
  border: 1px solid var(--line-cold);
  box-shadow: 0 0 12px -4px rgba(79, 125, 179, 0.8);
}
.comment-item:nth-child(even) .comment-avatar {
  background:
    radial-gradient(circle at 32% 26%, rgba(226, 172, 96, 0.9), transparent 56%),
    linear-gradient(150deg, #3a2a15, #130f0a 74%);
  box-shadow: 0 0 12px -4px rgba(214, 140, 60, 0.8);
}
.comment-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.comment-nickname {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.66;
  color: var(--ink-mute);
}
.rec-region {
  border-radius: var(--radius);
  padding: 12px 14px 14px;
  border: 1px solid var(--line-cold);
}
.rec-region-1 {
  background:
    repeating-linear-gradient(135deg, rgba(79, 125, 179, 0.10) 0 12px, rgba(79, 125, 179, 0.02) 12px 24px),
    linear-gradient(180deg, rgba(20, 33, 51, 0.7), rgba(9, 13, 21, 0.9));
  border-color: #1f3category;
  border-color: #1f3350;
}
.rec-region-2 {
  background:
    repeating-linear-gradient(135deg, rgba(214, 140, 60, 0.12) 0 12px, rgba(214, 140, 60, 0.02) 12px 24px),
    linear-gradient(180deg, rgba(46, 32, 16, 0.7), rgba(16, 12, 9, 0.9));
  border-color: #4a3418;
}
.rec-region-3 {
  background:
    repeating-linear-gradient(135deg, rgba(201, 160, 90, 0.09) 0 12px, rgba(120, 150, 190, 0.05) 12px 24px),
    linear-gradient(180deg, rgba(32, 26, 24, 0.75), rgba(11, 12, 16, 0.92));
  border-color: #3a2c1c;
}
.rec-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f1e5cf;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
}
.rec-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 10px;
  align-items: start;
}
.rec-card {
  min-width: 0;
}
a.rec-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  padding: 7px 8px 9px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 9, 15, 0.55);
  color: var(--ink-warm);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
a.rec-link:hover, a.rec-link:focus-visible {
  border-color: var(--gold-soft);
  background: rgba(20, 18, 14, 0.75);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 7px;
  background: linear-gradient(150deg, #16233a, #0a0e18);
  display: block;
}
[data-runtime="name"] {
  font-family: var(--font-head);
  font-size: 13px;
  line-height: 1.45;
  color: #f2e6d1;
  overflow-wrap: anywhere;
}
[data-runtime="blurb"] {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 8px;
  border-top: 1px solid var(--line-cold);
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.6), rgba(7, 11, 20, 0.95));
  padding: 20px 18px 26px;
}
.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto 12px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.footer-nav {
  max-width: 1180px;
  margin: 0 auto 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
a[data-contract="footer-home"] {
  font-size: 12.5px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  color: var(--ink-mute);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
a[data-contract="footer-home"]:hover {
  color: #f0c987;
  border-bottom-color: var(--gold);
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--ink-warm);
  border-bottom-color: var(--line-warm);
}
.friend-links {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(29, 43, 64, 0.6);
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--ink-mute);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px dashed rgba(42, 32, 22, 0.9);
  transition: color 0.2s, border-color 0.2s;
}
a.runtime-friend-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
@media (max-width: 860px) {.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }
.poster-frame {
    max-width: 240px;
    margin: 0 auto;
  }
.movie-title {
    font-size: clamp(23px, 6.4vw, 32px);
  }}
@media (max-width: 640px) {.page-main {
    padding: 14px 12px 30px;
    gap: 20px;
  }
.header-inner {
    padding: 9px 12px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    font-size: 17px;
  }
a.runtime-category {
    padding: 3px 9px;
    font-size: 11.5px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-item:nth-child(even) {
    text-align: left;
  }
.rec-strip {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  }
.film-strip {
    gap: 8px;
  }
.timeline-node {
    width: 140px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    order: 3;
    min-width: 0;
  }
.site-footer {
    padding: 16px 12px 22px;
  }}
@media (max-width: 420px) {.rec-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-item {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 10px;
  }
.cast-avatar {
    width: 30px;
    height: 30px;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition: none !important;
    animation: none !important;
  }}

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}
