:root {
  --bg-deep: #0d1117;
  --bg-panel: #141b24;
  --bg-elevated: #1a2330;
  --bg-warm: #1e2430;
  --ink-primary: #e8edf2;
  --ink-secondary: #8b97a8;
  --ink-muted: #5c6875;
  --gold: #b8944f;
  --gold-dim: #8a6d3a;
  --gold-bright: #d4b06a;
  --cold-white: #dce4ec;
  --rule: #232d3b;
  --rule-light: #2e3a4a;
  --accent-glow: rgba(184, 148, 79, 0.18);
  --radius-sm: 3px;
  --radius-md: 5px;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei", system-ui, -apple-system, sans-serif;
  --font-mono: "SF Mono", "Cascadia Code", "Fira Code", Consolas, monospace;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--bg-deep);
  color: var(--ink-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input, select {
  font-family: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-inner::-webkit-scrollbar {
  display: none;
}
a[data-contract="site-name"] {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cold-white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
a[data-contract="site-name"]:hover {
  color: var(--gold-bright);
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-bar::-webkit-scrollbar {
  display: none;
}
a.runtime-category {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-secondary);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
a.runtime-category:hover {
  color: var(--cold-white);
  background: var(--bg-elevated);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.hero-stage {
  position: relative;
  margin: 0 -20px;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #060a10;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.7) contrast(1.1);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6, 10, 16, 0.3) 0%,
      rgba(6, 10, 16, 0.5) 40%,
      rgba(13, 17, 23, 0.92) 85%,
      var(--bg-deep) 100%
    );
}
.hero-spotlight-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(220, 228, 236, 0.12) 0%,
    rgba(184, 148, 79, 0.06) 30%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-caption {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 48px 32px 36px;
}
.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--cold-white);
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.hero-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-secondary);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.hero-seo {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 52ch;
}
.databar-strip {
  margin-top: -1px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--rule);
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 20px;
}
.databar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}
.databar-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 16px 8px 0;
  font-size: 0.78rem;
  white-space: nowrap;
}
.databar-item + .databar-item {
  padding-left: 16px;
  border-left: 1px solid var(--rule);
}
.databar-key {
  color: var(--ink-muted);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.databar-value {
  color: var(--ink-secondary);
  font-weight: 400;
}
.databar-item-score {
  margin-left: auto;
}
.databar-item-score .databar-key {
  color: var(--ink-muted);
}
.databar-score {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.section-heading {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 14px;
}
.overview-unit {
  margin-top: 28px;
}
.overview-heading {
  margin-bottom: 18px;
}
.overview-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.poster-frame {
  width: 200px;
  align-self: start;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
  background: var(--bg-panel);
}
.poster-caption {
  font-size: 0.68rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 6px;
  letter-spacing: 0.06em;
}
.overview-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.overview-headline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.overview-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cold-white);
  letter-spacing: 0.02em;
}
.overview-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-secondary);
  letter-spacing: 0.04em;
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #080c12;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stage-player {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 8px 10px;
  background: var(--bg-panel);
  border-top: 1px solid var(--rule);
}
.player-btn {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius-sm);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.player-btn:hover {
  color: var(--cold-white);
  border-color: var(--gold-dim);
  background: #1f2937;
}
.player-field {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: var(--ink-muted);
}
.player-field-label {
  white-space: nowrap;
  font-size: 0.68rem;
  color: var(--ink-muted);
}
.player-range {
  width: 70px;
  height: 4px;
  accent-color: var(--gold);
  cursor: pointer;
}
.player-select {
  padding: 3px 4px;
  font-size: 0.7rem;
  color: var(--ink-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.player-shell.is-playing .player-btn[data-player-action="play"] {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.player-shell.is-muted .player-btn[data-player-action="mute"] {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 2px var(--gold-dim);
}
.player-shell.is-light {
  filter: brightness(1.15);
}
.episode-status {
  padding: 12px 14px;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.status-heading {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  margin-bottom: 6px;
}
.status-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.status-total {
  color: var(--ink-secondary);
  font-weight: 400;
}
.status-divider {
  color: var(--rule-light);
}
.status-current {
  color: var(--cold-white);
  font-weight: 600;
}
.status-meter {
  height: 3px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.status-meter-fill {
  display: block;
  height: 100%;
  width: 69%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  border-radius: 2px;
}
.details-block {
  padding: 12px 14px;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.details-heading {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.details-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(35, 45, 59, 0.5);
  font-size: 0.78rem;
}
.details-row:last-child {
  border-bottom: none;
}
.details-key {
  color: var(--ink-muted);
  font-weight: 400;
  flex-shrink: 0;
  font-size: 0.72rem;
}
.details-value {
  color: var(--ink-secondary);
  text-align: right;
  font-weight: 400;
}
.cast-block {
  padding: 12px 14px;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.cast-heading {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 52px;
}
.cast-avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2a3a, #2a3545);
  border: 1px solid var(--rule-light);
  flex-shrink: 0;
}
.cast-name {
  font-size: 0.68rem;
  color: var(--ink-secondary);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.synopsis-block {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--gold-dim);
  border-radius: var(--radius-md);
}
.synopsis-heading {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.synopsis-para {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-secondary);
  text-align: justify;
}
.timeline-block {
  margin-top: 28px;
}
.timeline-heading {
  margin-bottom: 14px;
}
.timeline-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--rule-light) transparent;
}
.timeline-scroller::-webkit-scrollbar {
  height: 4px;
}
.timeline-scroller::-webkit-scrollbar-track {
  background: transparent;
}
.timeline-scroller::-webkit-scrollbar-thumb {
  background: var(--rule-light);
  border-radius: 2px;
}
.timeline-track {
  display: flex;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding: 0 0 4px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}
.timeline-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 168px;
  padding-right: 16px;
  flex-shrink: 0;
}
.timeline-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent-glow);
}
.timeline-timecode {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.timeline-label {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-muted);
}
.episodes-block {
  margin-top: 28px;
}
.episodes-heading {
  margin-bottom: 14px;
}
.episode-list {
  display: flex;
  flex-direction: column;
}
.episode-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
}
.episode-row:first-child {
  border-top: 1px solid var(--rule);
}
.episode-number {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.episode-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.episode-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cold-white);
  letter-spacing: 0.02em;
}
.episode-summary {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-muted);
}
.episode-duration {
  font-size: 0.68rem;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
  text-align: right;
}
.comments-block {
  margin-top: 28px;
}
.comments-heading {
  margin-bottom: 14px;
}
.comment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.comment-card {
  padding: 10px 12px;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comment-text {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-secondary);
}
.comment-nickname {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold-dim);
  letter-spacing: 0.04em;
}
.comment-nickname::before {
  content: "— ";
  color: var(--rule-light);
}
.recommend-region {
  margin-top: 28px;
}
.recommend-region-3 {
  background: var(--bg-warm);
  margin-left: -20px;
  margin-right: -20px;
  padding: 20px 20px 24px;
  border-radius: var(--radius-md);
}
.recommend-heading {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 12px;
}
.recommend-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  width: 100%;
}
a.recommend-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
a.recommend-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-elevated);
}
.recommend-name {
  display: block;
  padding: 7px 10px 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cold-white);
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.recommend-blurb {
  display: block;
  padding: 0 10px 9px;
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-muted);
}
.site-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 72ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.74rem;
  color: var(--ink-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold-bright);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}
.friend-links-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 0.68rem;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--gold-dim);
}
.player-shell.is-light .player-controls {
  background: #1f2937;
}
.player-shell.is-light .stage-player {
  filter: brightness(1.1);
}
.player-btn.play, .player-btn.pause, .player-btn.mute, .player-btn.progress, .player-btn.volume, .player-btn.speed, .player-btn.pip, .player-btn.fullscreen, .player-btn.theater, .player-btn.light {
  
}
@media (max-width: 900px) {.overview-grid {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 16px;
  }
.poster-frame {
    width: 160px;
  }
.hero-title {
    font-size: 1.9rem;
  }
.hero-caption {
    padding: 36px 24px 28px;
  }
.recommend-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 680px) {.page-main {
    padding: 0 14px 32px;
  }
.hero-stage {
    margin: 0 -14px;
    min-height: 340px;
  }
.hero-caption {
    padding: 32px 18px 24px;
  }
.hero-title {
    font-size: 1.55rem;
  }
.hero-tagline {
    font-size: 0.88rem;
  }
.hero-seo {
    font-size: 0.76rem;
  }
.databar-strip {
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px;
  }
.databar-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
.databar-item {
    padding: 6px 10px 6px 0;
    border-left: none !important;
    padding-left: 0 !important;
  }
.databar-item-score {
    margin-left: 0;
  }
.overview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
.poster-frame {
    width: 140px;
    margin: 0 auto;
  }
.poster-img {
    aspect-ratio: 2 / 3;
  }
.overview-body {
    gap: 14px;
  }
.player-controls {
    gap: 5px 8px;
    padding: 7px 8px;
  }
.player-range {
    width: 56px;
  }
.comment-grid {
    grid-template-columns: 1fr;
  }
.recommend-stack {
    grid-template-columns: 1fr;
  }
.recommend-region-3 {
    margin-left: -14px;
    margin-right: -14px;
    padding: 16px 14px 20px;
  }
.episode-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 8px;
  }
.timeline-node {
    width: 150px;
  }
.site-footer {
    padding: 16px 14px 24px;
  }
.cast-item {
    width: 46px;
  }
.cast-avatar {
    width: 36px;
    height: 36px;
  }}
@media (max-width: 420px) {.hero-title {
    font-size: 1.35rem;
  }
.databar-list {
    grid-template-columns: 1fr;
  }
.episode-row {
    grid-template-columns: 1fr auto;
    gap: 4px 8px;
  }
.episode-number {
    grid-column: 1 / -1;
  }
.episode-main {
    grid-column: 1;
  }
.episode-duration {
    grid-column: 2;
  }
.player-field-label {
    display: none;
  }
.player-range {
    width: 48px;
  }}

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}
