:root {
  --ink: #e8e3d8;
  --ink-dim: #a8a296;
  --ink-faint: #767066;
  --bg: #17191c;
  --bg-soft: #1e2126;
  --panel: #23262b;
  --line: #34383e;
  --line-soft: #2a2d33;
  --amber: #d9a441;
  --amber-soft: #b98c3a;
  --cyan: #4f8f96;
  --cyan-dim: #3a6a70;
  --cyan-faint: #2c4a4f;
  --serif: "Songti SC", "SimSun", "STSong", "Noto Serif CJK SC", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding: 9px 18px;
  background: #101215;
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 40;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: #f0c464;
  text-decoration: none;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
a.runtime-category {
  font-size: 12.5px;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-category:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan-dim);
  text-decoration: none;
}
.page-main {
  display: block;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px 30px;
}
.block-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.block-title::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--amber-soft), transparent 70%);
  opacity: 0.5;
}
.hero {
  position: relative;
  margin: 18px -18px 22px;
  padding: 26px 18px 20px;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(217, 164, 65, 0.16), transparent 58%),
    radial-gradient(110% 120% at 12% 100%, rgba(58, 106, 112, 0.32), transparent 62%),
    linear-gradient(160deg, #0d1013 0%, #191d21 52%, #12161a 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: 4%;
  width: 62%;
  height: 130%;
  background: linear-gradient(102deg, rgba(232, 216, 178, 0.14), rgba(232, 216, 178, 0.03) 42%, transparent 72%);
  clip-path: polygon(46% 0, 100% 0, 74% 100%, 20% 100%);
  filter: blur(2px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(240, 226, 190, 0.5) 0.6px, transparent 0.8px),
    radial-gradient(rgba(240, 226, 190, 0.32) 0.5px, transparent 0.7px);
  background-size: 46px 46px, 27px 27px;
  background-position: 0 0, 14px 20px;
  opacity: 0.28;
  pointer-events: none;
  mask-image: linear-gradient(100deg, rgba(0,0,0,0.9) 8%, rgba(0,0,0,0.35) 46%, transparent 78%);
  -webkit-mask-image: linear-gradient(100deg, rgba(0,0,0,0.9) 8%, rgba(0,0,0,0.35) 46%, transparent 78%);
}
.hero-light {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.36em;
  color: var(--amber);
  text-indent: 0.36em;
  text-shadow: 0 0 18px rgba(217, 164, 65, 0.35);
}
.hero-player {
  position: relative;
  width: 100%;
  background: #0a0c0e;
  border: 1px solid var(--line);
  box-shadow: 0 22px 44px -26px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(217, 164, 65, 0.06) inset;
}
.hero-player video {
  display: block;
  width: 100%;
  background: #000;
}
.hero.is-theater .hero-light {
  max-width: 100%;
}
.hero.is-lights-off {
  background: #05070a;
}
.hero.is-lights-off::before, .hero.is-lights-off::after {
  opacity: 0.08;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #1b1e22, #131619);
  border-top: 1px solid var(--line-soft);
}
.ctrl {
  background: #23272c;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 11.5px;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
}
.ctrl:hover {
  color: var(--ink);
  border-color: var(--cyan-dim);
}
.ctrl.is-active, .ctrl.is-playing, .ctrl.is-muted, .ctrl.is-paused {
  color: var(--amber);
  border-color: var(--amber-soft);
  background: #2a2620;
}
.ctrl-play {
  font-weight: 700;
  color: var(--ink);
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 120px;
  height: 18px;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
}
.ctrl-volume {
  flex: 0 1 92px;
  min-width: 66px;
  height: 18px;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
}
.ctrl-progress::-webkit-slider-runnable-track, .ctrl-volume::-webkit-slider-runnable-track {
  height: 3px;
  background: #3a3f45;
  border-radius: 2px;
}
.ctrl-progress::-webkit-slider-thumb, .ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--amber);
  border: none;
}
.ctrl-progress::-moz-range-track, .ctrl-volume::-moz-range-track {
  height: 3px;
  background: #3a3f45;
  border-radius: 2px;
}
.ctrl-progress::-moz-range-thumb, .ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--amber);
}
.hero-player.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}
.hero-player.is-fullscreen video {
  flex: 1 1 auto;
  min-height: 0;
  object-fit: contain;
}
.overview {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.overview-poster-col {
  align-self: start;
}
.poster-wrap {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  background: #0e1013;
  overflow: hidden;
}
.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(79, 143, 150, 0.12), rgba(217, 164, 65, 0.1));
  mix-blend-mode: screen;
  pointer-events: none;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}
.overview-info-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.movie-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: #f2ece0;
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.24em;
  color: var(--amber);
  margin-top: -6px;
}
.movie-seo {
  font-size: 13px;
  line-height: 1.62;
  color: var(--ink-dim);
  max-width: 74ch;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
}
.status-current, .status-total, .status-score {
  font-size: 11.5px;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 2px;
  border: 1px solid var(--line);
  background: #1a1d21;
  color: var(--ink-dim);
  white-space: nowrap;
}
.status-current {
  color: var(--amber);
  border-color: var(--amber-soft);
  background: #262119;
}
.status-score {
  color: var(--cyan);
  border-color: var(--cyan-faint);
  background: #182528;
}
.detail-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 9px 0;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 5px 22px;
}
.detail-list dt, .detail-list dd {
  display: inline;
}
.detail-key {
  font-family: var(--serif);
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  margin-right: 6px;
}
.detail-key::after {
  content: "／";
  color: var(--line);
}
.detail-val {
  font-size: 12.5px;
  color: var(--ink);
  margin-right: 4px;
}
.synopsis {
  margin-top: 2px;
}
.synopsis-para {
  font-size: 12.8px;
  line-height: 1.72;
  color: var(--ink-dim);
  text-indent: 2em;
  margin-bottom: 6px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.cast {
  margin-top: 4px;
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cast-card {
  flex: 0 0 auto;
  min-width: 88px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan-dim);
  background: #1c1f24;
  border-radius: 2px;
}
.cast-card:nth-child(odd) {
  border-left-color: var(--amber-soft);
}
.cast-name {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.cast-role {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.timeline-section {
  margin-top: 22px;
}
.timeline-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 0 10px;
  background:
    linear-gradient(180deg, transparent 0 9px, var(--line-soft) 9px 10px, transparent 10px) repeat-x 0 0 / 100% 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-dim) transparent;
  -webkit-overflow-scrolling: touch;
}
.timeline-strip::-webkit-scrollbar {
  height: 6px;
}
.timeline-strip::-webkit-scrollbar-track {
  background: #1a1d21;
}
.timeline-strip::-webkit-scrollbar-thumb {
  background: var(--cyan-dim);
  border-radius: 3px;
}
.timeline-node {
  position: relative;
  flex: 0 0 208px;
  padding: 22px 14px 12px;
  border-right: 1px solid var(--line-soft);
  background: #1a1d21;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 2px;
  background: #101215;
  border: 1px solid var(--cyan-faint);
  box-shadow: 0 0 0 3px #1a1d21;
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-soft);
  z-index: -1;
}
.node-time {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin-bottom: 5px;
}
.node-label {
  display: block;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-faint);
}
.timeline-node.is-past::before {
  border-color: var(--cyan-dim);
  background: #17262a;
}
.timeline-node.is-past .node-time {
  color: var(--cyan);
}
.timeline-node.is-future::before {
  border-color: #3a3f45;
  background: #15181c;
}
.timeline-node.is-future .node-time, .timeline-node.is-future .node-label {
  color: #6a7078;
}
.timeline-node.is-active {
  background: #262119;
}
.timeline-node.is-active::before {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: 0 0 0 3px #262119, 0 0 14px rgba(217, 164, 65, 0.6);
}
.timeline-node.is-active .node-time {
  color: var(--amber);
}
.timeline-node.is-active .node-label {
  color: #ddd3bf;
}
.episodes-section {
  margin-top: 22px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 0;
}
.episode-item {
  padding: 10px 0 11px;
  border-bottom: 1px solid var(--line-soft);
}
.episode-head {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.episode-number {
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}
.episode-title {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: 0.04em;
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 11px;
  color: var(--ink-faint);
  flex: 0 0 auto;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.62;
  color: var(--ink-dim);
  text-indent: 2em;
  margin-top: 5px;
}
.comments-section {
  margin-top: 22px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  align-items: start;
}
.comment-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 12px;
  background: #1c1f24;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  max-width: 92%;
}
.comment-left {
  justify-self: start;
  border-left: 2px solid var(--cyan-dim);
  margin-top: 0;
}
.comment-right {
  justify-self: end;
  border-right: 2px solid var(--amber-soft);
  text-align: right;
  margin-top: 14px;
}
.comment-nick {
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--amber);
}
.comment-right .comment-nick {
  color: var(--cyan);
}
.comment-text {
  font-size: 12px;
  line-height: 1.66;
  color: var(--ink-dim);
}
.comment-right .comment-text {
  color: #b3ada1;
}
.recommend-region {
  margin-top: 22px;
}
.recommend-grid {
  display: grid;
  gap: 14px 16px;
  align-items: start;
}
.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 0 9px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s ease;
}
a.recommend-item:hover {
  border-bottom-color: var(--amber-soft);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line-soft);
  background: #0e1013;
  filter: saturate(0.82) contrast(1.05);
  transition: filter 0.2s ease;
}
a.recommend-item:hover img {
  filter: saturate(1) contrast(1.08);
}
a.recommend-item [data-runtime="name"] {
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
a.recommend-item [data-runtime="blurb"] {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-faint);
}
.site-footer {
  margin-top: 18px;
  padding: 16px 18px 22px;
  background: #101215;
  border-top: 1px solid var(--line-soft);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  margin-bottom: 10px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--amber);
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  align-items: baseline;
  padding: 9px 0;
  margin-bottom: 10px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.friend-links-label {
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--cyan);
  text-decoration: none;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: #5f5a52;
  max-width: 96ch;
}
.is-fullscreen .player-controls {
  background: #0d0f12;
}
.click, .input, .timeupdate, .progress, .volume, .speed, .pip, .play, .pause, .mute, .theater, .light, .fullscreen, .x, .player {
  
}
@media (max-width: 1024px) {.overview {
    grid-template-columns: 196px minmax(0, 1fr);
    gap: 16px;
  }
.movie-title {
    font-size: 21px;
  }}
@media (max-width: 860px) {.grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    gap: 10px 16px;
  }
.comment-item {
    max-width: 100%;
  }}
@media (max-width: 720px) {.hero {
    margin: 12px -14px 18px;
    padding: 20px 14px 16px;
  }
.page-main {
    padding: 0 14px 24px;
  }
.overview {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-poster-col {
    max-width: 200px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-right {
    margin-top: 0;
  }
.movie-title {
    font-size: 19px;
  }
.site-header {
    padding: 8px 14px;
  }
.category-bar {
    justify-content: flex-start;
  }}
@media (max-width: 520px) {.grid-three {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-node {
    flex-basis: 176px;
    padding: 20px 11px 10px;
  }
.cast-card {
    flex: 1 1 46%;
    min-width: 0;
  }
.movie-title {
    font-size: 17px;
  }
.hero-tagline {
    font-size: 11.5px;
    letter-spacing: 0.24em;
  }
.player-controls {
    gap: 5px 6px;
    padding: 7px 8px;
  }
.ctrl {
    font-size: 11px;
    padding: 5px 7px;
  }
.ctrl-progress {
    flex-basis: 100%;
  }}

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}
