*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: #16181f;
  color: #cfc9bb;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-stretch: condensed;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
figure { margin: 0; }
:root {
  --ink: #14161d;
  --deep: #1b1e27;
  --deep-2: #22252f;
  --paper: #ece4d3;
  --paper-dim: #d9d0bd;
  --warm: #f0c469;
  --warm-deep: #c99b3f;
  --warm-glow: rgba(240, 196, 105, .18);
  --line: rgba(240, 196, 105, .16);
  --muted: #8b877c;
  --muted-2: #6d6a62;
}
.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 12px 40px;
  background: radial-gradient(120% 60% at 50% 0%, #1e2129 0%, #16181f 60%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 22, 29, .93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 2px;
}
a[data-contract="site-name"] {
  font-family: "STKaiti", "KaiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--warm);
  text-decoration: none;
  text-shadow: 0 0 14px var(--warm-glow);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover { color: #ffd98a; }
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  flex: 1 1 auto;
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: 12px;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  padding: 2px 8px;
  color: var(--paper-dim);
  text-decoration: none;
  background: #232732;
  border: 1px solid rgba(240, 196, 105, .1);
  border-radius: 2px;
  transition: background .15s, color .15s;
}
a.runtime-category:hover {
  background: #2c313d;
  color: var(--warm);
  border-color: var(--warm-deep);
}
.agreement-hero {
  position: relative;
  margin: 14px 0 18px;
  padding: 34px 16px 40px;
  background:
    radial-gradient(60% 70% at 50% 42%, rgba(240, 196, 105, .16), transparent 70%),
    linear-gradient(180deg, #14161d 0%, #101218 100%);
  border: 1px solid rgba(240, 196, 105, .1);
  overflow: hidden;
}
.hero-lamp-glow {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.hero-lamp-glow::before {
  content: "";
  position: absolute;
  inset: -46px -30px -34px -30px;
  background: radial-gradient(closest-side, rgba(240, 196, 105, .22), transparent 78%);
  filter: blur(2px);
  pointer-events: none;
}
.agreement-paper {
  position: relative;
  padding: 26px 24px 20px;
  color: #2a2820;
  background:
    repeating-linear-gradient(0deg, rgba(120, 100, 60, .06) 0 1px, transparent 1px 26px),
    linear-gradient(160deg, #f1e9d7 0%, #e6dcc5 55%, #ddd1b6 100%);
  border: 1px solid #cbbf9f;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .62), 0 0 0 1px rgba(255, 250, 235, .35) inset;
  transform: rotate(-.5deg);
}
.agreement-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, .5), transparent 40%);
  mix-blend-mode: screen;
  opacity: .5;
  pointer-events: none;
}
.agreement-heading {
  font-family: "STKaiti", "KaiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .34em;
  color: #21201a;
  text-align: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(60, 52, 34, .35);
}
.agreement-rule {
  font-family: "STKaiti", "KaiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14.5px;
  line-height: 1.95;
  color: #33302a;
  letter-spacing: .04em;
  text-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
.agreement-sign {
  margin-top: 16px;
  text-align: right;
  font-family: "STKaiti", "KaiTi", "PingFang SC", sans-serif;
  font-size: 16px;
  letter-spacing: .18em;
  color: #4a3f28;
  transform: rotate(-1.6deg);
  border-top: 1px dashed rgba(80, 66, 40, .3);
  padding-top: 8px;
}
.detail-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1a1d25;
  margin-bottom: 16px;
}
.detail-bar-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 0;
}
.detail-bar-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 9px;
  border-right: 1px solid rgba(240, 196, 105, .08);
  border-bottom: 1px solid rgba(240, 196, 105, .06);
  min-width: 0;
}
.detail-bar-item dt {
  color: var(--muted-2);
  font-size: 11px;
  white-space: nowrap;
}
.detail-bar-item dd {
  color: var(--paper-dim);
  font-size: 12.5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
  padding: 14px;
  background: linear-gradient(180deg, #1d2029, #191c24);
  border: 1px solid rgba(240, 196, 105, .1);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .4);
}
.overview-media-column { min-width: 0; }
.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(240, 196, 105, .16);
  background: #111319;
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86) contrast(1.05);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(240, 196, 105, .1), transparent 45%);
  pointer-events: none;
}
.overview-info-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.overview-heading-group {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.movie-title {
  font-family: "STKaiti", "KaiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #f3ecdc;
  line-height: 1.25;
  text-shadow: 0 0 18px rgba(240, 196, 105, .14);
}
.movie-tagline {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .03em;
}
.episode-status {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding: 6px 10px;
  background: rgba(240, 196, 105, .07);
  border-left: 3px solid var(--warm-deep);
}
.status-number {
  font-family: "STKaiti", "KaiTi", "PingFang SC", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--warm);
  letter-spacing: .02em;
}
.status-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--paper-dim);
  letter-spacing: .14em;
}
.status-current {
  font-size: 11.5px;
  color: var(--muted);
  margin-left: auto;
}
.block-heading {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--warm);
  padding-left: 8px;
  border-left: 3px solid var(--warm-deep);
  margin-bottom: 7px;
}
.cast-block { min-width: 0; }
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 7px;
  align-items: start;
}
.cast-card {
  display: grid;
  grid-template-rows: auto auto;
  background: #232732;
  border: 1px solid rgba(240, 196, 105, .1);
  justify-items: stretch;
  min-width: 0;
}
.cast-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #15171e;
}
.cast-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(.82) saturate(.85);
  transition: filter .2s;
}
.cast-card:hover .cast-photo img { filter: brightness(1) saturate(1); }
.cast-name {
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-self: end;
  align-self: end;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--paper-dim);
  padding: 5px 5px 6px;
  min-height: 100%;
}
.synopsis-block { min-width: 0; }
.synopsis-text {
  font-size: 12.5px;
  line-height: 1.68;
  color: #a8a496;
  text-align: justify;
  letter-spacing: .01em;
}
.synopsis-text + .synopsis-text { margin-top: 5px; }
.synopsis-text::first-letter { color: var(--warm); font-weight: 700; }
.details-block { min-width: 0; }
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(240, 196, 105, .1);
}
.details-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 8px 4px 0;
  border-bottom: 1px solid rgba(240, 196, 105, .07);
  min-width: 0;
}
.details-item dt {
  color: var(--muted-2);
  font-size: 11px;
  white-space: nowrap;
}
.details-item dd {
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-section {
  margin-bottom: 18px;
}
.player-frame {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  background: #0d0f14;
  border: 1px solid rgba(240, 196, 105, .14);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .55);
}
.player-frame video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  background: linear-gradient(180deg, #1c1f28, #15171e);
  border-top: 1px solid rgba(240, 196, 105, .1);
}
.player-controls button {
  cursor: pointer;
  font-size: 11.5px;
  padding: 3px 9px;
  color: var(--paper-dim);
  background: #262b36;
  border: 1px solid rgba(240, 196, 105, .14);
  border-radius: 2px;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.player-controls button:hover {
  background: #333a47;
  color: var(--warm);
  border-color: var(--warm-deep);
}
.player-controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #3a404d;
  border-radius: 2px;
  accent-color: var(--warm);
  cursor: pointer;
}
.player-controls input[data-player-action="progress"] { flex: 1 1 140px; min-width: 80px; }
.player-controls input[data-player-action="volume"] { flex: 0 1 84px; min-width: 60px; }
.player-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--warm);
  border: none;
}
.player-controls input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--warm);
}
.player-controls select {
  font-size: 11.5px;
  padding: 3px 5px;
  color: var(--paper-dim);
  background: #262b36;
  border: 1px solid rgba(240, 196, 105, .14);
  border-radius: 2px;
  cursor: pointer;
}
.player-frame .is-playing { color: var(--warm); border-color: var(--warm-deep); }
.player-frame .is-muted { color: #d98a6a; border-color: #a05a3c; }
.player-frame .is-active { color: var(--warm); background: #333a47; border-color: var(--warm-deep); }
.player-section.is-theater .player-frame {
  max-width: 100%;
  border-color: var(--warm-deep);
  box-shadow: 0 0 0 1px rgba(240, 196, 105, .3), 0 14px 44px rgba(0, 0, 0, .7);
}
body.is-lights-off { background: #08090c; }
body.is-lights-off .page-shell {
  background: radial-gradient(80% 60% at 50% 22%, #101218, #07080b 70%);
}
body.is-lights-off .agreement-paper { filter: brightness(.72); }
.section-heading {
  font-family: "STKaiti", "KaiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #efe7d6;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-heading::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--warm);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--warm-glow);
  flex: none;
}
.timeline-section { margin-bottom: 18px; }
.timeline-track {
  position: relative;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 4px 22px;
  scroll-snap-type: x proximity;
  border-bottom: 0;
}
.timeline-track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 14px;
  background:
    repeating-linear-gradient(90deg,
      rgba(240, 196, 105, .28) 0 6px,
      transparent 6px 13px);
  border-top: 2px solid rgba(240, 196, 105, .3);
  border-bottom: 2px solid rgba(240, 196, 105, .18);
  border-radius: 3px;
  pointer-events: none;
}
.timeline-node {
  position: relative;
  flex: 0 0 178px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 10px 12px;
  background: linear-gradient(180deg, #232732, #1b1e27);
  border: 1px solid rgba(240, 196, 105, .12);
  border-radius: 2px;
  min-width: 0;
}
.timeline-key {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--warm);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--warm-glow);
}
.timeline-key::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 12px;
  background: var(--warm);
  transform: translateX(-50%);
}
.timeline-key::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 9px);
  width: 6px;
  height: 2px;
  background: var(--warm);
  transform: translateX(-50%);
}
.timeline-timecode {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--warm);
  margin-left: 20px;
}
.timeline-label {
  font-size: 12px;
  line-height: 1.6;
  color: #b3aea0;
}
.episodes-section { margin-bottom: 18px; }
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  position: relative;
  padding: 9px 10px 9px 52px;
  background: linear-gradient(180deg, #212530, #1a1d26);
  border: 1px solid rgba(240, 196, 105, .1);
  border-left: 3px solid rgba(240, 196, 105, .28);
  min-width: 0;
  overflow: hidden;
  transition: border-color .15s, background .15s;
}
.episode-card:hover {
  background: linear-gradient(180deg, #262b38, #1e222c);
  border-left-color: var(--warm);
}
.episode-number {
  position: absolute;
  top: -6px;
  left: 6px;
  font-family: "STKaiti", "KaiTi", "PingFang SC", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: rgba(240, 196, 105, .18);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}
.episode-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #f0e8d8;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.55;
  color: #8c887c;
}
.episode-duration {
  display: inline-block;
  margin-top: 5px;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--warm-deep);
  border-top: 1px dashed rgba(240, 196, 105, .2);
  padding-top: 3px;
}
.comments-section { margin-bottom: 18px; }
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}
.comment-note {
  position: relative;
  padding: 10px 11px 11px;
  background: linear-gradient(165deg, #f3ecd9, #e3d9c0);
  color: #2c2a22;
  border: 1px solid #c9bd9e;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .48);
  transform: rotate(-1.2deg);
  min-width: 0;
}
.comment-note:nth-child(2n) { transform: rotate(1.1deg); }
.comment-note:nth-child(3n) { transform: rotate(-.6deg); }
.comment-note::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 34px;
  height: 11px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(240, 196, 105, .55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.comment-nickname {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #6a5a2e;
  margin-bottom: 4px;
  border-bottom: 1px dashed rgba(90, 78, 48, .35);
  padding-bottom: 3px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.62;
  color: #3a372d;
}
.recommend-region { margin-bottom: 16px; }
.sticky-note-heading {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2c2a22;
  padding: 5px 12px 6px;
  margin-bottom: 9px;
  background: linear-gradient(160deg, #f0c469, #e0ac4c);
  border: 1px solid #c99b3f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .45);
  transform: rotate(-1.4deg);
}
.recommend-region:nth-of-type(odd) .sticky-note-heading {
  background: linear-gradient(160deg, #b9d3a6, #9cb98a);
  border-color: #82a06f;
  transform: rotate(1.3deg);
}
.recommend-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  color: inherit;
  text-decoration: none;
  background: #21252f;
  border: 1px solid rgba(240, 196, 105, .12);
  min-width: 0;
  transition: background .15s, border-color .15s, transform .15s;
}
a.recommend-card:hover {
  background: #29303c;
  border-color: var(--warm-deep);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  filter: brightness(.84) saturate(.9);
  background: #14161c;
}
a.recommend-card:hover img { filter: brightness(1) saturate(1); }
[data-runtime="recommendation"] span[data-runtime="name"] {
  font-size: 12.5px;
  font-weight: 700;
  color: #eee6d5;
  letter-spacing: .04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
[data-runtime="recommendation"] span[data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.5;
  color: #8a867a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 22px;
  padding: 14px 12px 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #171a22, #12141a);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--paper-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm);
  border-bottom-color: var(--warm-deep);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  padding: 8px 0 10px;
  border-top: 1px dashed rgba(240, 196, 105, .14);
  border-bottom: 1px dashed rgba(240, 196, 105, .14);
  margin-bottom: 9px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted-2);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: #97938a;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
a.runtime-friend-link:hover {
  color: var(--warm);
  text-decoration: underline;
  text-decoration-color: var(--warm-deep);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: #5f5c55;
  letter-spacing: .01em;
}
@media (max-width: 860px) {.movie-overview {
    grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  }
.comment-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.recommend-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media (max-width: 640px) {.page-shell { padding: 0 9px 30px; }
.agreement-hero { padding: 22px 10px 26px; }
.agreement-heading { font-size: 22px; letter-spacing: .26em; }
.agreement-rule { font-size: 13px; }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
.overview-media-column { max-width: 200px; }
.status-current { margin-left: 0; }
.episode-grid { grid-template-columns: minmax(0, 1fr); }
.comment-stack { grid-template-columns: minmax(0, 1fr); }
.recommend-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-bar-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media (max-width: 420px) {.header-inner { gap: 8px; }
.category-strip { border-left: none; padding-left: 0; }
.recommend-row { grid-template-columns: minmax(0, 1fr); }
.cast-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.player-controls button { padding: 3px 7px; font-size: 11px; }}
@media (prefers-reduced-motion: reduce) {* { transition: 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}
