:root {
  --ink: #0c0f12;
  --ink-2: #12161a;
  --copper: #6b4326;
  --copper-deep: #3d2718;
  --copper-line: #5a3a24;
  --steel: #2b3540;
  --steel-2: #1a222b;
  --slate: #38424d;
  --mist: #9aa4ad;
  --mist-dim: #6d777f;
  --paper: #cdd3d8;
  --blood: #c8481c;
  --blood-soft: #e05a26;
  --serif: "Songti SC", "SimSun", "Noto Serif CJK SC", "Source Han Serif SC", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --gap: 14px;
  --line: 1px solid rgba(107, 67, 38, 0.55);
  --line-soft: 1px solid rgba(154, 164, 173, 0.16);
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
html {
  background: var(--ink);
}
body {
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(107, 67, 38, 0.24) 0%, rgba(12, 15, 18, 0) 58%),
    linear-gradient(180deg, #0b0e11 0%, #10141a 42%, #0c0f12 100%);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, p {
  margin: 0;
}
a {
  color: var(--mist);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.section-heading {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--paper);
  text-transform: none;
  padding-bottom: 6px;
  border-bottom: var(--line);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 14, 17, 0.92);
  border-bottom: 1px solid rgba(107, 67, 38, 0.45);
  backdrop-filter: saturate(140%) blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
  border-left: 2px solid var(--blood);
  padding-left: 9px;
}
a[data-contract="site-name"]:hover {
  color: var(--blood-soft);
}
.categories-bar {
  flex: 1 1 240px;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}
a.runtime-category {
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mist-dim);
  text-decoration: none;
  padding: 3px 8px;
  border: 1px solid rgba(154, 164, 173, 0.18);
  background: rgba(43, 53, 64, 0.28);
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.05);
}
a.runtime-category:hover {
  color: var(--paper);
  border-color: rgba(200, 72, 28, 0.6);
  background: rgba(200, 72, 28, 0.12);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  grid-template-areas:
    "media rail"
    "media lead"
    "media synopsis"
    "status details"
    "cast cast";
  align-content: start;
  gap: 14px 18px;
  padding: 16px 16px 18px;
  background:
    linear-gradient(160deg, rgba(107, 67, 38, 0.22) 0%, rgba(26, 34, 43, 0.5) 46%, rgba(12, 15, 18, 0.72) 100%),
    linear-gradient(180deg, #15191e 0%, #0e1216 100%);
  border: var(--line);
  box-shadow:
    inset 0 1px 0 rgba(205, 211, 216, 0.06),
    inset 0 -40px 80px rgba(0, 0, 0, 0.45);
}
.hero-media {
  grid-area: media;
  align-self: start;
  width: 100%;
  border: var(--line);
  background: #0a0c0f;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.7);
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(88%) contrast(106%) brightness(94%);
}
.hero-title-rail {
  grid-area: rail;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(200, 72, 28, 0.5);
}
.hero-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.14em;
  color: #e4e8eb;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
  max-height: 320px;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--blood-soft);
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding-top: 4px;
}
.hero-lead {
  grid-area: lead;
  align-self: start;
  font-size: 13px;
  line-height: 1.85;
  color: var(--mist);
  max-width: 62ch;
  padding-top: 2px;
}
.player-shell {
  grid-area: synopsis;
  align-self: start;
  position: relative;
  width: 100%;
  min-width: 0;
  border: var(--line);
  background: #05070a;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.75);
}
.player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  display: block;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  background: linear-gradient(180deg, #14181d 0%, #0b0e12 100%);
  border-top: var(--line-soft);
}
.ctrl {
  font-size: 11px;
  font-family: var(--sans);
  letter-spacing: 0.06em;
  color: var(--mist);
  background: rgba(43, 53, 64, 0.5);
  border: 1px solid rgba(154, 164, 173, 0.2);
  padding: 4px 9px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.05);
  transition: color 0.14s, border-color 0.14s, background 0.14s;
}
.ctrl:hover {
  color: var(--paper);
  border-color: rgba(200, 72, 28, 0.55);
}
.ctrl:focus-visible {
  outline: 1px solid var(--blood-soft);
  outline-offset: 1px;
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 120px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  accent-color: var(--blood);
}
.ctrl-volume {
  flex: 0 1 90px;
  min-width: 70px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  accent-color: var(--blood);
}
.ctrl-speed {
  padding: 4px 4px;
  background: rgba(43, 53, 64, 0.5);
  color: var(--mist);
}
.player-shell.is-theater {
  border-color: rgba(200, 72, 28, 0.7);
}
.player-shell.speed-changed .ctrl-speed {
  color: var(--blood-soft);
  border-color: rgba(200, 72, 28, 0.6);
}
.ctrl.is-active {
  color: #f2e9e2;
  border-color: rgba(200, 72, 28, 0.8);
  background: rgba(200, 72, 28, 0.22);
}
body.lights-off {
  background: #050607;
}
body.lights-off .page-main, body.lights-off .site-footer {
  opacity: 0.42;
  transition: opacity 0.2s;
}
body.lights-off .player-shell {
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(200, 72, 28, 0.5), 0 0 70px rgba(200, 72, 28, 0.18);
}
.episode-status {
  grid-area: status;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 11px;
  border: var(--line);
  background: rgba(26, 34, 43, 0.4);
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.04);
}
.status-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  border-bottom: var(--line-soft);
  padding-bottom: 4px;
}
.status-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.status-label {
  color: var(--mist-dim);
  letter-spacing: 0.12em;
  font-size: 11px;
  white-space: nowrap;
}
.status-value {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--paper);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.details-panel {
  grid-area: details;
  align-self: start;
  padding: 10px 11px 11px;
  border: var(--line);
  background: rgba(26, 34, 43, 0.4);
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.04);
}
.details-heading {
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.2em;
  border-bottom-color: rgba(107, 67, 38, 0.35);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  border-bottom: var(--line-soft);
  font-size: 12px;
}
.detail-key {
  color: var(--mist-dim);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.detail-val {
  color: var(--paper);
  text-align: right;
  margin: 0;
}
.detail-score {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--blood-soft);
  letter-spacing: 0.04em;
}
.cast-strip {
  grid-area: cast;
  align-self: start;
  padding-top: 12px;
  border-top: var(--line-soft);
}
.cast-heading {
  margin-bottom: 9px;
  border-bottom-color: rgba(107, 67, 38, 0.35);
}
.cast-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(107, 67, 38, 0.7) transparent;
  -webkit-overflow-scrolling: touch;
}
.cast-track::-webkit-scrollbar {
  height: 5px;
}
.cast-track::-webkit-scrollbar-thumb {
  background: rgba(107, 67, 38, 0.7);
}
.cast-card {
  flex: 0 0 auto;
  width: 132px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 9px;
  border: var(--line);
  background: linear-gradient(180deg, rgba(43, 53, 64, 0.42) 0%, rgba(15, 19, 24, 0.6) 100%);
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.05);
}
.cast-name {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--paper);
  white-space: nowrap;
}
.cast-role {
  font-size: 11px;
  color: var(--mist-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.synopsis-block {
  grid-area: synopsis;
  align-self: start;
}
.synopsis-heading {
  margin-bottom: 8px;
  border-bottom-color: rgba(107, 67, 38, 0.35);
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.85;
  color: var(--mist);
  max-width: 68ch;
  padding-bottom: 6px;
  border-bottom: var(--line-soft);
}
.synopsis-para:last-child {
  border-bottom: none;
}
.timeline-section {
  padding: 14px 16px 16px;
  border: var(--line);
  background: linear-gradient(180deg, rgba(26, 34, 43, 0.5) 0%, rgba(12, 15, 18, 0.6) 100%);
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.04);
}
.timeline-heading {
  margin-bottom: 14px;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  grid-template-areas:
    "dot time"
    "dot label";
  column-gap: 10px;
  align-items: start;
  padding: 2px 0 2px 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  bottom: -12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(200, 72, 28, 0.6) 0%, rgba(107, 67, 38, 0.18) 100%);
}
.timeline-node:last-child::before {
  display: none;
}
.node-dot {
  grid-area: dot;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 0 3px rgba(200, 72, 28, 0.16), 0 0 12px rgba(200, 72, 28, 0.5);
}
.node-timecode {
  grid-area: time;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--blood-soft);
  white-space: nowrap;
}
.node-label {
  grid-area: label;
  font-size: 12px;
  line-height: 1.7;
  color: var(--mist);
}
.episodes-section {
  padding: 14px 16px 16px;
  border: var(--line);
  background: linear-gradient(180deg, rgba(21, 25, 30, 0.85) 0%, rgba(12, 15, 18, 0.6) 100%);
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.04);
}
.episodes-heading {
  margin-bottom: 12px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}
.episode-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 11px 0;
  border-bottom: var(--line-soft);
}
.episode-number {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: rgba(107, 67, 38, 0.9);
  letter-spacing: -0.02em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.episode-body {
  min-width: 0;
  padding-left: 10px;
  border-left: 1px solid rgba(107, 67, 38, 0.35);
}
.episode-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--paper);
}
.episode-summary {
  font-size: 12px;
  line-height: 1.7;
  color: var(--mist-dim);
  max-height: 1.7em;
  overflow: hidden;
  transition: max-height 0.25s ease, color 0.2s;
}
.episode-item:hover .episode-summary, .episode-item:focus-within .episode-summary {
  max-height: 9em;
  color: var(--mist);
}
.episode-duration {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--mist-dim);
  border: 1px solid rgba(154, 164, 173, 0.2);
  padding: 1px 6px;
}
.comments-section {
  padding: 14px 16px 16px;
  border: var(--line);
  background: linear-gradient(180deg, rgba(26, 34, 43, 0.42) 0%, rgba(12, 15, 18, 0.6) 100%);
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.04);
}
.comments-heading {
  margin-bottom: 14px;
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  align-items: start;
}
.comments-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.comments-col-right {
  padding-top: 22px;
}
.comment-item {
  padding: 10px 0 9px;
  border-bottom: var(--line-soft);
}
.comment-item:first-child {
  border-top: var(--line-soft);
}
.comment-nickname {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #d9c4ac;
  margin-bottom: 4px;
}
.comment-nickname::before {
  content: "—";
  color: var(--blood);
  margin-right: 7px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.8;
  color: var(--mist);
}
.recommendations {
  padding: 12px 14px 13px;
  border: var(--line);
  background: linear-gradient(180deg, rgba(21, 25, 30, 0.9) 0%, rgba(11, 14, 17, 0.7) 100%);
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.04);
}
.recommend-heading {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--paper);
  margin-bottom: 11px;
  padding-bottom: 6px;
  border-bottom: var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.recommend-heading::after {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mist-dim);
  font-weight: 400;
}
.recommend-region-1 .recommend-heading::after {
  content: "04";
}
.recommend-region-2 .recommend-heading::after {
  content: "04";
}
.recommend-region-3 .recommend-heading::after {
  content: "03";
}
.recommend-stack {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(107, 67, 38, 0.7) transparent;
  -webkit-overflow-scrolling: touch;
}
.recommend-stack::-webkit-scrollbar {
  height: 5px;
}
.recommend-stack::-webkit-scrollbar-thumb {
  background: rgba(107, 67, 38, 0.7);
}
a.recommend-item {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  display: block;
  color: var(--mist);
  text-decoration: none;
  border: var(--line);
  background: #0d1014;
  box-shadow: inset 0 1px 0 rgba(205, 211, 216, 0.05);
  transition: border-color 0.16s, transform 0.16s;
}
a.recommend-item:hover {
  border-color: rgba(200, 72, 28, 0.65);
  transform: translateY(-2px);
}
a.recommend-item:hover .recommend-name {
  color: var(--blood-soft);
}
a.recommend-item img, .recommendations [data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  filter: saturate(80%) brightness(92%);
  display: block;
}
.recommend-name {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--paper);
  padding: 7px 8px 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.16s;
}
.recommend-blurb {
  display: block;
  font-size: 11px;
  line-height: 1.6;
  color: var(--mist-dim);
  padding: 0 8px 8px;
  max-height: 3.2em;
  overflow: hidden;
}
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 16px 30px;
  border-top: 1px solid rgba(107, 67, 38, 0.45);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--mist);
  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(--blood-soft);
  border-bottom-color: var(--blood);
}
.friend-links {
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-right: 4px;
}
a.runtime-friend-link {
  font-size: 11px;
  color: var(--mist-dim);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--blood-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-disclaimer {
  flex: 1 1 100%;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(109, 119, 127, 0.85);
  letter-spacing: 0.04em;
  padding-top: 8px;
  border-top: var(--line-soft);
}
@media (max-width: 1024px) {.hero-panel {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  }
.hero-title {
    font-size: 23px;
  }}
@media (max-width: 860px) {.hero-panel {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "rail"
      "lead"
      "synopsis"
      "status"
      "details"
      "cast";
    gap: 14px;
  }
.hero-media {
    max-width: 300px;
  }
.hero-title-rail {
    flex-direction: row;
    align-items: flex-end;
    gap: 14px;
    padding-left: 0;
    padding-top: 10px;
    border-left: none;
    border-top: 1px solid rgba(200, 72, 28, 0.5);
  }
.hero-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 22px;
    letter-spacing: 0.12em;
    max-height: none;
  }
.hero-tagline {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    letter-spacing: 0.24em;
    padding-top: 0;
    padding-bottom: 3px;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
.timeline-node::before {
    bottom: -12px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
.comments-col-right {
    padding-top: 0;
  }
.comments-col .comment-item:first-child {
    border-top: none;
  }
.comments-col-left .comment-item:first-child {
    border-top: var(--line-soft);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 560px) {.page-main {
    padding: 12px 10px 22px;
    gap: 12px;
  }
.header-inner {
    padding: 8px 10px;
    gap: 10px;
  }
.hero-panel, .timeline-section, .episodes-section, .comments-section, .recommendations {
    padding: 12px 11px 13px;
  }
.hero-media {
    max-width: 230px;
  }
.hero-title {
    font-size: 19px;
  }
.hero-lead, .synopsis-para {
    font-size: 12.5px;
    line-height: 1.8;
  }
.episode-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
    padding: 10px 0;
  }
.episode-number {
    font-size: 25px;
  }
.cast-card {
    width: 118px;
  }
a.recommend-item {
    width: 148px;
  }
.footer-nav, .friend-links {
    gap: 6px 12px;
  }
.site-footer {
    padding: 14px 11px 26px;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition: none !important;
    animation: 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}
