*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
:root {
  --ink: #0d0b09;
  --iron: #1b1917;
  --iron-2: #232120;
  --iron-3: #2c2a27;
  --iron-line: #3a3733;
  --paper: #d9c9a3;
  --paper-dim: #a89a7c;
  --paper-deep: #8a7c5e;
  --blood: #5c1a15;
  --blood-bright: #8f2a20;
  --ash: #b8b2a6;
  --serif: "Songti SC", "SimSun", "STSong", "Noto Serif CJK SC", serif;
  --sans: "PingFang SC", "Heiti SC", "SimHei", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --gap: 10px;
  --pad: 14px;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--ash);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
h1, h2, h3, .block-heading, .movie-title {
  font-family: var(--serif);
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(13, 11, 9, 0.97), rgba(13, 11, 9, 0.88));
  border-bottom: 1px solid var(--iron-line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px var(--pad);
}
.site-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--paper);
  letter-spacing: 0.14em;
  white-space: nowrap;
  padding-left: 10px;
  border-left: 3px solid var(--blood-bright);
}
a[data-contract="site-name"] { color: var(--paper); text-decoration: none; }
a[data-contract="site-name"]:hover { color: #f0e2bd; text-decoration: underline; text-underline-offset: 4px; }
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12.5px;
  color: var(--paper-dim);
  padding: 3px 10px;
  border: 1px solid var(--iron-line);
  border-radius: 2px;
  background: var(--iron);
  transition: color .18s, border-color .18s, background .18s;
}
a.runtime-category { color: var(--paper-dim); text-decoration: none; }
a.runtime-category:hover {
  color: var(--paper);
  border-color: var(--blood-bright);
  background: #24110e;
  text-decoration: none;
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad) 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.block-heading {
  font-size: 15px;
  color: var(--paper);
  letter-spacing: 0.16em;
  padding-left: 9px;
  border-left: 3px solid var(--blood-bright);
  margin-bottom: 8px;
  line-height: 1.2;
}
.stage {
  padding-top: 18px;
  padding-bottom: 22px;
}
.stage-visual {
  position: relative;
  isolation: isolate;
}
.stage-backdrop {
  position: absolute;
  inset: -18px -8px -8px;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 9px,
      rgba(120, 112, 96, 0.10) 9px,
      rgba(120, 112, 96, 0.10) 15px,
      rgba(0, 0, 0, 0.28) 15px,
      rgba(0, 0, 0, 0.28) 26px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5) 0px,
      rgba(0, 0, 0, 0.5) 3px,
      rgba(150, 140, 120, 0.06) 3px,
      rgba(150, 140, 120, 0.06) 9px
    ),
    radial-gradient(120% 90% at 50% 12%, #2a2622 0%, #14120f 46%, #080706 100%);
  filter: blur(2.2px);
  opacity: 0.95;
}
.player-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  background: #000;
  border: 1px solid var(--iron-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.68);
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(35, 33, 32, 0.96), rgba(19, 17, 16, 0.96));
  border: 1px solid var(--iron-line);
}
.ctl {
  font-size: 12px;
  line-height: 1.2;
  color: var(--paper-dim);
  background: var(--iron-2);
  border: 1px solid var(--iron-line);
  border-radius: 2px;
  padding: 5px 9px;
  cursor: pointer;
  transition: color .16s, border-color .16s, background .16s;
}
.ctl:hover {
  color: var(--paper);
  border-color: var(--paper-deep);
}
.ctl-play {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--paper);
  background: var(--blood);
  border-color: var(--blood-bright);
  letter-spacing: 0.08em;
}
.ctl-play:hover {
  background: var(--blood-bright);
  color: #f4e8c8;
}
.ctl-progress {
  flex: 1 1 190px;
  min-width: 120px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  accent-color: var(--blood-bright);
  cursor: pointer;
}
.ctl-volume {
  flex: 0 1 110px;
  min-width: 84px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  accent-color: var(--paper-deep);
  cursor: pointer;
}
.ctl.is-on {
  color: #f4e8c8;
  border-color: var(--blood-bright);
  background: #35110d;
}
.stage.is-theater .stage-visual {
  margin: 0 -14px;
}
.stage.is-theater .player-shell {
  border-color: var(--blood-bright);
}
.stage.is-lights-off {
  background: #050403;
}
.stage.is-lights-off .stage-backdrop {
  opacity: 0.35;
}
.stage.is-lights-off .player-shell {
  box-shadow: 0 0 0 1px #000, 0 24px 60px rgba(0, 0, 0, 0.9);
}
.movie-unit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  grid-template-areas:
    "poster head"
    "poster cast"
    "poster synopsis"
    "poster status"
    "poster details";
  gap: 12px 20px;
  align-items: start;
  padding: 16px var(--pad) 18px;
  background:
    linear-gradient(180deg, rgba(44, 42, 39, 0.78), rgba(23, 21, 19, 0.92)),
    radial-gradient(90% 60% at 18% 0%, rgba(92, 26, 21, 0.20), transparent 70%);
  border: 1px solid var(--iron-line);
  border-top: 2px solid var(--blood);
}
.movie-poster {
  grid-area: poster;
  position: relative;
  width: 100%;
  align-self: start;
  background: var(--iron);
  border: 1px solid var(--iron-line);
  overflow: hidden;
}
.movie-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
}
.movie-head { grid-area: head; }
.movie-title {
  font-size: 25px;
  line-height: 1.25;
  color: var(--paper);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--blood-bright);
  letter-spacing: 0.2em;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--iron-line);
}
.movie-seo {
  font-size: 13px;
  color: var(--paper-dim);
  line-height: 1.72;
  text-align: justify;
}
.movie-cast { grid-area: cast; }
.cast-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px 10px;
  align-items: end;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
}
.cast-avatar {
  display: block;
  width: 100%;
  max-width: 74px;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  background:
    radial-gradient(70% 70% at 50% 34%, #6f6350 0%, #453d33 55%, #26221d 100%);
  border: 1px solid var(--iron-line);
  box-shadow: inset 0 0 0 1px rgba(217, 201, 163, 0.06);
}
.cast-name {
  font-size: 12.5px;
  color: var(--paper-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.movie-synopsis { grid-area: synopsis; }
.synopsis-para {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.78;
  text-align: justify;
  text-indent: 2em;
}
.synopsis-para + .synopsis-para { margin-top: 5px; }
.episode-status { grid-area: status; }
.status-line {
  display: inline-block;
  font-size: 13px;
  color: var(--paper);
  letter-spacing: 0.06em;
  padding: 5px 12px;
  background: #24110e;
  border: 1px solid var(--blood);
  border-left: 3px solid var(--blood-bright);
}
.status-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--paper);
  padding: 0 2px;
}
.movie-details { grid-area: details; }
.detail-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 1px;
  background: var(--iron-line);
  border: 1px solid var(--iron-line);
}
.detail-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 10px;
  background: var(--iron);
}
.detail-cell dt {
  font-size: 11px;
  color: var(--paper-deep);
  letter-spacing: 0.14em;
}
.detail-cell dd {
  font-size: 13px;
  color: var(--paper);
}
.timeline-section {
  padding: 4px 0 6px;
}
.timeline-track {
  position: relative;
  margin-left: 6px;
  padding-left: 16px;
  border-left: 2px solid var(--iron-line);
  display: grid;
  gap: 6px;
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 6px 10px 6px 8px;
  background: var(--iron);
  border: 1px solid transparent;
  border-left: 2px solid var(--iron-line);
  transition: border-color .18s, background .18s;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blood-bright);
  box-shadow: 0 0 0 3px var(--ink);
}
.timeline-node:hover {
  border-left-color: var(--blood-bright);
  background: var(--iron-2);
}
.node-label {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--paper);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.node-summary {
  font-size: 13px;
  color: var(--paper-dim);
  line-height: 1.6;
}
.episodes-section { padding: 4px 0 6px; }
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 12px 9px;
  background: var(--iron);
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--iron-line);
  transition: border-color .18s, background .18s;
}
.episode-card:hover {
  border-left-color: var(--paper-deep);
  background: var(--iron-2);
}
.episode-card.is-active {
  background: #2a100d;
  border-color: var(--blood);
  border-left-color: var(--blood-bright);
}
.episode-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
  color: var(--paper);
  letter-spacing: 0.06em;
}
.episode-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  color: var(--paper-dim);
  background: var(--iron-3);
  border: 1px solid var(--iron-line);
  padding: 0 6px;
  line-height: 18px;
  border-radius: 2px;
}
.episode-card.is-active .episode-num {
  color: #f4e8c8;
  background: var(--blood);
  border-color: var(--blood-bright);
}
.episode-summary {
  font-size: 12.5px;
  color: var(--paper-dim);
  line-height: 1.68;
  text-align: justify;
}
.episode-duration {
  align-self: flex-end;
  font-size: 11.5px;
  color: var(--paper-deep);
  letter-spacing: 0.1em;
  padding-top: 4px;
  border-top: 1px solid var(--iron-line);
  width: 100%;
  text-align: right;
}
.episode-card.is-active .episode-duration {
  color: #c9a98a;
  border-top-color: rgba(143, 42, 32, 0.5);
}
.comments-section { padding: 4px 0 6px; }
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  background: var(--iron-2);
  border: 1px solid var(--iron-line);
  border-bottom: 2px solid var(--iron-line);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.42);
}
.comment-stack .comment-card:nth-child(even) {
  margin-left: 26px;
  background: var(--iron-3);
}
.comment-stack .comment-card:nth-child(odd) {
  margin-right: 26px;
}
.comment-stack .comment-card:nth-child(3n) {
  border-bottom-color: var(--blood);
}
.comment-text {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.7;
  text-align: justify;
}
.comment-nickname {
  align-self: flex-end;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  color: var(--paper-dim);
  letter-spacing: 0.1em;
}
.comment-nickname::before {
  content: "——";
  color: var(--blood-bright);
  margin-right: 4px;
}
.rec-section { padding: 4px 0 6px; }
.rec-column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 8px;
  align-items: start;
}
.rec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  background: var(--iron);
  border: 1px solid var(--iron-line);
  transition: border-color .18s, background .18s;
}
a.rec-item { color: var(--paper-dim); text-decoration: none; }
a.rec-item:hover {
  color: var(--paper);
  border-color: var(--paper-deep);
  background: var(--iron-2);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--iron-3);
  border: 1px solid var(--iron-line);
  filter: saturate(0.8) contrast(1.05);
}
.rec-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--paper);
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.rec-blurb {
  font-size: 12px;
  color: var(--paper-deep);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.site-footer {
  margin-top: 26px;
  padding: 18px var(--pad) 30px;
  background: linear-gradient(180deg, rgba(19, 17, 16, 0.6), rgba(8, 7, 6, 1));
  border-top: 1px solid var(--iron-line);
}
.footer-disclaimer {
  max-width: 1280px;
  margin: 0 auto 12px;
  font-size: 12px;
  color: var(--paper-deep);
  line-height: 1.7;
  text-align: justify;
}
.footer-nav {
  max-width: 1280px;
  margin: 0 auto 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--iron-line);
}
.footer-nav a {
  font-size: 13px;
  color: var(--paper-dim);
  text-decoration: none;
  padding-left: 8px;
  border-left: 2px solid var(--blood);
}
a[data-contract="footer-home"] { color: var(--paper-dim); text-decoration: none; }
a[data-contract="footer-home"]:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
a[data-contract="footer-sitemap"] { color: var(--paper-dim); text-decoration: none; }
a[data-contract="footer-sitemap"]:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
.friend-links {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
}
.friend-links-label {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  color: var(--paper-deep);
  letter-spacing: 0.16em;
  white-space: nowrap;
  padding-right: 10px;
  border-right: 1px solid var(--iron-line);
}
a.runtime-friend-link {
  font-size: 12px;
  color: var(--paper-deep);
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s;
}
a.runtime-friend-link:hover {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.player video { background: #000; }
.click, .play, .player, .progress, .timeupdate, .volume, .mute, .speed, .pip, .fullscreen, .theater, .light, .input, .x {
  
}
.player.is-on, .player .is-on { }
@media (max-width: 900px) {.movie-unit {
    grid-template-columns: minmax(0, 168px) minmax(0, 1fr);
    gap: 10px 16px;
  }
.movie-title { font-size: 22px; }
.comment-stack .comment-card:nth-child(even) { margin-left: 16px; }
.comment-stack .comment-card:nth-child(odd) { margin-right: 16px; }
.rec-column { grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)); }}
@media (max-width: 720px) {.movie-unit {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "head"
      "cast"
      "synopsis"
      "status"
      "details";
    gap: 12px;
  }
.movie-poster { max-width: 210px; }
.episode-grid { grid-template-columns: minmax(0, 1fr); }
.comment-stack { grid-template-columns: minmax(0, 1fr); }
.comment-stack .comment-card:nth-child(even), .comment-stack .comment-card:nth-child(odd) { margin-left: 0; margin-right: 0; }
.comment-stack .comment-card:nth-child(even) { margin-left: 22px; margin-right: 0; }
.comment-stack .comment-card:nth-child(odd) { margin-right: 22px; margin-left: 0; }}
@media (max-width: 560px) {:root { --pad: 12px; }
.header-inner { padding: 7px var(--pad); }
.site-brand { font-size: 15px; letter-spacing: 0.1em; }
.runtime-category { font-size: 12px; padding: 2px 8px; }
.movie-title { font-size: 20px; }
.movie-tagline { font-size: 13px; letter-spacing: 0.14em; }
.timeline-node { grid-template-columns: minmax(0, 1fr); gap: 2px; }
.node-label { font-size: 12px; }
.rec-column { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.player-controls { gap: 5px; padding: 7px; }
.ctl { font-size: 11.5px; padding: 5px 7px; }
.comment-stack .comment-card:nth-child(even) { margin-left: 12px; }
.comment-stack .comment-card:nth-child(odd) { margin-right: 12px; }}
@media (max-width: 400px) {.rec-column { grid-template-columns: minmax(0, 1fr); }
.cast-row { grid-template-columns: repeat(auto-fill, minmax(84px, 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}
