:root {
  --cold: #5a6b82;
  --cold-deep: #1e2732;
  --cold-mid: #2c3846;
  --warm: #e0854a;
  --warm-soft: #f0a868;
  --warm-deep: #b85f2a;
  --paper: #0f151c;
  --paper-2: #16202a;
  --ink: #dfe6ee;
  --ink-dim: #9aa8b8;
  --ink-faint: #6b7889;
  --rule: #2a3644;
  --rule-warm: rgba(224, 133, 74, 0.35);
  --serif: "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", "SimSun", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, figure, blockquote, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 21, 28, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.14em;
  color: var(--warm-soft);
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
}
a[data-contract="site-name"]:hover {
  color: #fff;
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-left: auto;
}
a.nav-link {
  display: inline-block;
  padding: 4px 11px;
  font-size: 13.5px;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.nav-link:hover, a.nav-link:focus-visible {
  color: var(--warm-soft);
  border-color: var(--rule-warm);
  background: rgba(224, 133, 74, 0.07);
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 9px;
}
.runtime-category {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper-2);
  transition: color 0.15s, border-color 0.15s;
}
.runtime-category:hover {
  color: var(--warm-soft);
  border-color: var(--rule-warm);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding-bottom: 7px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 42px;
  height: 2px;
  background: var(--warm);
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  grid-template-areas:
    "poster side"
    "synopsis synopsis"
    "cast cast";
  gap: 20px 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.hero-poster {
  grid-area: poster;
  position: relative;
  align-self: start;
  width: 100%;
  max-width: 340px;
  background: #000;
  border-radius: 2px;
  overflow: hidden;
}
.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: brightness(0.62) contrast(1.08) saturate(0.85);
}
.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(30, 39, 50, 0.55) 0%, rgba(15, 21, 28, 0.15) 45%, rgba(15, 21, 28, 0.8) 100%);
  pointer-events: none;
}
.hero-poster-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 6px 10px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--warm-soft);
  background: rgba(15, 21, 28, 0.7);
  border-top: 1px solid var(--rule-warm);
}
.hero-side {
  grid-area: side;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
  border-left: 1px solid var(--rule);
  padding-left: 20px;
}
.movie-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: #f2f6fa;
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--warm-soft);
  letter-spacing: 0.05em;
  padding-left: 12px;
  border-left: 2px solid var(--warm);
}
.movie-seo {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-dim);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
a.action-primary {
  display: inline-block;
  padding: 8px 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  background: var(--warm-deep);
  border: 1px solid var(--warm);
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
a.action-primary:hover {
  background: var(--warm);
  color: #1a1008;
}
a.action-ghost {
  display: inline-block;
  padding: 8px 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: color 0.15s, border-color 0.15s;
}
a.action-ghost:hover {
  color: var(--warm-soft);
  border-color: var(--rule-warm);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.status-current, .status-total, .status-duration {
  font-size: 12.5px;
  line-height: 1.6;
  padding: 1px 9px;
  border-radius: 2px;
  white-space: nowrap;
}
.status-current {
  color: #1a1008;
  background: var(--warm);
  font-weight: 600;
}
.status-total {
  color: var(--warm-soft);
  border: 1px solid var(--rule-warm);
}
.status-duration {
  color: var(--ink-faint);
  border: 1px solid var(--rule);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dotted var(--rule);
  min-width: 0;
}
.detail-key {
  flex: 0 0 52px;
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.detail-value {
  flex: 1 1 auto;
  font-size: 13px;
  color: var(--ink);
  min-width: 0;
  overflow-wrap: break-word;
}
.synopsis-shell {
  grid-area: synopsis;
  min-width: 0;
}
.synopsis-body {
  columns: 2;
  column-gap: 34px;
  column-rule: 1px solid var(--rule);
}
.synopsis-para {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-dim);
  margin-bottom: 11px;
  break-inside: avoid;
  text-align: justify;
}
.synopsis-para:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 2.6em;
  float: left;
  line-height: 0.9;
  padding: 4px 8px 0 0;
  color: var(--warm);
}
.cast-shell {
  grid-area: cast;
  min-width: 0;
}
.cast-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--cold) transparent;
}
.cast-row::-webkit-scrollbar {
  height: 6px;
}
.cast-row::-webkit-scrollbar-thumb {
  background: var(--cold);
  border-radius: 0;
}
.cast-card {
  flex: 0 0 130px;
  width: 130px;
  align-self: flex-start;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper-2);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.cast-card:hover {
  border-color: var(--rule-warm);
  transform: translateY(-2px);
}
.cast-photo {
  width: 100%;
}
.cast-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.9);
  transition: filter 0.2s;
}
.cast-card:hover .cast-photo img {
  filter: grayscale(0) brightness(1);
}
.cast-name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  padding: 7px 9px 0;
}
.cast-role {
  font-size: 11.5px;
  color: var(--ink-faint);
  padding: 1px 9px 8px;
}
.player-shell {
  position: relative;
  background: #05080b;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.player-shell.is-theater {
  border-color: var(--rule-warm);
  box-shadow: 0 0 0 1px var(--rule-warm), 0 0 34px rgba(224, 133, 74, 0.18);
}
.player-shell.is-lights-off {
  background: #000;
}
.player-frame {
  width: 100%;
  min-width: 0;
  background: #000;
  line-height: 0;
}
.player-frame video {
  display: block;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.ctrl-btn {
  padding: 4px 11px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.ctrl-btn:hover {
  color: var(--ink);
  border-color: var(--cold);
}
.ctrl-btn.is-active {
  color: #1a1008;
  background: var(--warm);
  border-color: var(--warm);
}
.ctrl-range {
  flex: 1 1 180px;
  min-width: 120px;
  height: 4px;
  margin: 0 4px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--cold-mid);
  border-radius: 0;
  cursor: pointer;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 1px;
  background: var(--warm);
  border: none;
}
.ctrl-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 1px;
  background: var(--warm);
}
.timeline-shell {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.timeline-track {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--cold) transparent;
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--cold);
}
.timeline-nodes {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  position: relative;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  padding: 0 16px 14px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 11px;
  height: 11px;
  background: var(--paper);
  border: 2px solid var(--warm);
  border-radius: 50%;
  z-index: 2;
}
.timeline-node::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 0;
  bottom: 9px;
  height: 1px;
  background: var(--rule);
  z-index: 1;
}
.timeline-node:last-child::after {
  background: linear-gradient(90deg, var(--rule), transparent);
}
.node-timecode {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--warm-soft);
}
.node-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.episodes-shell {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num title"
    "sum sum"
    "dur dur";
  align-items: baseline;
  gap: 4px 12px;
  padding: 12px 14px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--cold);
  border-radius: 2px;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.episode-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-warm);
  border-left-color: var(--warm);
  background: #1a2531;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}
.episode-number {
  grid-area: num;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--warm-soft);
  white-space: nowrap;
}
.episode-title {
  grid-area: title;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.episode-summary {
  grid-area: sum;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.episode-duration {
  grid-area: dur;
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.comments-shell {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.comment-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comment-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 88%;
  padding: 12px 16px 12px 14px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.comment-card:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  border-left: 2px solid var(--cold);
}
.comment-card:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  border-right: 2px solid var(--warm);
  background: #182330;
}
.comment-card:nth-child(3n) {
  max-width: 76%;
}
.comment-avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--rule);
  align-self: flex-start;
}
.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.9);
}
.comment-quote {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 20px;
}
.comment-quote::before {
  content: "“";
  position: absolute;
  left: -2px;
  top: -8px;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  color: var(--warm);
  opacity: 0.65;
}
.comment-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink);
}
.comment-author {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}
.comment-author::before {
  content: "— ";
  color: var(--warm-soft);
}
.rec-shell {
  min-width: 0;
}
.rec-shell[data-recommendation-region="1"] .rec-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
.rec-item {
  min-width: 0;
}
a[data-runtime="recommendation"] {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-areas:
    "img name"
    "img blurb";
  align-items: start;
  gap: 2px 12px;
  padding: 8px;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
a[data-runtime="recommendation"]:hover {
  border-color: var(--rule-warm);
  background: #1a2531;
  transform: translateY(-2px);
}
.rec-item a[data-runtime="recommendation"] img, [data-runtime="recommendation"] img {
  grid-area: img;
  width: 76px;
  max-width: 76px;
  height: 100%;
  min-height: 56px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.85);
}
[data-runtime="recommendation"] [data-runtime="name"] {
  grid-area: name;
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  align-self: end;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  grid-area: blurb;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-faint);
  align-self: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-main > .rec-shell:nth-of-type(n + 6) {
  padding-bottom: 0;
}
.site-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 34px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: none;
  letter-spacing: 0.06em;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm-soft);
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  padding: 10px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.friend-links-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 12.5px;
  color: var(--cold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--warm-soft);
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-faint);
  max-width: 900px;
}
@media (min-width: 1080px) {.page-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 26px;
    align-items: start;
  }
.hero-shell, .player-shell, .timeline-shell, .episodes-shell, .comments-shell {
    grid-column: 1 / -1;
  }
.rec-shell {
    grid-column: span 1;
  }
.player-shell {
    width: 100%;
  }
.rec-shell[data-recommendation-region="1"] .rec-list, .rec-list {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-item a[data-runtime="recommendation"] img, [data-runtime="recommendation"] img {
    width: 64px;
    max-width: 64px;
  }
.rec-item a[data-runtime="recommendation"] {
    grid-template-columns: 64px minmax(0, 1fr);
  }}
@media (max-width: 900px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "side"
      "synopsis"
      "cast";
  }
.hero-poster {
    max-width: 260px;
    margin: 0 auto;
  }
.hero-side {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    padding-top: 14px;
  }
.movie-title {
    font-size: 30px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card {
    max-width: 100%;
  }
.comment-card:nth-child(3n) {
    max-width: 100%;
  }}
@media (max-width: 640px) {body {
    font-size: 14px;
  }
.page-main {
    padding: 16px 14px 30px;
    gap: 20px;
  }
.header-bar {
    padding: 9px 14px;
    gap: 10px;
  }
.category-strip {
    padding: 0 14px 8px;
  }
.movie-title {
    font-size: 25px;
  }
.movie-tagline {
    font-size: 14px;
  }
.details-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-card {
    flex: 0 0 108px;
    width: 108px;
  }
.rec-list, .rec-shell[data-recommendation-region="1"] .rec-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card {
    padding: 10px 12px;
  }
.comment-quote {
    padding-left: 16px;
  }
.ctrl-range {
    flex: 1 1 100%;
    order: 3;
  }
.site-footer {
    padding: 16px 14px 28px;
  }}
@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}
