:root {
  --bg: #14171c;
  --bg-deep: #0e1114;
  --surface: #1b1f26;
  --surface-2: #20252e;
  --line: #2e343e;
  --line-soft: #262b33;
  --ink: #c9cdd4;
  --ink-dim: #868d98;
  --ink-faint: #5e6672;
  --warm: #e0a martin;
  --warm: #e2a94f;
  --warm-soft: #b6863a;
  --wood: #3a2f28;
  --cool: #7d8996;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(1200px 600px at 78% -10%, #1f2530 0%, rgba(20, 23, 28, 0) 60%),
    linear-gradient(180deg, #171b21 0%, #14171c 40%, #101317 100%);
  background-color: var(--bg);
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--ink);
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
h1, h2 {
  font-family: "Songti SC", "SimSun", "Noto Serif CJK SC", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.35;
}
button, input, select {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--warm);
  color: #17120a;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 17, 20, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 26px;
}
a[data-contract="site-name"] {
  color: var(--warm);
  text-decoration: none;
  font-family: "Songti SC", "SimSun", "Noto Serif CJK SC", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  white-space: nowrap;
  flex: none;
  border-left: 2px solid var(--warm);
  padding-left: 10px;
  line-height: 1;
}
a[data-contract="site-name"]:hover {
  color: #f0bd6a;
}
.category-bar {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.category-track {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}
.category-track::-webkit-scrollbar {
  display: none;
}
a.runtime-category {
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  flex: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: color .18s ease, border-color .18s ease;
}
a.runtime-category:hover {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 20px 0;
}
.section-heading {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: 0.22em;
  position: relative;
}
.section-heading::before {
  content: "";
  width: 3px;
  height: 12px;
  background: var(--warm);
  display: inline-block;
  transform: translateY(0);
}
.movie-overview {
  background: linear-gradient(180deg, #1a1e25 0%, #171a20 100%);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 18px;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}
.movie-overview::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wood), transparent);
  opacity: .6;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.poster-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-deep);
  overflow: hidden;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(.82) brightness(.86) contrast(1.04);
}
.poster-slogan {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #d7d2c8;
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.92) 0%, rgba(8, 10, 13, 0.6) 60%, rgba(8, 10, 13, 0) 100%);
  width: 100%;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .4), 0 18px 40px -24px rgba(0, 0, 0, .9);
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.player-btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink-dim);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.player-btn:hover {
  color: var(--warm);
  border-color: var(--warm-soft);
}
.player-btn.is-active {
  color: #16120b;
  background: var(--warm);
  border-color: var(--warm);
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 120px;
  min-width: 90px;
  height: 3px;
  background: var(--line);
  cursor: pointer;
  outline: none;
  border-radius: 0;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--warm);
  border-radius: 0;
  border: none;
  cursor: pointer;
}
.player-range::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--warm);
  border-radius: 0;
  border: none;
  cursor: pointer;
}
.player-range--volume {
  flex: 0 1 90px;
}
.player-select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink-dim);
  font-size: 12px;
  padding: 4px 6px;
  cursor: pointer;
}
.player-select:hover {
  color: var(--warm);
  border-color: var(--warm-soft);
}
.hero-title-block {
  border-left: 2px solid var(--warm);
  padding: 2px 0 2px 12px;
}
.movie-title {
  font-size: clamp(20px, 2.4vw, 28px);
  color: #e6e4df;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.movie-tagline {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.movie-details {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0 22px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-soft);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  color: var(--ink-faint);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.detail-value {
  color: var(--ink);
  font-size: 13px;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.episode-status {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-left: 3px solid var(--warm);
}
.status-current {
  color: var(--warm);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.status-total {
  color: var(--ink-dim);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.status-total::before {
  content: "/ ";
  color: var(--line);
}
.movie-synopsis {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.synopsis-lead {
  font-size: 14px;
  line-height: 1.85;
  color: #c4c8ce;
  padding-left: 12px;
  border-left: 1px solid var(--wood);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.synopsis-body {
  columns: 2;
  column-gap: 30px;
  column-rule: 1px solid var(--line-soft);
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-dim);
  margin-bottom: 10px;
  break-inside: avoid;
  letter-spacing: 0.02em;
}
.movie-cast {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}
.cast-card {
  flex: 1 1 120px;
  max-width: 170px;
  min-width: 96px;
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  align-self: flex-start;
  transition: border-color .18s ease;
}
.cast-card:hover {
  border-color: var(--warm-soft);
}
.cast-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(160deg, #2a3038 0%, #22262d 55%, #1a1e24 100%);
  position: relative;
}
.cast-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120px 120px at 70% 20%, rgba(226, 169, 79, 0.14), transparent 70%),
    linear-gradient(0deg, rgba(10, 12, 15, 0.85) 0%, rgba(10, 12, 15, 0) 55%);
}
.cast-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 8px 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #ddd8ce;
  text-align: center;
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.95) 0%, rgba(8, 10, 13, 0) 100%);
}
.timeline-section {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}
.timeline-scroll::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroll::-webkit-scrollbar-track {
  background: var(--line-soft);
}
.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--wood);
}
.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding-top: 10px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  height: 1px;
  background: var(--line);
}
.timeline-node {
  flex: 0 0 auto;
  width: 190px;
  padding: 0 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.timeline-node::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--cool);
  border: 1px solid var(--bg);
  position: relative;
  z-index: 1;
  transition: background .18s ease, transform .18s ease;
}
.timeline-node:hover::before {
  background: var(--ink);
}
.timeline-node.is-active::before {
  background: var(--warm);
  box-shadow: 0 0 0 3px rgba(226, 169, 79, 0.18);
}
.node-timecode {
  font-family: "Songti SC", "SimSun", "Noto Serif CJK SC", Georgia, serif;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 4px;
}
.timeline-node.is-active .node-timecode {
  color: var(--warm);
  border-color: var(--warm-soft);
}
.node-label {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.timeline-node.is-active .node-label {
  color: #d9d4c9;
}
.episodes-section {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}
.episode-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 6px 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  position: relative;
  transition: background .15s ease;
}
.episode-item:hover {
  background: rgba(226, 169, 79, 0.03);
}
.episode-item.is-active {
  background: rgba(226, 169, 79, 0.06);
}
.episode-item.is-active .episode-number {
  color: var(--warm);
}
.episode-number {
  font-family: "Songti SC", "SimSun", "Noto Serif CJK SC", Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.episode-title {
  font-size: 13px;
  color: #c7cbd1;
  letter-spacing: 0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episode-duration {
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.episode-summary {
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-dim);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .28s ease, opacity .24s ease, margin .24s ease;
}
.episode-item:hover .episode-summary, .episode-item.is-active .episode-summary {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}
.comments-section {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.comment-columns {
  columns: 2;
  column-gap: 22px;
}
.comment-item {
  break-inside: avoid;
  margin: 0 0 12px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--wood);
}
.comment-columns .comment-item:nth-child(odd) {
  margin-left: 0;
  margin-right: 10px;
}
.comment-columns .comment-item:nth-child(even) {
  margin-left: 10px;
  margin-right: 0;
}
.comment-nickname {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--warm-soft);
  margin-bottom: 5px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.recommend-region {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.recommend-heading {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.26em;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 0;
  border: none;
}
.recommend-heading::before {
  content: "— ";
  color: var(--wood);
}
.recommend-heading::after {
  content: " —";
  color: var(--wood);
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  align-items: start;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--ink-dim);
  text-decoration: none;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 6px;
  transition: border-color .18s ease, color .18s ease;
}
a.recommend-item:hover {
  border-color: var(--warm-soft);
  color: var(--ink);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  filter: saturate(.8) brightness(.85);
  background: var(--bg-deep);
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #c7cbd1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.recommend-region--1 .recommend-list {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.recommend-region--2 .recommend-list {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.recommend-region--3 .recommend-list {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
.recommend-region--4 .recommend-list {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.site-footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #121519 0%, #0c0e11 100%);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  max-width: 780px;
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
}
.friends-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  flex: none;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: #6f7782;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color .16s ease;
}
a.runtime-friend-link:hover {
  color: var(--warm);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm);
  border-color: var(--warm-soft);
}
.movie-overview.is-lights-out {
  background: #0a0c0f;
}
.movie-overview.is-lights-out .poster-img, .movie-overview.is-lights-out .cast-photo {
  filter: brightness(.6) saturate(.6);
}
.movie-overview.is-theater .overview-hero {
  grid-template-columns: minmax(0, 1fr);
}
.movie-overview.is-theater .poster-frame {
  max-width: 260px;
}
.player-shell.fullscreen, .player-shell.is-fullscreen {
  border: none;
}
.player .progress, .player .volume, .player .timeupdate, .player .speed, .player .click, .player .input, .player .change {
  transition: opacity .2s ease;
}
@media (max-width: 900px) {.overview-hero {
    grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
    gap: 16px;
  }
.synopsis-body {
    columns: 2;
    column-gap: 22px;
  }}
@media (max-width: 760px) {.header-inner {
    gap: 16px;
    height: auto;
    padding: 10px 16px;
    flex-wrap: wrap;
  }
.category-bar {
    flex-basis: 100%;
    order: 3;
  }
.page-main {
    padding: 16px 16px 0;
  }
.movie-overview {
    padding: 14px;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
.poster-frame {
    max-width: 300px;
  }
.movie-overview.is-theater .poster-frame {
    max-width: 100%;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.comment-columns {
    columns: 1;
  }
.comment-columns .comment-item:nth-child(odd), .comment-columns .comment-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-card {
    flex: 0 1 130px;
    max-width: 150px;
  }}
@media (max-width: 480px) {body {
    font-size: 13.5px;
  }
.header-inner {
    padding: 9px 12px;
  }
.page-main {
    padding: 12px 12px 0;
  }
.movie-overview {
    padding: 12px;
  }
.player-bar {
    gap: 5px;
    padding: 7px 8px;
  }
.player-btn {
    font-size: 11.5px;
    padding: 4px 7px;
  }
.player-range {
    flex: 1 1 100%;
  }
.player-range--volume {
    flex: 1 1 40%;
  }
.timeline-node {
    width: 160px;
  }
.cast-card {
    flex: 0 1 110px;
    min-width: 84px;
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 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}
