:root {
  --ink: #0a0d11;
  --ink-2: #0f141a;
  --surface: #141a21;
  --surface-2: #1a222b;
  --line: #253039;
  --dragon: #4a6d7c;
  --dragon-soft: #7fa6b5;
  --phoenix: #c8763a;
  --phoenix-soft: #e6a55f;
  --gold: #d9b06a;
  --text: #d5dde2;
  --text-dim: #8b9aa5;
  --text-faint: #5e6b74;
  --serif: "Songti SC", "SimSun", "Noto Serif SC", "Source Han Serif SC", Georgia, serif;
  --sans: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .01em;
  background-image:
    radial-gradient(ellipse 60% 40% at 12% 0%, rgba(74, 109, 124, .18), transparent 70%),
    radial-gradient(ellipse 55% 45% at 88% 4%, rgba(200, 118, 58, .16), transparent 70%);
  background-repeat: no-repeat;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
input {
  font-family: inherit;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.25;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 13, 17, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(100deg, var(--dragon-soft), var(--gold) 45%, var(--phoenix-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s, border-color .18s, background .18s;
}
a.runtime-category:hover {
  color: var(--gold);
  border-color: rgba(217, 176, 106, .55);
  background: rgba(217, 176, 106, .08);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section-title {
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--text);
  padding-left: 12px;
  position: relative;
  margin-bottom: 12px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 15px;
  background: linear-gradient(180deg, var(--dragon-soft), var(--phoenix));
}
.overview-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  background:
    linear-gradient(120deg, rgba(74, 109, 124, .16), transparent 42%),
    linear-gradient(240deg, rgba(200, 118, 58, .14), transparent 46%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(115deg, rgba(217, 176, 106, .05) 0 1px, transparent 1px 11px);
  mix-blend-mode: screen;
}
.hero-media-wrap {
  position: relative;
  align-self: start;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(217, 176, 106, .22), 0 14px 30px -18px #000;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.hero-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
  min-width: 0;
}
.movie-title {
  font-size: 30px;
  letter-spacing: .06em;
  color: #eef3f5;
  text-shadow: 0 0 22px rgba(74, 109, 124, .5);
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .14em;
  color: var(--phoenix-soft);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.movie-seo-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 66ch;
}
.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 288px);
  gap: 18px;
  align-items: start;
}
.overview-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.overview-col-main, .overview-col-side {
  align-self: start;
}
.synopsis-panel, .cast-panel, .episode-status-panel, .details-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px 16px;
}
.synopsis-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.synopsis-p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-dim);
  text-align: justify;
}
.synopsis-p::first-letter {
  color: var(--dragon-soft);
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cast-card {
  flex: 1 1 118px;
  min-width: 108px;
  max-width: 168px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.cast-card:hover {
  border-color: rgba(217, 176, 106, .5);
  transform: translateY(-2px);
}
.cast-card + .cast-card {
  border-left: 1px solid var(--line);
}
.cast-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(135deg, rgba(74, 109, 124, .22) 0 6px, rgba(200, 118, 58, .16) 6px 12px),
    linear-gradient(160deg, #1c2731, #12181e);
  display: flex;
  align-items: flex-end;
  padding: 8px;
}
.cast-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 28%, rgba(230, 165, 95, .28), transparent 55%);
}
.cast-portrait-label {
  position: relative;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .1em;
  color: #f0e6d6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .8);
}
.cast-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 7px 9px 9px;
  border-top: 1px solid var(--line);
}
.cast-name {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--text);
  letter-spacing: .04em;
}
.cast-role {
  font-size: 11.5px;
  color: var(--text-faint);
}
.status-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding-bottom: 8px;
}
.status-value {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--phoenix-soft);
  text-shadow: 0 0 18px rgba(200, 118, 58, .45);
}
.status-unit {
  font-size: 13px;
  color: var(--text-dim);
}
.status-slash {
  color: var(--text-faint);
  margin: 0 2px;
}
.status-total {
  font-size: 13px;
  color: var(--text-faint);
}
.status-track {
  position: relative;
  height: 5px;
  border-radius: 3px;
  background: #202a33;
  overflow: hidden;
}
.status-track-fill {
  display: block;
  height: 100%;
  width: 33.3%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--dragon), var(--phoenix));
}
.status-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 7px;
}
.status-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.btn-primary, .btn-ghost {
  flex: 1 1 auto;
  padding: 7px 12px;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: .06em;
  transition: background .18s, color .18s, border-color .18s;
}
.btn-primary {
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--dragon), var(--phoenix));
  color: #0b0f13;
  font-weight: 700;
}
.btn-primary:hover {
  filter: brightness(1.12);
}
.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-dim);
}
.btn-ghost:hover {
  border-color: rgba(217, 176, 106, .55);
  color: var(--gold);
}
.details-list {
  display: flex;
  flex-direction: column;
}
.details-item {
  display: flex;
  gap: 10px;
  padding: 5px 0;
  font-size: 12.5px;
  border-bottom: 1px dashed rgba(37, 48, 57, .8);
}
.details-item:last-child {
  border-bottom: 0;
}
.details-item dt {
  flex: 0 0 66px;
  color: var(--text-faint);
}
.details-item dd {
  flex: 1 1 auto;
  color: var(--text-dim);
  min-width: 0;
}
.detail-score {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
}
.player-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #05070a;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.player-wrap video {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #05070a;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  padding: 8px 10px;
  background: rgba(15, 20, 26, .96);
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  white-space: nowrap;
  transition: color .16s, border-color .16s;
}
.ctrl-btn:hover {
  color: var(--gold);
  border-color: rgba(217, 176, 106, .5);
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 130px;
  min-width: 90px;
  height: 4px;
  border-radius: 3px;
  background: #26323c;
  cursor: pointer;
}
.ctrl-range-volume {
  flex: 0 1 92px;
  min-width: 64px;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
}
.ctrl-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
}
.player-wrap.is-theater {
  max-width: 100%;
  box-shadow: 0 0 0 1px rgba(217, 176, 106, .35), 0 0 60px -12px rgba(74, 109, 124, .7);
}
.player-wrap.is-lights-off {
  background: #000;
}
.player-wrap.is-lights-off video {
  opacity: .55;
}
.player-wrap.is-lights-off .player-controls {
  opacity: .45;
}
video.is-playing {
  background: #000;
}
video.is-muted {
  filter: saturate(.9);
}
.timeline-section {
  display: flex;
  flex-direction: column;
}
.timeline-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--dragon) transparent;
}
.timeline-strip::-webkit-scrollbar {
  height: 5px;
}
.timeline-strip::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--dragon), var(--phoenix));
  border-radius: 3px;
}
.timeline-node {
  position: relative;
  flex: 0 0 210px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 13px 13px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  border-top-width: 2px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 3px;
  height: 22px;
  border-radius: 0 2px 2px 0;
}
.timeline-node-dragon {
  border-top-color: var(--dragon);
}
.timeline-node-dragon::before {
  background: var(--dragon-soft);
}
.timeline-node-phoenix {
  border-top-color: var(--phoenix);
}
.timeline-node-phoenix::before {
  background: var(--phoenix-soft);
}
.timeline-timecode {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--gold);
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text-dim);
}
.episodes-section {
  display: flex;
  flex-direction: column;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-cell {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  grid-template-areas:
    "num title dur"
    "num sum sum";
  column-gap: 8px;
  row-gap: 2px;
  padding: 9px 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .18s, background .18s;
}
.episode-cell:hover {
  border-color: rgba(217, 176, 106, .45);
  background: var(--surface-2);
}
.episode-number {
  grid-area: num;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.1;
  color: var(--dragon-soft);
  align-self: start;
  padding-top: 1px;
}
.episode-cell:nth-child(even) .episode-number {
  color: var(--phoenix-soft);
}
.episode-title {
  grid-area: title;
  font-size: 13.5px;
  letter-spacing: .03em;
  color: var(--text);
  align-self: center;
}
.episode-duration {
  grid-area: dur;
  font-size: 11.5px;
  color: var(--text-faint);
  white-space: nowrap;
  align-self: center;
}
.episode-summary {
  grid-area: sum;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-faint);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .28s ease, opacity .22s ease, margin-top .22s ease;
}
.episode-cell:hover .episode-summary, .episode-cell:focus-within .episode-summary {
  max-height: 140px;
  opacity: 1;
  margin-top: 5px;
}
.comments-section {
  display: flex;
  flex-direction: column;
}
.comments-waterfall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  align-items: start;
}
.comments-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comments-col-right {
  margin-top: 18px;
}
.comment-card {
  display: flex;
  gap: 10px;
  padding: 11px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  border-left: 2px solid var(--dragon);
  transition: border-color .18s;
}
.comments-col-right .comment-card {
  border-left-color: var(--phoenix);
}
.comment-card:hover {
  border-color: rgba(217, 176, 106, .4);
}
.comment-avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(140deg, var(--dragon), #1a222b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(217, 176, 106, .3);
}
.comments-col-right .comment-avatar {
  background: linear-gradient(140deg, var(--phoenix), #1a222b);
}
.comment-avatar-fallback {
  font-family: var(--serif);
  font-size: 14px;
  color: #f2ece0;
}
.comment-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.comment-nickname {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--gold);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.78;
  color: var(--text-dim);
}
.rec-section {
  display: flex;
  flex-direction: column;
}
.rec-title {
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--gold);
  padding: 0 0 9px 12px;
  position: relative;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.rec-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, var(--gold), var(--phoenix));
}
.rec-title::after {
  content: "❖";
  position: absolute;
  right: 2px;
  top: 0;
  font-size: 12px;
  color: rgba(217, 176, 106, .28);
}
.rec-grid {
  display: grid;
  gap: 10px;
  align-items: start;
}
.rec-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.rec-grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}
.rec-grid-5 {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
a.rec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  transition: border-color .18s, background .18s, transform .18s;
}
a.rec-item:hover {
  border-color: rgba(217, 176, 106, .5);
  background: var(--surface-2);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
  background: #0d1319;
}
.rec-name {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .03em;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--text-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  margin-top: 6px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .16s, border-color .16s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold);
  border-bottom-color: rgba(217, 176, 106, .5);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(37, 48, 57, .9);
}
.friend-links-label {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text-faint);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 12px;
  color: var(--dragon-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s;
}
a.runtime-friend-link:hover {
  color: var(--phoenix-soft);
  text-decoration: underline;
}
.disclaimer {
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--text-faint);
  max-width: 78ch;
}
@media (max-width: 1024px) {.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-col-side {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    align-items: start;
  }
.hero-panel {
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
    gap: 16px;
  }
.movie-title {
    font-size: 25px;
  }}
@media (max-width: 720px) {.page-main {
    padding: 14px 14px 24px;
    gap: 20px;
  }
.header-inner {
    padding: 9px 14px;
    gap: 12px;
  }
a[data-contract="site-name"] {
    font-size: 18px;
  }
.hero-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }
.hero-media-wrap {
    max-width: 200px;
  }
.movie-title {
    font-size: 22px;
  }
.movie-tagline {
    font-size: 14px;
    letter-spacing: .08em;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-col-right {
    margin-top: 0;
  }
.footer-inner {
    padding: 16px 14px 22px;
  }}
@media (max-width: 460px) {.cast-strip {
    gap: 8px;
  }
.cast-card {
    flex: 1 1 46%;
    max-width: none;
  }
.status-actions {
    flex-direction: column;
  }
.ctrl-range-volume {
    flex: 1 1 100%;
  }
.rec-grid-3, .rec-grid-4, .rec-grid-5 {
    grid-template-columns: repeat(auto-fill, minmax(136px, 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}
