:root {
  --ink: #07080a;
  --ink-2: #0d0f13;
  --ink-3: #14171d;
  --ash: #1c2026;
  --ash-2: #262b33;
  --line: #2c323b;
  --red: #b3121b;
  --red-hot: #ff2d3b;
  --neon: #35f0c4;
  --neon-dim: #1f8f76;
  --text: #d6dae0;
  --text-dim: #8b939e;
  --text-soft: #5f6771;
  --white: #f2f5f8;
  --shell: 1180px;
  --gap: 14px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Heiti SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
html, body {
  background: var(--ink);
}
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.01em;
  background-color: var(--ink);
  background-image:
    radial-gradient(1200px 620px at 78% -6%, rgba(179, 18, 27, 0.22), transparent 62%),
    radial-gradient(900px 520px at 4% 12%, rgba(53, 240, 196, 0.07), transparent 60%),
    linear-gradient(180deg, #07080a 0%, #0a0c10 46%, #07080a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
.page-shell {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 8, 10, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"].site-brand {
  font-size: 19px;
  font-weight: 900;
  font-stretch: condensed;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  padding: 2px 0 2px 12px;
  border-left: 3px solid var(--red-hot);
  text-shadow: 0 0 14px rgba(255, 45, 59, 0.45);
  white-space: nowrap;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}
.runtime-category, a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--neon);
  border-color: var(--neon-dim);
  background: #0f1a19;
  text-decoration: none;
}
.page-main {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 18px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  padding-left: 11px;
  border-left: 3px solid var(--red-hot);
  margin-bottom: 10px;
  line-height: 1.2;
}
.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  grid-template-areas:
    "copy figure"
    "cast figure"
    "synopsis synopsis"
    "status details";
  gap: 16px 22px;
  padding: 20px 0 4px;
  align-items: start;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.72) 38%, rgba(7, 8, 10, 0) 68%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.2) 0%, rgba(7, 8, 10, 0) 55%);
  z-index: 1;
}
.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 3;
  padding-top: 6px;
  min-width: 0;
}
.movie-title {
  font-size: clamp(38px, 6.4vw, 74px);
  line-height: 0.94;
  font-weight: 900;
  font-stretch: condensed;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow:
    0 0 22px rgba(255, 45, 59, 0.4),
    0 0 60px rgba(179, 18, 27, 0.28);
}
.movie-tagline {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--neon);
  text-shadow: 0 0 16px rgba(53, 240, 196, 0.28);
}
.movie-seo {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 46ch;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.hero-meta-item {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  background: rgba(20, 23, 29, 0.86);
  border: 1px solid var(--line);
  border-left: 2px solid var(--red);
  padding: 3px 9px;
  white-space: nowrap;
}
.hero-figure {
  grid-area: figure;
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: start;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(160deg, #12161b, #07080a);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.72);
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(200deg, rgba(255, 45, 59, 0.14), transparent 46%),
    linear-gradient(0deg, rgba(7, 8, 10, 0.9) 0%, rgba(7, 8, 10, 0) 42%);
  mix-blend-mode: screen;
}
.poster-image {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.86) contrast(1.1) brightness(0.9);
}
.cast-strip {
  grid-area: cast;
  position: relative;
  z-index: 3;
  min-width: 0;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cast-item {
  flex: 1 1 78px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 4px;
  background: rgba(13, 15, 19, 0.72);
  border: 1px solid var(--line);
}
.cast-avatar {
  width: 100%;
  max-width: 62px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #3a4149 0%, #1a1e24 62%, #101318 100%);
  border: 1px solid var(--ash-2);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 45, 59, 0.14);
  position: relative;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 30% 26% auto 26%;
  height: 26%;
  border-radius: 50%;
  background: rgba(53, 240, 196, 0.12);
}
.cast-name {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.synopsis-panel {
  grid-area: synopsis;
  position: relative;
  z-index: 3;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.synopsis-body {
  columns: 2;
  column-gap: 26px;
  column-rule: 1px solid var(--line);
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.78;
  color: var(--text-dim);
  margin-bottom: 9px;
  break-inside: avoid;
}
.synopsis-para:first-child {
  color: var(--text);
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.episode-status {
  grid-area: status;
  position: relative;
  z-index: 3;
  min-width: 0;
  padding: 10px 12px;
  background: rgba(13, 15, 19, 0.78);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
}
.status-line {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.status-current {
  font-size: 30px;
  font-weight: 900;
  font-stretch: condensed;
  color: var(--neon);
  line-height: 1;
  text-shadow: 0 0 18px rgba(53, 240, 196, 0.4);
  margin-right: 2px;
}
.status-total {
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
}
.details-panel {
  grid-area: details;
  position: relative;
  z-index: 3;
  min-width: 0;
  padding: 10px 12px;
  background: rgba(13, 15, 19, 0.78);
  border: 1px solid var(--line);
  border-top: 2px solid var(--line);
}
.details-panel .section-title {
  font-size: 13px;
  margin-bottom: 8px;
  padding-left: 9px;
  border-left-width: 2px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  padding: 2px 0;
  border-bottom: 1px dashed rgba(44, 50, 59, 0.7);
}
.details-key {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  white-space: nowrap;
}
.details-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #050607;
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.66);
  padding: 0;
  overflow: hidden;
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
  max-height: 78vh;
  object-fit: contain;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(20, 23, 29, 0.94), rgba(7, 8, 10, 0.98));
  border-top: 1px solid var(--line);
}
.player-btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 5px 10px;
  white-space: nowrap;
  transition: color 0.14s ease, border-color 0.14s ease, background-color 0.14s ease;
}
.player-btn:hover, .player-btn:focus-visible {
  color: var(--neon);
  border-color: var(--neon-dim);
  background: #0f1a19;
  outline: none;
}
.player-btn:active {
  color: var(--white);
  border-color: var(--red);
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 120px;
  min-width: 90px;
  height: 4px;
  background: var(--ash-2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 10px rgba(255, 45, 59, 0.7);
  cursor: pointer;
}
.player-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 10px rgba(255, 45, 59, 0.7);
  cursor: pointer;
}
.player-range::-moz-range-track {
  height: 4px;
  background: var(--ash-2);
  border-radius: 2px;
}
.player-shell.is-playing {
  border-top-color: var(--neon);
}
.player-shell.is-playing .player-btn[data-player-action="play"] {
  color: var(--neon);
  border-color: var(--neon-dim);
}
.player-shell.is-muted .player-btn[data-player-action="mute"] {
  color: var(--red-hot);
  border-color: var(--red);
}
.player-shell.is-theater {
  border-color: var(--neon-dim);
  box-shadow: 0 0 0 1px rgba(53, 240, 196, 0.22), 0 24px 60px rgba(0, 0, 0, 0.8);
}
.player-shell.is-fullscreen {
  background: #000;
  border-color: #000;
}
.player-shell.is-fullscreen .player-video {
  max-height: 100vh;
}
.player-shell.is-dimmed {
  background: #000;
  border-top-color: var(--red-hot);
  box-shadow: 0 0 0 1px rgba(255, 45, 59, 0.24), 0 24px 60px rgba(0, 0, 0, 0.86);
}
.player-shell.is-dimmed .player-controls {
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.96), rgba(0, 0, 0, 0.99));
}
.timeline-panel {
  min-width: 0;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(13, 15, 19, 0.9), rgba(7, 8, 10, 0.9));
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
}
.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 4px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 86px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 45, 59, 0.85), rgba(255, 45, 59, 0.22) 60%, rgba(53, 240, 196, 0.35));
}
.timeline-node {
  display: grid;
  grid-template-columns: 78px 18px minmax(0, 1fr);
  align-items: center;
  gap: 0 10px;
  position: relative;
  padding: 4px 0;
  min-width: 0;
}
.timeline-node:nth-child(1) { padding-top: 2px; }
.timeline-node:nth-child(2) { padding-top: 6px; }
.timeline-node:nth-child(3) { padding-top: 9px; }
.timeline-node:nth-child(4) { padding-top: 12px; }
.timeline-node:nth-child(5) { padding-top: 15px; }
.timeline-time {
  text-align: right;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--neon);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(53, 240, 196, 0.3);
}
.timeline-dot {
  justify-self: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 3px rgba(179, 18, 27, 0.28), 0 0 12px rgba(255, 45, 59, 0.85);
  position: relative;
  z-index: 1;
}
.timeline-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  min-width: 0;
}
.episodes-panel {
  min-width: 0;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.episode-card {
  position: relative;
  min-width: 0;
  padding: 12px 12px 30px 14px;
  background: linear-gradient(160deg, rgba(20, 23, 29, 0.94), rgba(10, 12, 16, 0.94));
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.episode-card:hover {
  border-left-color: var(--neon);
  background: linear-gradient(160deg, rgba(26, 30, 37, 0.96), rgba(11, 13, 17, 0.96));
}
.episode-number {
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
  font-stretch: condensed;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--red-hot);
  text-shadow: 0 0 16px rgba(255, 45, 59, 0.42);
  margin-right: 8px;
}
.episode-title {
  display: inline;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.25;
}
.episode-summary {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
}
.episode-duration {
  position: absolute;
  right: 12px;
  bottom: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
  padding-top: 3px;
}
.comments-panel {
  min-width: 0;
}
.comment-list {
  columns: 2;
  column-gap: 12px;
}
.comment-card {
  break-inside: avoid;
  margin-bottom: 10px;
  padding: 10px 12px;
  background: rgba(13, 15, 19, 0.86);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ash-2);
  display: block;
  min-width: 0;
}
.comment-list > .comment-card:nth-child(odd) {
  border-left-color: var(--neon-dim);
}
.comment-list > .comment-card:nth-child(even) {
  border-left-color: var(--red);
  margin-left: 14px;
}
.comment-nick {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--neon);
  margin-bottom: 4px;
}
.comment-nick::before {
  content: "▍";
  color: var(--red-hot);
  margin-right: 3px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-dim);
}
.recommend-region {
  min-width: 0;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, rgba(13, 15, 19, 0.86), rgba(7, 8, 10, 0.86));
  border: 1px solid var(--line);
}
.recommend-region .section-title {
  font-size: 13.5px;
  margin-bottom: 9px;
}
.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.recommend-item {
  min-width: 0;
}
a.recommend-link {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-areas:
    "thumb name"
    "thumb blurb";
  align-items: center;
  gap: 2px 10px;
  padding: 6px;
  color: var(--text);
  text-decoration: none;
  background: rgba(20, 23, 29, 0.6);
  border: 1px solid var(--line);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
a.recommend-link:hover, a.recommend-link:focus-visible {
  border-color: var(--neon-dim);
  background: rgba(15, 26, 25, 0.72);
  text-decoration: none;
  outline: none;
}
[data-runtime="recommendation"] img.recommend-thumb, .recommend-thumb {
  grid-area: thumb;
  width: 100%;
  max-width: 100%;
  height: 62px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  background: #0b0d11;
  border: 1px solid var(--line);
  filter: saturate(0.85) brightness(0.92);
}
.recommend-name {
  grid-area: name;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  grid-area: blurb;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-soft);
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}
.site-footer {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.96), #05060700);
  padding: 16px 18px 26px;
}
.footer-disclaimer {
  max-width: var(--shell);
  margin: 0 auto 10px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-soft);
}
.footer-nav {
  max-width: var(--shell);
  margin: 0 auto 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
a[data-contract="footer-home"].footer-link, a[data-contract="footer-sitemap"].footer-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-decoration: none;
  padding: 3px 10px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  transition: color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"].footer-link:hover, a[data-contract="footer-sitemap"].footer-link:hover, a[data-contract="footer-home"].footer-link:focus-visible, a[data-contract="footer-sitemap"].footer-link:focus-visible {
  color: var(--neon);
  border-color: var(--neon-dim);
  outline: none;
}
.friend-links {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.friend-links-label {
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--red-hot);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--text-soft);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px dotted rgba(139, 147, 158, 0.4);
  transition: color 0.14s ease, border-color 0.14s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--neon);
  border-bottom-color: var(--neon-dim);
  outline: none;
}
@media (max-width: 1000px) {.hero-banner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    grid-template-areas:
      "copy figure"
      "cast cast"
      "synopsis synopsis"
      "status details";
    gap: 14px 18px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 820px) {.hero-banner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "figure"
      "copy"
      "cast"
      "synopsis"
      "status"
      "details";
  }
.hero-banner::before {
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.1) 0%, rgba(7, 8, 10, 0.5) 55%, rgba(7, 8, 10, 0.95) 100%);
  }
.hero-figure {
    justify-self: stretch;
    max-width: 420px;
    margin: 0 auto;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.comment-list {
    columns: 1;
  }
.comment-list > .comment-card:nth-child(even) {
    margin-left: 0;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 620px) {.page-main {
    padding: 0 12px 22px;
    gap: 16px;
  }
.header-inner {
    padding: 9px 12px;
    gap: 10px;
  }
a[data-contract="site-name"].site-brand {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
.movie-title {
    font-size: clamp(32px, 11vw, 46px);
  }
.movie-tagline {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-item {
    flex: 1 1 62px;
  }
.timeline-list::before {
    left: 62px;
  }
.timeline-node {
    grid-template-columns: 54px 16px minmax(0, 1fr);
    gap: 0 8px;
  }
.timeline-time {
    font-size: 10.5px;
    letter-spacing: 0.04em;
  }
.timeline-label {
    font-size: 12.5px;
  }
.player-controls {
    padding: 7px 8px;
    gap: 5px;
  }
.player-btn {
    font-size: 11px;
    padding: 4px 8px;
  }
.player-range {
    flex: 1 1 100%;
    min-width: 100%;
  }
a.recommend-link {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 2px 8px;
  }
[data-runtime="recommendation"] img.recommend-thumb, .recommend-thumb {
    height: 54px;
  }
.site-footer {
    padding: 14px 12px 22px;
  }}
@media (max-width: 420px) {.cast-name {
    font-size: 11px;
  }
.episode-number {
    font-size: 19px;
  }
.status-current {
    font-size: 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}
