:root {
  --wood-dark: #241a13;
  --wood-deep: #1a120c;
  --wood-mid: #3a2a1c;
  --wood-light: #4d3a26;
  --ink: #0e0b08;
  --ink-soft: #1c1510;
  --white: #e8e4dc;
  --white-dim: #b8b2a6;
  --white-faint: #8a8478;
  --gold: #b8934a;
  --gold-dim: #8a6d34;
  --gold-bright: #d4aa5c;
  --rule: #35281a;
  --serif: "Songti SC", "SimSun", "STSong", "Noto Serif SC", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Heiti SC", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: var(--wood-deep);
  background-image:
    repeating-linear-gradient(0deg, rgba(60, 42, 26, 0.35) 0px, rgba(60, 42, 26, 0.35) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(40, 28, 16, 0.25) 0px, rgba(40, 28, 16, 0.25) 1px, transparent 1px, transparent 3px),
    linear-gradient(180deg, #1e150e 0%, #1a120c 40%, #150f09 100%);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
h1, h2, h3 {
  font-weight: 400;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(14, 11, 8, 0.96) 0%, rgba(20, 15, 10, 0.92) 100%);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-decoration: none;
  white-space: nowrap;
  border-left: 2px solid var(--gold-dim);
  padding-left: 10px;
}
a[data-contract="site-name"]:hover {
  color: var(--white);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 2px;
  justify-content: flex-end;
}
a.runtime-category {
  font-size: 12px;
  color: var(--white-dim);
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 9px;
  border: 1px solid transparent;
  letter-spacing: 0.08em;
}
a.runtime-category:hover {
  color: var(--gold-bright);
  border-color: var(--rule);
  background: rgba(184, 147, 74, 0.06);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 40px;
  display: block;
}
.block-heading {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--gold);
  padding-left: 12px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.3;
}
.block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
}
.movie-overview {
  background: linear-gradient(160deg, #221812 0%, #1b120c 55%, #160f09 100%);
  border: 1px solid var(--rule);
  border-top: none;
  padding: 20px 18px 18px;
  margin-bottom: 26px;
  position: relative;
}
.movie-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(184, 147, 74, 0.06), transparent 42%),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.12) 0px, rgba(0, 0, 0, 0.12) 1px, transparent 1px, transparent 6px);
}
.overview-stage {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.poster-column {
  align-self: start;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.65);
  background: var(--ink);
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.05) brightness(0.94);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 11, 8, 0) 55%, rgba(14, 11, 8, 0.7) 100%);
  pointer-events: none;
}
.overview-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.title-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.movie-title {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(184, 147, 74, 0.18);
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.9;
}
.movie-seo {
  font-size: 11px;
  color: var(--white-faint);
  letter-spacing: 0.1em;
}
.movie-intro {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--white-dim);
  text-align: justify;
  letter-spacing: 0.01em;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.status-current {
  font-size: 12px;
  color: var(--gold-bright);
  background: rgba(184, 147, 74, 0.1);
  border: 1px solid var(--gold-dim);
  padding: 2px 9px;
  letter-spacing: 0.06em;
}
.status-total {
  font-size: 11px;
  color: var(--white-faint);
  letter-spacing: 0.06em;
}
.overview-detail-grid {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) 220px;
  gap: 22px;
  align-items: start;
}
.cast-block, .synopsis-block, .details-block {
  min-width: 0;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 10px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.cast-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(212, 170, 92, 0.28), transparent 60%),
    linear-gradient(150deg, #3a2a1c, #1a120c);
  border: 1px solid var(--gold-dim);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  flex: none;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(232, 228, 220, 0.16), rgba(0, 0, 0, 0.3));
}
.cast-name {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.cast-role {
  font-size: 10.5px;
  color: var(--white-faint);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.synopsis-para {
  font-size: 12px;
  line-height: 1.68;
  color: var(--white-dim);
  text-align: justify;
  border-left: 1px solid rgba(184, 147, 74, 0.18);
  padding-left: 9px;
}
.details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 2px;
  border-bottom: 1px dotted rgba(184, 147, 74, 0.16);
}
.detail-key {
  flex: none;
  width: 62px;
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
}
.detail-val {
  font-size: 11.5px;
  color: var(--white-dim);
  line-height: 1.45;
  min-width: 0;
}
.player-panel {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.player-frame {
  position: relative;
  width: 100%;
  background: #000;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.player-frame video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 10px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(28, 21, 16, 0.9), rgba(14, 11, 8, 0.9));
  border: 1px solid var(--rule);
}
.ctrl-btn {
  font-size: 11.5px;
  color: var(--white-dim);
  letter-spacing: 0.08em;
  padding: 4px 11px;
  border: 1px solid var(--rule);
  background: rgba(58, 42, 28, 0.35);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.ctrl-btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
}
.ctrl-btn.is-active, .ctrl-btn.click {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold-bright);
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 120px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--gold-dim), var(--wood-light));
  border-radius: 0;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 1px solid #000;
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 1px solid #000;
  cursor: pointer;
}
.ctrl-volume {
  flex: 0 0 76px;
  width: 76px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--rule);
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white-dim);
  cursor: pointer;
}
.ctrl-volume::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white-dim);
  border: none;
  cursor: pointer;
}
.ctrl-speed {
  font-size: 11.5px;
  color: var(--white-dim);
  background: rgba(58, 42, 28, 0.35);
  border: 1px solid var(--rule);
  padding: 4px 6px;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.lights-off {
  background-image: none;
  background-color: #0a0705;
}
.lights-off .page-main {
  filter: brightness(0.55);
}
.lights-off .player-panel {
  filter: brightness(1);
}
.theater-mode .player-frame {
  border-color: var(--gold-dim);
  box-shadow: 0 0 40px rgba(184, 147, 74, 0.18);
}
.timeline-section {
  margin-bottom: 26px;
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 4px 0 6px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule) 6%, var(--rule) 94%, transparent);
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 0 4px;
}
.node-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a2018, #0c0906 70%);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 0 3px var(--wood-deep), 0 0 10px rgba(184, 147, 74, 0.25);
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
  flex: none;
}
.timeline-node:nth-child(even) .node-dot {
  background: radial-gradient(circle at 35% 30%, #f0ece4, #c8c2b6 60%, #9a948a);
  border-color: var(--white-dim);
}
.node-time {
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.node-label {
  font-family: var(--serif);
  font-size: 12.5px;
  color: var(--white-dim);
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.episodes-section {
  margin-bottom: 26px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.episode-card {
  background: linear-gradient(160deg, #221812, #180f09);
  padding: 9px 11px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  min-width: 0;
}
.episode-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.18s;
}
.episode-card:hover::before {
  opacity: 1;
}
.ep-number {
  font-size: 10px;
  color: var(--gold-dim);
  letter-spacing: 0.14em;
}
.ep-title {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.25;
}
.ep-summary {
  font-size: 11px;
  line-height: 1.55;
  color: var(--white-faint);
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-duration {
  font-size: 10px;
  color: var(--white-faint);
  letter-spacing: 0.08em;
  margin-top: 2px;
  align-self: flex-start;
  border-top: 1px solid rgba(184, 147, 74, 0.14);
  padding-top: 3px;
}
.comments-section {
  margin-bottom: 26px;
}
.comment-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.comment-list {
  background: linear-gradient(160deg, #201610, #170f09);
  padding: 6px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.comment-list-a {
  padding-top: 6px;
}
.comment-list-b {
  padding-top: 16px;
}
.comment-item {
  background: rgba(58, 42, 28, 0.22);
  border-left: 2px solid rgba(184, 147, 74, 0.28);
  padding: 6px 9px;
  min-width: 0;
}
.comment-list-b .comment-item {
  background: rgba(20, 14, 9, 0.5);
  border-left-color: rgba(232, 228, 220, 0.14);
}
.comment-nick {
  display: block;
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.comment-list-b .comment-nick {
  color: var(--white-dim);
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--white-dim);
  text-align: justify;
}
.recommend-region {
  margin-bottom: 22px;
}
.region-heading {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-left: 12px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.3;
}
.region-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(160deg, #221812, #180f09);
  border: 1px solid var(--rule);
  padding: 6px;
  transition: border-color 0.18s, background 0.18s;
  min-width: 0;
}
a.recommend-card {
  color: var(--white-dim);
  text-decoration: none;
}
a.recommend-card:hover {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, #2a1e14, #1c120a);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  background: var(--ink);
  filter: saturate(0.85) brightness(0.92);
}
.rec-name {
  font-family: var(--serif);
  font-size: 12.5px;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rec-blurb {
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--white-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, #150f09, #0d0905);
  margin-top: 10px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-disclaimer {
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--white-faint);
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 11.5px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 12px;
  padding-top: 6px;
  border-top: 1px solid rgba(184, 147, 74, 0.1);
}
.friend-label {
  font-size: 10.5px;
  color: var(--white-faint);
  letter-spacing: 0.14em;
  margin-right: 2px;
}
a.runtime-friend-link {
  font-size: 11px;
  color: var(--white-faint);
  text-decoration: none;
  letter-spacing: 0.04em;
}
a.runtime-friend-link:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}
@media (max-width: 980px) {.overview-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
.details-block {
    grid-column: 1 / -1;
  }
.details-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 14px;
  }
.timeline-track::before {
    display: none;
  }
.recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.header-inner {
    height: auto;
    min-height: 46px;
    padding: 8px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
.category-nav {
    justify-content: flex-start;
  }
.page-main {
    padding: 0 14px 32px;
  }
.movie-overview {
    padding: 16px 14px 14px;
  }
.overview-stage {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
  }
.movie-title {
    font-size: 21px;
  }
.overview-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
.cast-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-list-b {
    padding-top: 6px;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.ctrl-progress {
    flex: 1 1 100%;
    order: 10;
  }}
@media (max-width: 460px) {.overview-stage {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    max-width: 180px;
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.movie-title {
    font-size: 19px;
  }
.player-controls {
    gap: 6px 8px;
  }
.ctrl-btn {
    padding: 4px 8px;
    font-size: 11px;
  }}

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}
