:root {
  --ink: #0a1420;
  --ink-2: #101f30;
  --blue: #16324a;
  --blue-deep: #0d1b2a;
  --blue-cold: #4d7ea8;
  --snow: #dbe7f2;
  --wine: #6b1420;
  --wine-bright: #8f1d2c;
  --gold: #b8912f;
  --gold-dim: #7a6122;
  --paper: #f2ece1;
  --line: rgba(184, 145, 47, 0.22);
  --serif: "Songti SC", "SimSun", "Noto Serif SC", Georgia, "Times New Roman", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, "Segoe UI", sans-serif;
  --narrow: "DIN Condensed", "Arial Narrow", "Helvetica Neue Condensed", "Oswald", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(1200px 700px at 12% -8%, rgba(107, 20, 32, 0.55), transparent 62%),
    radial-gradient(900px 620px at 88% 4%, rgba(43, 92, 132, 0.4), transparent 60%),
    linear-gradient(180deg, #0a1420 0%, #091119 46%, #060d14 100%);
  color: var(--snow);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  color: var(--paper);
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0.14em;
  font-weight: 600;
}
p {
  margin: 0;
}
ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(6, 13, 20, 0.96), rgba(6, 13, 20, 0.82));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 26px;
  min-height: 46px;
}
a[data-contract="site-name"], .site-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--paper);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
a[data-contract="site-name"]:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 18px;
  font-size: 13px;
}
a.runtime-category {
  color: rgba(219, 231, 242, 0.72);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.08em;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a.runtime-category:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 22px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.movie-overview {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 20px 22px;
  background:
    linear-gradient(155deg, rgba(107, 20, 32, 0.34) 0%, rgba(13, 27, 42, 0.5) 42%, rgba(9, 17, 25, 0.72) 100%);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 22px 50px -30px rgba(0, 0, 0, 0.95);
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(184, 145, 47, 0.35);
  border-radius: 2px;
  background: #0b1621;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 1);
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(107, 20, 32, 0.42) 0%, transparent 46%),
    linear-gradient(255deg, rgba(77, 126, 168, 0.3) 0%, transparent 42%);
  pointer-events: none;
}
.hero-titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.movie-title {
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.24;
  letter-spacing: 0.18em;
  color: var(--paper);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.75);
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-left: 12px;
  border-left: 2px solid var(--wine-bright);
}
.movie-seo {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(219, 231, 242, 0.78);
  max-width: 62ch;
}
.player-shell.wide-player {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background: #000;
  border: 1px solid rgba(184, 145, 47, 0.28);
  border-radius: 2px;
  overflow: hidden;
}
.wide-player video {
  display: block;
  width: 100%;
  max-width: none;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.96), rgba(6, 13, 20, 0.96));
  border-top: 1px solid rgba(184, 145, 47, 0.2);
}
.ctrl {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(219, 231, 242, 0.82);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 145, 47, 0.24);
  border-radius: 2px;
  padding: 4px 10px;
  line-height: 1.5;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.ctrl:hover {
  color: var(--paper);
  background: rgba(107, 20, 32, 0.5);
  border-color: var(--gold-dim);
}
.ctrl-progress {
  flex: 1 1 200px;
  min-width: 140px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(219, 231, 242, 0.18);
  border-radius: 2px;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}
.ctrl-volume {
  flex: 0 1 90px;
  min-width: 70px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(219, 231, 242, 0.18);
  border: 0;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-cold);
  border: 0;
}
.ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-cold);
}
.ctrl-speed {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 145, 47, 0.24);
  border-radius: 2px;
  padding: 3px 6px;
  font-size: 12px;
}
.ctrl-speed option {
  background: #0d1b2a;
  color: var(--snow);
}
.player-shell.is-theater {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(184, 145, 47, 0.4), 0 30px 60px -30px #000;
  background: #000;
}
.player-shell.is-light-off {
  box-shadow: 0 0 0 3px rgba(184, 145, 47, 0.35), 0 40px 90px -30px #000;
}
.ctrl-play.is-playing {
  color: #0a1420;
  background: var(--gold);
  border-color: var(--gold);
}
.ctrl-mute.mute, .ctrl-mute.is-mute {
  color: var(--wine-bright);
  border-color: var(--wine-bright);
}
.ctrl-light.light {
  border-color: var(--gold-dim);
}
.player-shell.is-light-off .ctrl-light {
  color: #0a1420;
  background: var(--gold);
  border-color: var(--gold);
}
.player-shell.is-theater .ctrl-theater {
  color: #0a1420;
  background: var(--gold);
  border-color: var(--gold);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 18px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(219, 231, 242, 0.7);
  padding-bottom: 2px;
}
.status-current {
  font-family: var(--serif);
  color: var(--paper);
  letter-spacing: 0.16em;
}
.status-current::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--wine-bright);
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(143, 29, 44, 0.9);
}
.status-total {
  color: var(--gold);
}
.detail-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 24px;
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  font-size: 13px;
}
.detail-item dt {
  flex: 0 0 auto;
  color: var(--gold-dim);
  font-size: 12px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.detail-item dd {
  min-width: 0;
  color: rgba(219, 231, 242, 0.9);
  letter-spacing: 0.04em;
}
.synopsis-block {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 14px;
  border-left: 2px solid rgba(107, 20, 32, 0.75);
}
.synopsis-heading, .cast-heading, .section-heading, .rec-heading {
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: none;
}
.synopsis-heading {
  color: var(--paper);
  font-size: 16px;
}
.synopsis-para {
  font-size: 14px;
  line-height: 1.84;
  color: rgba(219, 231, 242, 0.76);
  max-width: 78ch;
}
.synopsis-para:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  float: left;
  padding: 4px 8px 0 0;
  color: var(--wine-bright);
}
.cast-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
  align-items: start;
}
.cast-member {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cast-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 50% / 34%;
  background:
    radial-gradient(120% 90% at 30% 18%, rgba(184, 145, 47, 0.34), transparent 55%),
    linear-gradient(160deg, #1b3348 0%, #122335 48%, #4a1520 100%);
  border: 1px solid rgba(184, 145, 47, 0.28);
  box-shadow: inset 0 -18px 28px -18px rgba(0, 0, 0, 0.9);
}
.cast-name {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(219, 231, 242, 0.82);
  text-align: center;
  line-height: 1.4;
}
.timeline-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline-axis {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
  border-left: 1px solid rgba(184, 145, 47, 0.3);
  margin-left: 78px;
}
.timeline-axis::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #e2c268, var(--gold-dim));
  box-shadow: 0 0 14px rgba(184, 145, 47, 0.7);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  padding: 9px 0 9px 20px;
  border-bottom: 1px dashed rgba(184, 145, 47, 0.14);
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -3.5px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold-dim);
}
.node-time {
  position: absolute;
  left: -84px;
  top: 8px;
  width: 62px;
  text-align: right;
  font-family: var(--narrow);
  font-size: 12px;
  font-stretch: condensed;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.node-label {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: rgba(219, 231, 242, 0.8);
}
.episodes-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.episode-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) rgba(255, 255, 255, 0.06);
}
.episode-rail::-webkit-scrollbar {
  height: 6px;
}
.episode-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.episode-rail::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}
.episode-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 12px 13px 13px;
  background: linear-gradient(170deg, rgba(22, 50, 74, 0.42), rgba(9, 17, 25, 0.66));
  border: 1px solid rgba(184, 145, 47, 0.16);
  border-top: 2px solid rgba(107, 20, 32, 0.85);
  border-radius: 2px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.episode-card:hover {
  border-color: rgba(184, 145, 47, 0.5);
  transform: translateY(-2px);
}
.episode-number {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(219, 231, 242, 0.16);
  font-variant-numeric: tabular-nums;
}
.episode-title {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--paper);
}
.episode-summary {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(219, 231, 242, 0.66);
  flex: 1 1 auto;
}
.episode-duration {
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-top: 1px solid rgba(184, 145, 47, 0.16);
  padding-top: 6px;
}
.comments-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  align-items: start;
}
.comment-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 14px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 145, 47, 0.12);
}
.comment-nick {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-align: right;
  line-height: 1.6;
  word-break: break-word;
}
.comment-text {
  font-size: 13px;
  line-height: 1.76;
  color: rgba(219, 231, 242, 0.78);
  text-align: left;
  border-left: 1px solid rgba(107, 20, 32, 0.8);
  padding-left: 12px;
}
.rec-region {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rec-heading {
  font-size: 15px;
}
.rec-collage {
  display: grid;
  gap: 10px;
  align-items: start;
}
.rec-collage-a {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.rec-collage-b {
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
}
.rec-collage-c {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}
a.rec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 6px;
  color: var(--snow);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(22, 50, 74, 0.3), rgba(9, 17, 25, 0.5));
  border: 1px solid rgba(184, 145, 47, 0.16);
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
a.rec-item:hover {
  border-color: rgba(184, 145, 47, 0.55);
  background: linear-gradient(180deg, rgba(107, 20, 32, 0.32), rgba(9, 17, 25, 0.6));
  color: var(--paper);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 1px;
  background: #0b1621;
  filter: saturate(0.9) contrast(1.05);
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--paper);
  line-height: 1.5;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(219, 231, 242, 0.6);
}
.rec-region-2 .rec-collage-b a.rec-item:first-child {
  grid-row: span 1;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 13, 20, 0.6), rgba(4, 9, 14, 0.95));
  padding: 22px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
}
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(219, 231, 242, 0.5);
  max-width: 86ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 13px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: rgba(219, 231, 242, 0.78);
  text-decoration: none;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
  padding-top: 10px;
  border-top: 1px dashed rgba(184, 145, 47, 0.16);
  font-size: 12px;
}
.friends-label {
  color: var(--gold-dim);
  letter-spacing: 0.2em;
  font-family: var(--serif);
}
a.runtime-friend-link {
  color: rgba(219, 231, 242, 0.6);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}
a.runtime-friend-link:hover {
  color: var(--gold);
}
@media (max-width: 980px) {.overview-hero {
    grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
    gap: 20px;
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.rec-collage-b {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.page-main {
    padding: 16px 14px 30px;
    gap: 20px;
  }
.header-inner {
    padding: 6px 14px;
    gap: 4px 16px;
  }
.movie-overview {
    padding: 14px 13px 16px;
    gap: 14px;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
.poster-frame {
    max-width: 240px;
  }
.hero-titles {
    gap: 9px;
  }
.movie-title {
    font-size: 24px;
  }
.synopsis-block {
    padding-left: 10px;
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }
.timeline-axis {
    margin-left: 60px;
  }
.node-time {
    left: -66px;
    width: 48px;
    font-size: 11px;
  }
.episode-rail {
    grid-auto-columns: minmax(180px, 78vw);
  }
.comment-pair {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
.comment-nick {
    text-align: left;
  }
.comment-text {
    padding-left: 10px;
  }
.rec-collage-b {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-collage-a, .rec-collage-c {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.site-footer {
    padding: 18px 14px 26px;
  }}
@media (max-width: 420px) {.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-collage-a, .rec-collage-c {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
.timeline-axis {
    margin-left: 54px;
  }
.node-time {
    left: -60px;
    width: 44px;
  }
.detail-list {
    grid-template-columns: 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}
