*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, ul, ol, li, dl, dd, dt { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
:root {
  --ink: #0e1620;
  --deep: #121c26;
  --deep-2: #18242f;
  --slate: #22303d;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.07);
  --warm: #e8863c;
  --warm-deep: #c96b26;
  --warm-soft: #f2a869;
  --paper: #eef1f4;
  --muted: #8fa0ae;
  --font-head: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", system-ui, sans-serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
}
html {
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
  background: var(--ink);
  letter-spacing: 0.01em;
}
body.is-lights-off {
  background: #05080b;
}
body.is-lights-off .site-header, body.is-lights-off .site-footer {
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 22, 32, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  max-width: 1320px;
  margin: 0 auto;
}
a[data-contract="site-name"].site-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
a[data-contract="site-name"].site-logo:hover {
  color: var(--warm-soft);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
a.header-nav-link {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
a.header-nav-link:hover, a.header-nav-link:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--warm);
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 10px;
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding-top: 8px;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--line);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--ink);
  background: var(--warm);
  border-color: var(--warm);
}
.page-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px 4px;
}
.hero-stage {
  position: relative;
  margin: 0 -20px 0;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: var(--deep);
}
.hero-poster-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(0.35) brightness(0.72) contrast(1.06);
}
.hero-figure-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-figure-focus {
  position: absolute;
  top: 8%;
  left: 4%;
  width: 46%;
  height: 78%;
  background: radial-gradient(ellipse at 42% 40%, rgba(238, 241, 244, 0.16) 0%, rgba(238, 241, 244, 0.05) 38%, transparent 68%);
  mix-blend-mode: screen;
}
.hero-figure-blur {
  position: absolute;
  top: 14%;
  right: 6%;
  width: 34%;
  height: 68%;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 134, 60, 0.22) 0%, rgba(232, 134, 60, 0.06) 45%, transparent 72%);
  filter: blur(18px);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(14, 22, 32, 0.72) 0%, rgba(14, 22, 32, 0.1) 32%, rgba(14, 22, 32, 0.5) 62%, rgba(10, 16, 24, 0.96) 100%);
}
.hero-title-block {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 460px;
  padding: 120px 28px 26px;
  max-width: 720px;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--warm-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 5.6vw, 56px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.hero-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(238, 241, 244, 0.82);
  max-width: 46ch;
  border-left: 2px solid var(--warm);
  padding-left: 10px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.hero-btn {
  display: inline-block;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1px solid var(--warm);
  background: var(--warm);
  color: #14100c;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-btn:hover {
  background: var(--warm-soft);
  border-color: var(--warm-soft);
}
.hero-btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(238, 241, 244, 0.48);
}
.hero-btn-ghost:hover {
  background: rgba(238, 241, 244, 0.1);
  color: #fff;
  border-color: var(--paper);
}
.hero-player-shell {
  position: relative;
  background: #05080b;
  border-bottom: 1px solid var(--line);
}
.hero-player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.hero-player-shell.is-lights-off, body.is-lights-off .hero-player-shell {
  background: #000;
}
.hero-player-shell.is-theater, .page-main.is-theater .hero-player-shell {
  box-shadow: 0 0 0 1px var(--warm-deep) inset;
}
.player-controlbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--deep-2);
  border-top: 1px solid var(--line);
}
.player-btn {
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.player-btn:hover {
  color: var(--paper);
  border-color: rgba(238, 241, 244, 0.42);
}
.player-btn.is-active {
  color: #14100c;
  background: var(--warm);
  border-color: var(--warm);
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  border-radius: 0;
  outline: none;
}
.player-progress {
  flex: 1 1 180px;
  min-width: 120px;
}
.player-volume {
  flex: 0 1 90px;
  min-width: 64px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--warm);
  border-radius: 0;
  border: none;
}
.player-range::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--warm);
  border-radius: 0;
  border: none;
}
.player-select {
  padding: 5px 8px;
  font-size: 12px;
  color: var(--muted);
  background: var(--deep);
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
}
.player-select:hover {
  color: var(--paper);
}
.hero-player-shell.is-muted .player-volume {
  opacity: 0.4;
}
.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background: var(--deep);
  border-top: 1px solid var(--line);
}
.overview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--deep-2);
}
.overview-meta-line {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.overview-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}
.overview-panel {
  padding: 14px 18px 16px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.panel-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--warm-soft);
  text-transform: uppercase;
  margin-bottom: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.panel-synopsis {
  grid-column: span 2;
}
.synopsis-text {
  display: grid;
  gap: 7px;
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(238, 241, 244, 0.84);
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.cast-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.cast-avatar {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 0;
  background:
    linear-gradient(135deg, #3b4c5b 0%, #26343f 60%, #1a242e 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 62%;
  height: 46%;
  transform: translateX(-50%);
  background: rgba(232, 134, 60, 0.32);
}
.cast-item:nth-child(even) .cast-avatar {
  background: linear-gradient(135deg, #4a3a2c 0%, #33261b 60%, #1f1710 100%);
}
.cast-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--paper);
  white-space: nowrap;
}
.status-line {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--paper);
  line-height: 1.3;
}
.status-sub {
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted);
}
.detail-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 16px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.detail-key {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}
.detail-value {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--paper);
  text-align: right;
}
.section-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--paper);
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 3px solid var(--warm);
  line-height: 1.25;
}
.timeline-section {
  margin-top: 22px;
  padding-top: 2px;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px 4px 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-marker {
  position: absolute;
  left: -23px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: var(--warm);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 1px var(--warm-deep);
}
.timeline-body {
  min-width: 0;
}
.timeline-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.timeline-timecode {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--warm-soft);
  white-space: nowrap;
  padding: 2px 8px;
  border: 1px solid rgba(232, 134, 60, 0.4);
}
.episodes-section {
  margin-top: 22px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--deep);
  transition: background 0.2s ease;
}
.episode-card:hover {
  background: var(--deep-2);
}
.episode-card-active {
  background: linear-gradient(180deg, rgba(232, 134, 60, 0.16) 0%, rgba(232, 134, 60, 0.05) 100%);
  box-shadow: inset 3px 0 0 var(--warm);
}
.episode-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--warm-soft);
}
.episode-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: var(--paper);
  line-height: 1.25;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}
.episode-duration {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(143, 160, 174, 0.75);
}
.comments-section {
  margin-top: 22px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 230px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--warm) var(--deep-2);
}
.comment-stack::-webkit-scrollbar {
  width: 6px;
}
.comment-stack::-webkit-scrollbar-track {
  background: var(--deep-2);
}
.comment-stack::-webkit-scrollbar-thumb {
  background: var(--warm-deep);
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 12px;
  background: var(--deep-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid rgba(232, 134, 60, 0.5);
  align-self: start;
}
.comment-nickname {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--warm-soft);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.62;
  color: rgba(238, 241, 244, 0.82);
}
.recommend-section {
  margin-top: 22px;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: var(--deep);
  border: 1px solid var(--line-soft);
  align-self: start;
  transition: border-color 0.2s ease, background 0.2s ease;
}
a.recommend-card {
  color: var(--paper);
  text-decoration: none;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  border-color: var(--warm);
  background: var(--deep-2);
}
.recommend-card img, [data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  background: #0a1017;
}
.recommend-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--paper);
}
.recommend-blurb {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}
.site-footer {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  background: var(--deep);
  padding: 16px 20px 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 30px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}
a.footer-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
a.footer-link:hover {
  color: var(--warm-soft);
  border-bottom-color: var(--warm);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  align-items: baseline;
}
.friend-links-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--warm-soft);
  white-space: nowrap;
  margin-right: 2px;
}
a.runtime-friend-link {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
a.runtime-friend-link:hover {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--warm);
}
.footer-disclaimer {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(143, 160, 174, 0.8);
}
@media (max-width: 1000px) {.overview-panels {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
.panel-synopsis {
    grid-column: span 2;
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 760px) {.header-bar {
    padding: 9px 16px;
  }
.category-strip {
    padding: 8px 16px;
  }
.page-main {
    padding: 0 16px 4px;
  }
.hero-stage {
    margin: 0 -16px;
  }
.hero-media, .hero-title-block {
    min-height: 380px;
  }
.hero-title-block {
    padding: 90px 18px 20px;
  }
.hero-poster {
    object-position: center 24%;
  }
.overview-meta {
    padding: 10px 16px;
    gap: 4px 16px;
  }
.overview-panels {
    grid-template-columns: minmax(0, 1fr);
  }
.panel-synopsis {
    grid-column: span 1;
  }
.overview-panel {
    padding: 12px 16px 14px;
    border-right: none;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
    max-height: 260px;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.footer-top {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 480px) {.header-nav {
    gap: 0;
  }
a.header-nav-link {
    padding: 5px 8px;
    font-size: 12px;
  }
.hero-title {
    font-size: 26px;
  }
.hero-tagline {
    font-size: 13px;
  }
.hero-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
.hero-media, .hero-title-block {
    min-height: 320px;
  }
.hero-title-block {
    padding: 70px 14px 16px;
  }
.player-controlbar {
    padding: 7px 8px;
    gap: 5px;
  }
.player-progress {
    flex-basis: 100%;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.section-heading {
    font-size: 15px;
  }
.timeline-item {
    gap: 8px;
  }
.timeline-label {
    font-size: 13px;
  }}

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}
