*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, dl, dd, dt, ol, ul {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button, input, select {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --ink: #070c18;
  --navy-deep: #0b1226;
  --navy: #101a35;
  --navy-soft: #16223f;
  --navy-line: #22304f;
  --gold: #c8a24a;
  --gold-bright: #e8c877;
  --gold-dim: #8a6f33;
  --gold-glow: rgba(200, 162, 74, 0.35);
  --text-warm: #f2ead8;
  --text-body: #c8cede;
  --text-muted: #8d97ad;
  --text-faint: #6b7488;
  --radius: 10px;
  --radius-sm: 6px;
  --title-font: "Songti SC", "SimSun", "Noto Serif CJK SC", "Source Han Serif SC", Georgia, serif;
  --body-font: "Heiti SC", "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --gap: 12px;
  --pad: 14px;
  --shell: 1180px;
}
body {
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(30, 48, 92, 0.55), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(200, 162, 74, 0.08), transparent 55%),
    linear-gradient(180deg, #080d1a 0%, #0a1122 40%, #070b15 100%);
  color: var(--text-body);
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
.page-main {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.96), rgba(9, 15, 30, 0.88));
  border-bottom: 1px solid var(--navy-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.6;
}
.header-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.site-brand {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(200, 162, 74, 0.35), 0 1px 0 #000;
  white-space: nowrap;
}
a[data-contract="site-name"] {
  color: var(--gold-bright);
  text-decoration: none;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #fbe6ac;
  text-decoration: none;
}
.category-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12.5px;
  line-height: 1.2;
  padding: 5px 11px;
  border: 1px solid var(--navy-line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(30, 45, 84, 0.7), rgba(14, 22, 44, 0.7));
  color: var(--text-body);
  letter-spacing: 0.08em;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
a.runtime-category {
  color: #cdd5e6;
  text-decoration: none;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
  background: linear-gradient(180deg, rgba(52, 72, 122, 0.8), rgba(20, 30, 58, 0.85));
  text-decoration: none;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #0c1428 0%, #0a1020 55%, #0d1526 100%);
  border: 1px solid var(--navy-line);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(200, 162, 74, 0.12);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0 38px,
      rgba(200, 162, 74, 0.045) 38px 39px
    );
  z-index: 1;
}
.hero-poster {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  aspect-ratio: 2 / 3;
  min-height: 0;
  overflow: hidden;
  background: #060a14;
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.88) contrast(1.06) brightness(0.94);
}
.poster-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 10, 20, 0.55) 0%, transparent 30%, rgba(6, 10, 20, 0.2) 72%, rgba(6, 10, 20, 0.92) 100%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.5) 0%, transparent 26%, transparent 62%, rgba(6, 10, 20, 0.85) 100%);
}
.hero-info {
  position: relative;
  z-index: 2;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  align-self: start;
  padding: 20px 20px 20px 4px;
  margin-left: -56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-family: var(--title-font);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-warm);
  text-shadow:
    -1px 0 0 rgba(200, 162, 74, 0.55),
    1px 0 0 rgba(200, 162, 74, 0.55),
    0 -1px 0 rgba(200, 162, 74, 0.45),
    0 1px 0 rgba(200, 162, 74, 0.45),
    0 0 26px rgba(200, 162, 74, 0.28);
}
.movie-tagline {
  font-size: 13.5px;
  line-height: 1.75;
  color: #b9c2d6;
  border-left: 2px solid var(--gold-dim);
  padding-left: 10px;
  max-width: 46ch;
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #05080f;
  border: 1px solid var(--navy-line);
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.9);
}
.player-video {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  background: #05080f;
}
.player-shell.is-active, .player-shell.theater, .player-shell.fullscreen {
  border-color: var(--gold-dim);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(14, 22, 42, 0.95), rgba(9, 14, 28, 0.98));
  border-top: 1px solid var(--navy-line);
}
.ctrl-btn {
  font-family: var(--body-font);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-line);
  background: linear-gradient(180deg, #1a2745, #111a30);
  color: #c3cbdd;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
  outline: none;
}
.ctrl-btn.is-active, .ctrl-btn.play.is-active {
  color: #0b1226;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-color: var(--gold-bright);
  font-weight: 700;
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 90px;
  min-width: 70px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dim), #26344f);
  cursor: pointer;
  outline: none;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 1px solid #6b5522;
  box-shadow: 0 0 8px rgba(232, 200, 119, 0.6);
}
.ctrl-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 1px solid #6b5522;
  border-radius: 50%;
  background: var(--gold-bright);
}
.ctrl-range.progress {
  flex: 1 1 140px;
}
.ctrl-volume {
  flex: 0 1 74px;
  min-width: 56px;
}
.ctrl-select {
  font-size: 12px;
  padding: 6px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-line);
  background: #111a30;
  color: #c3cbdd;
  cursor: pointer;
}
.ctrl-select:focus-visible {
  outline: 1px solid var(--gold-dim);
}
.movie-synopsis-lead {
  font-size: 13px;
  line-height: 1.8;
  color: #aab4c9;
  padding-top: 2px;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-line);
  background: linear-gradient(180deg, rgba(24, 36, 66, 0.55), rgba(12, 19, 36, 0.55));
}
.status-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12.5px;
}
.status-label {
  color: var(--text-faint);
  letter-spacing: 0.1em;
}
.status-value {
  font-family: var(--title-font);
  font-size: 15px;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
}
.section-heading {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-warm);
  text-shadow:
    -0.6px 0 0 rgba(200, 162, 74, 0.5),
    0.6px 0 0 rgba(200, 162, 74, 0.5),
    0 0 14px rgba(200, 162, 74, 0.22);
  padding-left: 12px;
  position: relative;
  margin-bottom: 10px;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  bottom: 0.28em;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  box-shadow: 0 0 10px var(--gold-glow);
}
.section-heading::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 7px;
  background: linear-gradient(90deg, rgba(200, 162, 74, 0.5), rgba(200, 162, 74, 0.08) 45%, transparent);
}
.cast-grid {
  display: block;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px 9px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(34, 48, 79, 0.8);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(200, 162, 74, 0.07) 0 6px,
      transparent 6px 12px
    ),
    linear-gradient(180deg, rgba(22, 34, 63, 0.7), rgba(11, 18, 36, 0.75));
  min-width: 0;
}
.cast-avatar {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(232, 200, 119, 0.55), transparent 52%),
    conic-gradient(from 210deg, #23335a, #0e1730 45%, #2b3d68 78%, #0e1730);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.7);
  position: relative;
  flex: 0 0 auto;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 162, 74, 0.28);
}
.cast-name {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: #cdd5e6;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.synopsis-block {
  display: block;
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 7px;
  text-indent: 2em;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.details-block {
  display: block;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
  border-top: 1px solid var(--navy-line);
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(34, 48, 79, 0.85);
  min-width: 0;
}
.detail-key {
  flex: 0 0 68px;
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.detail-val {
  flex: 1 1 auto;
  font-size: 13px;
  color: #dadfea;
  min-width: 0;
}
.timeline-section {
  margin-top: 14px;
  padding-top: 6px;
}
.timeline-heading {
  margin-bottom: 16px;
}
.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 4px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(200, 162, 74, 0.15), rgba(200, 162, 74, 0.5) 30%, rgba(200, 162, 74, 0.5) 70%, rgba(200, 162, 74, 0.12));
}
.timeline-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px 7px 34px;
  border-radius: var(--radius-sm);
  min-width: 0;
  transition: background 0.18s ease;
}
.timeline-node:hover {
  background: rgba(30, 45, 84, 0.35);
}
.node-dot {
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffe9ad, var(--gold) 55%, #6d5420);
  border: 2px solid #0a1120;
  box-shadow: 0 0 0 1px var(--gold-dim), 0 0 10px var(--gold-glow);
  flex: 0 0 auto;
}
.node-timecode {
  flex: 0 0 auto;
  font-family: var(--title-font);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--gold);
  min-width: 52px;
}
.node-label {
  font-size: 13px;
  color: #b8c1d4;
  min-width: 0;
}
.timeline-node-current {
  background: linear-gradient(90deg, rgba(200, 162, 74, 0.16), rgba(200, 162, 74, 0.02) 70%, transparent);
  border-left: 2px solid var(--gold);
  padding-left: 32px;
}
.timeline-node-current .node-dot {
  width: 17px;
  height: 17px;
  left: 1.5px;
  background: radial-gradient(circle at 32% 28%, #fff6d8, var(--gold-bright) 50%, #8a6f33);
  box-shadow: 0 0 0 1px var(--gold-bright), 0 0 18px rgba(232, 200, 119, 0.75);
}
.timeline-node-current .node-timecode {
  color: var(--gold-bright);
}
.timeline-node-current .node-label {
  color: var(--text-warm);
  font-weight: 600;
}
.episodes-section {
  display: block;
}
.episode-track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) rgba(20, 30, 55, 0.6);
}
.episode-track::-webkit-scrollbar {
  height: 8px;
}
.episode-track::-webkit-scrollbar-track {
  background: rgba(20, 30, 55, 0.6);
  border-radius: 999px;
}
.episode-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 999px;
}
.episode-card {
  position: relative;
  flex: 0 0 clamp(210px, 27%, 268px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 12px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--navy-line);
  background: linear-gradient(160deg, rgba(22, 34, 63, 0.9), rgba(10, 16, 32, 0.95));
  box-shadow: 0 10px 24px -18px rgba(0, 0, 0, 0.9);
  min-width: 0;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.episode-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
.episode-number {
  align-self: flex-start;
  font-family: var(--title-font);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(200, 162, 74, 0.45);
  background: rgba(200, 162, 74, 0.08);
}
.episode-title {
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-warm);
  text-shadow: 0 0 10px rgba(200, 162, 74, 0.18);
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.7;
  color: #9aa5bb;
}
.episode-duration {
  position: absolute;
  right: 12px;
  bottom: 9px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(10, 16, 32, 0.85);
  padding: 1px 7px;
  border-radius: 4px;
  border: 1px solid rgba(200, 162, 74, 0.3);
}
.comments-section {
  display: block;
}
.comment-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}
.comment-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.comment-card {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(34, 48, 79, 0.85);
  border-left: 2px solid rgba(200, 162, 74, 0.45);
  background: linear-gradient(180deg, rgba(18, 28, 52, 0.75), rgba(10, 16, 32, 0.75));
  min-width: 0;
}
.comment-nickname {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e3bc6a;
  margin-bottom: 4px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.75;
  color: #b3bccd;
}
.recommend-region {
  display: block;
}
.recommend-heading {
  font-family: var(--title-font);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--text-warm);
  text-shadow:
    -1px -1px 0 rgba(10, 16, 30, 0.9),
    1px -1px 0 rgba(10, 16, 30, 0.9),
    -1px 1px 0 rgba(10, 16, 30, 0.9),
    1px 1px 0 rgba(10, 16, 30, 0.9),
    0 0 12px rgba(200, 162, 74, 0.4);
}
.recommend-rail {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) rgba(20, 30, 55, 0.6);
}
.recommend-rail::-webkit-scrollbar {
  height: 8px;
}
.recommend-rail::-webkit-scrollbar-track {
  background: rgba(20, 30, 55, 0.6);
  border-radius: 999px;
}
.recommend-rail::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 999px;
}
.recommend-card {
  flex: 0 0 clamp(150px, 19%, 200px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-line);
  background: linear-gradient(180deg, rgba(20, 31, 58, 0.85), rgba(9, 14, 28, 0.92));
  min-width: 0;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
a.recommend-card {
  color: #cdd5e6;
  text-decoration: none;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
  text-decoration: none;
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  background: #060a14;
  border: 1px solid rgba(34, 48, 79, 0.9);
}
.recommend-pic {
  display: block;
}
.recommend-name {
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #e6dcc4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--navy-line);
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.9), rgba(5, 8, 16, 0.98));
  padding: 16px 16px 22px;
  margin-top: 10px;
}
.site-footer > * {
  max-width: var(--shell);
  margin-left: auto;
  margin-right: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(34, 48, 79, 0.9);
  margin-bottom: 10px;
}
.footer-link {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: #aeb8cb;
  text-decoration: none;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: #aeb8cb;
  text-decoration: none;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--gold-bright);
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  margin-bottom: 12px;
}
.friend-links-label {
  font-family: var(--title-font);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding-right: 6px;
  border-right: 1px solid var(--navy-line);
}
.runtime-friend-link {
  font-size: 12px;
  color: #98a3b8;
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link {
  color: #98a3b8;
  text-decoration: none;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--gold-bright);
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-faint);
}
.lights-off .hero, .lights-off .page-main {
  filter: brightness(0.72) contrast(1.05);
}
.lights-off .player-shell {
  filter: none;
  box-shadow: 0 0 0 1px var(--gold-dim), 0 0 40px rgba(200, 162, 74, 0.25);
}
.theater-mode .hero-poster {
  filter: brightness(0.5);
}
.theater-mode .player-shell {
  box-shadow: 0 0 0 1px var(--gold-bright), 0 0 48px rgba(200, 162, 74, 0.35);
}
.fullscreen .player-shell, .player-shell.fullscreen {
  box-shadow: 0 0 0 1px var(--gold-bright);
}
.change .status-value, .timeupdate .node-timecode, .progress .episode-number, .speed .episode-duration {
  color: var(--gold-bright);
}
.click .ctrl-btn, .input .ctrl-range, .video .player-video, .volume .ctrl-volume, .mute .ctrl-btn, .pip .ctrl-btn, .play .ctrl-btn, .light .ctrl-btn, .theater .ctrl-btn {
  transition: all 0.18s ease;
}
.is-active .ctrl-btn, .ctrl-btn.is-active {
  color: #0b1226;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-color: var(--gold-bright);
}
@media (max-width: 1024px) {.hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }
.hero-info {
    margin-left: -34px;
    padding: 18px 16px 18px 4px;
  }
.episode-card {
    flex-basis: clamp(200px, 40%, 250px);
  }
.recommend-card {
    flex-basis: clamp(150px, 30%, 190px);
  }}
@media (max-width: 860px) {.hero {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-poster {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    aspect-ratio: 16 / 10;
  }
.poster-image {
    object-position: center 18%;
  }
.hero-info {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    margin-left: 0;
    padding: 16px;
  }
.cast-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.comment-columns {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 640px) {.page-main {
    padding: 0 12px 22px;
    gap: 18px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 8px;
  }
.site-brand {
    font-size: 17px;
  }
.category-strip {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
.category-strip::-webkit-scrollbar {
    display: none;
  }
.hero {
    margin-top: 12px;
  }
.hero-poster {
    aspect-ratio: 4 / 3;
  }
.movie-title {
    font-size: 24px;
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-key {
    flex-basis: 62px;
  }
.episode-card {
    flex-basis: min(78vw, 260px);
  }
.recommend-card {
    flex-basis: min(62vw, 180px);
  }
.timeline-node {
    padding-left: 30px;
    gap: 8px;
  }
.node-timecode {
    min-width: 46px;
  }}
@media (max-width: 420px) {.movie-title {
    font-size: 21px;
  }
.ctrl-btn {
    font-size: 11px;
    padding: 5px 8px;
  }
.ctrl-range {
    flex-basis: 100%;
  }
.cast-avatar {
    width: 46px;
    height: 46px;
  }}
@media (prefers-reduced-motion: reduce) {*, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !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}
