:root {
  --ink: #0d1218;
  --ink-2: #131b24;
  --ink-3: #1a2430;
  --slate: #22303f;
  --slate-2: #2c3b4d;
  --copper: #a9683a;
  --copper-2: #c98a55;
  --copper-dim: #6e4426;
  --bone: #d8dde3;
  --bone-2: #a7b2be;
  --bone-3: #74818f;
  --warm: #e8b98a;
  --line: rgba(169, 104, 58, 0.38);
  --line-soft: rgba(169, 104, 58, 0.18);
  --line-cold: rgba(168, 190, 214, 0.12);
  --font-title: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --font-body: "Songti SC", "SimSun", "Source Han Serif SC", "Noto Serif CJK SC", Georgia, serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(120% 70% at 12% -8%, rgba(169, 104, 58, 0.14), transparent 60%),
    radial-gradient(90% 60% at 100% 0%, rgba(44, 59, 77, 0.55), transparent 55%),
    linear-gradient(180deg, #0f151c 0%, #0d1218 40%, #0b1015 100%);
  background-attachment: fixed;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol, dl, dd, dt, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--copper-2);
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  padding: 9px clamp(12px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(13, 18, 24, 0.96), rgba(13, 18, 24, 0.82));
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(6px);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
a[data-contract="site-name"] {
  color: var(--bone);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transform: scaleX(0.94);
  transform-origin: left center;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(201, 138, 85, 0.28);
}
a[data-contract="site-name"]:hover {
  color: var(--copper-2);
}
.site-name {
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}
.site-name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 6%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), rgba(201, 138, 85, 0.05));
  transform: skewX(-24deg);
}
.categories-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  max-width: 100%;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  color: var(--bone-2);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  transform: scaleX(0.97);
  background: rgba(34, 48, 63, 0.5);
  border: 1px solid var(--line-cold);
  border-radius: 3px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover {
  color: var(--warm);
  border-color: var(--line);
  background: rgba(169, 104, 58, 0.14);
}
.page-main {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px clamp(12px, 3vw, 30px) 34px;
}
.section-heading, .block-heading {
  font-family: var(--font-title);
  color: var(--bone);
  letter-spacing: 0.16em;
  transform: scaleX(0.95);
  transform-origin: left center;
}
.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 16px 22px;
  align-items: start;
  padding: 16px;
  background:
    linear-gradient(155deg, rgba(34, 48, 63, 0.72) 0%, rgba(19, 27, 36, 0.9) 52%, rgba(13, 18, 24, 0.96) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}
.hero-poster-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(169, 104, 58, 0.28);
  background: #0a0e13;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.95);
  align-self: start;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.82) contrast(1.06) brightness(0.9);
}
.hero-fracture-band {
  position: absolute;
  left: -6%;
  top: 26%;
  width: 62%;
  height: 16px;
  background: linear-gradient(90deg, rgba(169, 104, 58, 0.02), rgba(201, 138, 85, 0.85) 42%, rgba(232, 185, 138, 0.9) 62%, rgba(110, 68, 38, 0.15));
  transform: rotate(-9deg) skewX(-22deg);
  transform-origin: left center;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: fractureFlicker 6.5s ease-in-out infinite;
}
.hero-fracture-band::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 26px;
  width: 78%;
  height: 4px;
  background: linear-gradient(90deg, rgba(201, 138, 85, 0.55), rgba(201, 138, 85, 0.02));
  transform: skewX(-30deg);
}
@keyframes fractureFlicker {
  0%, 100% { opacity: 0.86; }
  42% { opacity: 1; }
  58% { opacity: 0.68; }
}
.hero-tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 26px 14px 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #f0dcc6;
  background: linear-gradient(180deg, rgba(9, 13, 18, 0), rgba(9, 13, 18, 0.88) 62%, rgba(9, 13, 18, 0.96));
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
}
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-family: var(--font-title);
  font-size: clamp(23px, 3.4vw, 35px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0.06em;
  transform: scaleX(0.92);
  transform-origin: left center;
  color: #eef2f6;
  text-shadow: 0 0 28px rgba(169, 104, 58, 0.35);
}
.movie-seo {
  max-width: 62ch;
  color: var(--bone-2);
  font-size: 13.5px;
  line-height: 1.72;
  padding-left: 11px;
  border-left: 2px solid var(--copper-dim);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 7px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.episode-status > span {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.08em;
  transform: scaleX(0.97);
  padding: 2px 8px;
  border-radius: 2px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.status-current {
  color: #1a1207;
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  border-color: rgba(232, 185, 138, 0.5);
  font-weight: 700;
}
.status-total {
  color: var(--bone-2);
  border-color: var(--line-soft);
  background: rgba(34, 48, 63, 0.45);
}
.status-duration {
  color: var(--bone-3);
  border-color: rgba(168, 190, 214, 0.12);
  background: rgba(23, 33, 44, 0.5);
}
.cast-block {
  min-width: 0;
}
.block-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--copper-2);
  margin-bottom: 7px;
  position: relative;
  padding-left: 10px;
}
.block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 12px;
  margin-top: -6px;
  background: var(--copper);
  border-radius: 1px;
}
.cast-rail {
  display: flex;
  gap: 0;
  padding: 2px 0 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--copper-dim) transparent;
  -webkit-overflow-scrolling: touch;
}
.cast-rail::-webkit-scrollbar {
  height: 5px;
}
.cast-rail::-webkit-scrollbar-thumb {
  background: var(--copper-dim);
  border-radius: 3px;
}
.cast-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 78px;
  margin-right: -19px;
  padding: 0 0 4px;
  position: relative;
  z-index: 1;
}
.cast-card:last-child {
  margin-right: 0;
}
.cast-card:hover {
  z-index: 5;
}
.cast-avatar {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(232, 185, 138, 0.5), transparent 52%),
    linear-gradient(150deg, #33475c 0%, #1d2936 60%, #121a23 100%);
  border: 1px solid rgba(169, 104, 58, 0.5);
  box-shadow: 0 0 0 3px rgba(13, 18, 24, 0.92), 0 6px 14px -6px rgba(0, 0, 0, 0.9);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.cast-card:hover .cast-avatar {
  border-color: var(--copper-2);
  box-shadow: 0 0 0 3px rgba(13, 18, 24, 0.92), 0 0 16px -2px rgba(201, 138, 85, 0.6);
}
.cast-name {
  display: block;
  width: 100%;
  padding: 2px 3px;
  text-align: center;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--bone-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(19, 27, 36, 0.86);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}
.synopsis-block {
  min-width: 0;
}
.synopsis-para {
  color: var(--bone-2);
  font-size: 13px;
  line-height: 1.78;
  text-align: justify;
}
.synopsis-para + .synopsis-para {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(168, 190, 214, 0.1);
}
.details-block {
  min-width: 0;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 8px 5px 0;
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
}
.detail-row dt {
  flex: 0 0 auto;
  font-family: var(--font-title);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--bone-3);
  white-space: nowrap;
}
.detail-row dd {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
  font-size: 12.5px;
  color: var(--bone);
  overflow-wrap: anywhere;
}
.player-shell {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  margin: 18px 0 0;
  background: #070b0f;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.95);
}
.player-shell.is-theater {
  border-color: var(--line);
  box-shadow: 0 0 0 1px rgba(201, 138, 85, 0.28), 0 30px 70px -30px rgba(0, 0, 0, 0.98);
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .main-player {
  filter: brightness(1.08) contrast(1.04);
}
.main-player {
  display: block;
  width: 100%;
  max-width: none;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 7px 10px;
  background: linear-gradient(180deg, rgba(19, 27, 36, 0.94), rgba(11, 16, 21, 0.98));
  border-top: 1px solid var(--line-soft);
}
.player-btn {
  flex: 0 0 auto;
  padding: 4px 11px;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bone-2);
  background: rgba(34, 48, 63, 0.6);
  border: 1px solid var(--line-cold);
  border-radius: 2px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.player-btn:hover {
  color: var(--warm);
  border-color: var(--line);
  background: rgba(169, 104, 58, 0.16);
}
.player-btn:focus-visible {
  outline: 2px solid var(--copper-2);
  outline-offset: 1px;
}
.player-shell.is-playing .player-btn[data-player-action="play"] {
  color: #1a1207;
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  border-color: rgba(232, 185, 138, 0.5);
}
.player-shell.is-muted .player-btn[data-player-action="mute"], .player-shell.has-speed .player-btn[data-player-action="speed"], .player-shell.is-pip .player-btn[data-player-action="pip"], .player-shell.is-fullscreen .player-btn[data-player-action="fullscreen"], .player-shell.is-theater .player-btn[data-player-action="theater"], .player-shell.is-lights-off .player-btn[data-player-action="light"] {
  color: var(--warm);
  border-color: var(--line);
  background: rgba(169, 104, 58, 0.2);
}
.player-range {
  flex: 1 1 120px;
  min-width: 92px;
  height: 4px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--copper-dim), rgba(168, 190, 214, 0.14));
  border-radius: 2px;
  cursor: pointer;
}
.player-range[data-player-action="volume"] {
  flex: 0 1 96px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--copper-2);
  border: 1px solid #f0dcc6;
  box-shadow: 0 0 8px -1px rgba(201, 138, 85, 0.9);
}
.player-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 1px solid #f0dcc6;
  border-radius: 50%;
  background: var(--copper-2);
}
.timeline-section {
  margin-top: 22px;
  padding: 14px 16px 20px;
  background: linear-gradient(180deg, rgba(26, 36, 48, 0.5), rgba(13, 18, 24, 0.25));
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}
.section-heading {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 54px;
  height: 1px;
  background: var(--copper);
}
.timeline-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: start;
  gap: 0 6px;
  padding: 6px 0 0;
}
.timeline-rail::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 15px;
  height: 1px;
  background:
    repeating-linear-gradient(90deg,
      rgba(169, 104, 58, 0.55) 0,
      rgba(169, 104, 58, 0.55) 26px,
      transparent 26px,
      transparent 40px);
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 0 4px;
  min-width: 0;
}
.timeline-node-a { transform: translateY(0); }
.timeline-node-b { transform: translateY(13px); }
.timeline-node-c { transform: translateY(-4px); }
.timeline-node-d { transform: translateY(17px); }
.timeline-node-e { transform: translateY(2px); }
.timeline-node-f { transform: translateY(14px); }
.timeline-node-g { transform: translateY(-7px); }
.node-dot {
  display: block;
  position: relative;
  width: 13px;
  height: 13px;
  margin-left: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--warm), var(--copper) 62%, var(--copper-dim));
  border: 1px solid rgba(240, 220, 198, 0.7);
  box-shadow: 0 0 10px -2px rgba(201, 138, 85, 0.85);
}
.node-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(169, 104, 58, 0.28);
}
.node-time {
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--copper-2);
  white-space: nowrap;
}
.node-label {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--bone-2);
  overflow-wrap: anywhere;
}
.episodes-section {
  margin-top: 22px;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 9px 11px;
  background: linear-gradient(140deg, rgba(34, 48, 63, 0.55), rgba(17, 24, 32, 0.72));
  border: 1px solid var(--line-cold);
  border-left: 2px solid var(--copper-dim);
  border-radius: 3px;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.episode-card:hover {
  border-left-color: var(--copper-2);
  background: linear-gradient(140deg, rgba(42, 58, 75, 0.62), rgba(17, 24, 32, 0.8));
}
.episode-number {
  display: block;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  transform: scaleX(0.86);
  transform-origin: left top;
  color: rgba(201, 138, 85, 0.78);
  text-shadow: 0 0 20px rgba(169, 104, 58, 0.35);
  min-width: 44px;
}
.episode-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.episode-title {
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e6ebf1;
  line-height: 1.3;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.52;
  color: var(--bone-3);
  overflow-wrap: anywhere;
}
.episode-duration {
  display: inline-block;
  margin-top: 2px;
  font-family: var(--font-title);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--copper-2);
  padding: 1px 6px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: rgba(169, 104, 58, 0.1);
  align-self: flex-start;
}
.comments-section {
  margin-top: 22px;
}
.comments-waterfall {
  column-count: 2;
  column-gap: 10px;
}
.comment-card {
  break-inside: avoid;
  display: block;
  margin: 0 0 10px;
  padding: 9px 11px;
  background: linear-gradient(160deg, rgba(28, 40, 53, 0.6), rgba(15, 21, 28, 0.75));
  border: 1px solid var(--line-cold);
  border-radius: 3px;
  position: relative;
}
.comment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 2px;
  background: linear-gradient(180deg, var(--copper), rgba(169, 104, 58, 0.05));
}
.comment-card-lead {
  display: block;
  column-span: all;
  margin-bottom: 12px;
  padding: 13px 15px;
  background:
    linear-gradient(150deg, rgba(169, 104, 58, 0.2), rgba(23, 33, 44, 0.82) 58%, rgba(13, 18, 24, 0.9));
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 34px -22px rgba(0, 0, 0, 0.95);
}
.comment-card-lead::before {
  width: 3px;
  top: 12px;
  bottom: 12px;
}
.comment-card-lead .comment-text {
  font-size: 15px;
  line-height: 1.68;
  color: #eef2f6;
}
.comment-nickname {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-title);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--copper-2);
}
.comment-nickname::before {
  content: "— ";
  color: var(--copper-dim);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--bone-2);
  overflow-wrap: anywhere;
}
.comment-card:nth-child(odd) {
  margin-right: 8px;
}
.comment-card:nth-child(even) {
  margin-left: 12px;
}
.recommend-region {
  margin-top: 20px;
}
.recommend-region + .recommend-region {
  margin-top: 16px;
}
.recommend-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transform: scaleX(0.95);
  transform-origin: left center;
  text-align: left;
  color: var(--bone);
  margin-bottom: 8px;
  padding-left: 9px;
  border-left: 3px solid var(--copper);
  line-height: 1.2;
}
.recommend-grid {
  display: grid;
  gap: 7px;
  align-items: start;
}
.recommend-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.recommend-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.recommend-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3px;
  padding: 6px;
  color: var(--bone-2);
  text-decoration: none;
  background: linear-gradient(165deg, rgba(28, 40, 53, 0.55), rgba(14, 20, 27, 0.78));
  border: 1px solid var(--line-soft);
  border-left: 1px solid var(--copper-dim);
  border-radius: 3px;
  transition: border-color 0.16s ease, transform 0.16s ease, background 0.16s ease;
}
a.recommend-card:hover {
  border-color: var(--copper-2);
  border-left-color: var(--copper-2);
  background: linear-gradient(165deg, rgba(40, 56, 72, 0.62), rgba(14, 20, 27, 0.85));
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background: #0a0e13;
  filter: saturate(0.85) brightness(0.92);
}
a.recommend-card:hover img {
  filter: saturate(1) brightness(1);
}
[data-runtime="name"] {
  display: -webkit-box;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #e6ebf1;
  line-height: 1.35;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
[data-runtime="blurb"] {
  display: -webkit-box;
  font-size: 11px;
  line-height: 1.42;
  color: var(--bone-3);
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
}
.site-footer {
  margin-top: 26px;
  padding: 16px clamp(12px, 3vw, 30px) 26px;
  background: linear-gradient(180deg, rgba(13, 18, 24, 0.6), rgba(9, 13, 18, 0.95));
  border-top: 1px solid var(--line-soft);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 10px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--font-title);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--bone-2);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm);
  border-bottom-color: var(--line);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 9px;
  padding: 9px 0 10px;
  border-top: 1px dashed rgba(168, 190, 214, 0.1);
  border-bottom: 1px dashed rgba(168, 190, 214, 0.1);
}
.friend-links-label {
  font-family: var(--font-title);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--copper-2);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--bone-3);
  text-decoration: none;
  padding: 1px 5px;
  border: 1px solid rgba(168, 190, 214, 0.1);
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-friend-link:hover {
  color: var(--warm);
  border-color: var(--line);
}
.footer-disclaimer {
  margin-top: 11px;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(116, 129, 143, 0.85);
  max-width: 76ch;
}
@media (max-width: 1000px) {.hero-panel {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-poster-wrap {
    max-width: 380px;
    margin: 0 auto;
  }
.hero-poster {
    aspect-ratio: 2 / 3;
    width: 100%;
    max-width: 100%;
  }
.recommend-grid-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.timeline-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 16px;
  }
.timeline-rail::before {
    display: none;
  }
.timeline-node-b, .timeline-node-c, .timeline-node-d, .timeline-node-e, .timeline-node-f, .timeline-node-g {
    transform: translateY(0);
  }}
@media (max-width: 800px) {.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-waterfall {
    column-count: 1;
  }
.comment-card:nth-child(odd) {
    margin-right: 0;
  }
.comment-card:nth-child(even) {
    margin-left: 0;
  }
.comment-card-lead {
    column-span: none;
  }
.recommend-grid-4, .recommend-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 620px) {body {
    font-size: 14px;
  }
.site-header {
    padding: 8px 12px;
  }
a[data-contract="site-name"] {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
a.runtime-category {
    font-size: 11.5px;
    padding: 2px 7px;
  }
.page-main {
    padding: 12px 12px 26px;
  }
.hero-panel {
    padding: 12px;
    gap: 12px;
  }
.hero-poster-wrap {
    max-width: 100%;
  }
.hero-poster {
    aspect-ratio: 2 / 3;
  }
.movie-title {
    font-size: 22px;
  }
.timeline-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }
.episode-number {
    font-size: 25px;
    min-width: 38px;
  }
.recommend-grid-3, .recommend-grid-4, .recommend-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.player-controls {
    gap: 5px 6px;
    padding: 6px 8px;
  }
.player-btn {
    padding: 3px 8px;
    font-size: 11.5px;
  }
.player-range[data-player-action="volume"] {
    flex: 1 1 80px;
  }}
@media (max-width: 420px) {.recommend-grid-3, .recommend-grid-4, .recommend-grid-5 {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-card {
    width: 70px;
    margin-right: -16px;
  }
.cast-avatar {
    width: 48px;
    height: 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}
