:root {
  --abyss: #0a1a24;
  --deep: #0e2430;
  --lake: #14384a;
  --lake-mid: #1c4a5e;
  --lake-light: #2b6580;
  --moss: #4a6b5d;
  --moss-dim: #35504a;
  --gold: #b8944a;
  --gold-bright: #d4af6a;
  --gold-dim: #7a6234;
  --ink: #c8dce4;
  --ink-soft: #8aa8b4;
  --ink-faint: #5e7e8c;
  --white: #e8f2f6;
  --serif: Georgia, "Songti SC", "SimSun", "Noto Serif SC", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --hand: "Kaiti SC", "STKaiti", "KaiTi", cursive;
}
*, *::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(--abyss);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(43, 101, 128, 0.35), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(74, 107, 93, 0.18), transparent 65%),
    linear-gradient(180deg, #0d1f2b 0%, #0a1a24 40%, #08151d 100%);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.45;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: var(--gold-bright);
}
h1, h2 {
  font-weight: 300;
  line-height: 1.2;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 21, 29, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 101, 128, 0.25);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  color: var(--gold-bright);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  font-weight: 400;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(212, 175, 106, 0.35);
}
a[data-contract="site-name"]:hover {
  color: var(--white);
}
.category-strip {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  min-width: 0;
}
a.runtime-category {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}
a.runtime-category:hover {
  color: var(--gold-bright);
  background: rgba(184, 148, 74, 0.1);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.1rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.movie-overview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}
.overview-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  padding: 1.2rem;
  background:
    linear-gradient(120deg, rgba(20, 56, 74, 0.72) 0%, rgba(14, 36, 48, 0.55) 60%, rgba(10, 26, 36, 0.4) 100%);
  border: 1px solid rgba(43, 101, 128, 0.3);
  border-radius: 4px;
  overflow: hidden;
}
.overview-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(43, 101, 128, 0.22), transparent 70%);
  pointer-events: none;
}
.poster-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 2 / 3;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(184, 148, 74, 0.22);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.92) hue-rotate(-6deg);
}
.hero-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  padding-top: 0.2rem;
}
.movie-title {
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(10, 26, 36, 0.9);
  border-left: 2px solid var(--gold);
  padding-left: 0.7rem;
}
.movie-tagline {
  font-family: var(--hand);
  font-size: 0.95rem;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.movie-seo {
  font-family: var(--sans);
  font-size: 0.79rem;
  line-height: 1.7;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  max-width: 62ch;
}
.overview-player {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.player-shell {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(43, 101, 128, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.player-shell video {
  display: block;
  width: 100%;
  height: auto;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.5rem 0.6rem;
  background: rgba(14, 36, 48, 0.7);
  border: 1px solid rgba(43, 101, 128, 0.25);
  border-radius: 3px;
}
.control-btn {
  background: rgba(28, 74, 94, 0.5);
  border: 1px solid rgba(43, 101, 128, 0.45);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.control-btn:hover {
  background: rgba(184, 148, 74, 0.18);
  border-color: var(--gold-dim);
  color: var(--gold-bright);
}
.control-range {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: rgba(43, 101, 128, 0.5);
  border-radius: 2px;
  cursor: pointer;
  flex: 1 1 90px;
  min-width: 70px;
  max-width: 220px;
}
.control-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: none;
  box-shadow: 0 0 8px rgba(212, 175, 106, 0.7);
}
.control-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: none;
}
.control-select {
  background: rgba(28, 74, 94, 0.5);
  border: 1px solid rgba(43, 101, 128, 0.45);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.68rem;
  padding: 0.22rem 0.4rem;
  border-radius: 2px;
  cursor: pointer;
}
.player-shell.theater {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.player-shell.theater video {
  width: 100%;
  height: auto;
  max-height: 100vh;
}
.movie-overview.theater-mode .overview-player {
  position: relative;
  z-index: 100;
}
.movie-overview.lights-off {
  filter: brightness(0.45);
}
.movie-overview.lights-off .overview-player {
  filter: brightness(2.1);
}
.movie-overview.lights-off .player-controls {
  filter: brightness(2.1);
}
.control-btn.play, .control-btn.mute, .control-btn.pip, .control-btn.fullscreen, .control-btn.theater, .control-btn.light {
  position: relative;
}
.control-btn.click {
  transform: scale(0.94);
}
.section-heading {
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  color: var(--white);
  padding-left: 0.7rem;
  margin-bottom: 0.7rem;
  position: relative;
  font-weight: 300;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 1em;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  border-radius: 2px;
}
.cast-strip {
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(20, 56, 74, 0.42), rgba(14, 36, 48, 0.28));
  border: 1px solid rgba(43, 101, 128, 0.25);
  border-radius: 4px;
}
.cast-list {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.cast-list::-webkit-scrollbar {
  height: 5px;
}
.cast-list::-webkit-scrollbar-track {
  background: rgba(43, 101, 128, 0.15);
  border-radius: 3px;
}
.cast-list::-webkit-scrollbar-thumb {
  background: rgba(184, 148, 74, 0.5);
  border-radius: 3px;
}
.cast-card {
  flex: 0 0 auto;
  width: 132px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.cast-portrait-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(43, 101, 128, 0.4);
  background:
    radial-gradient(circle at 50% 30%, rgba(43, 101, 128, 0.5), rgba(14, 36, 48, 0.9));
}
.cast-portrait-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, rgba(74, 107, 93, 0.35), rgba(20, 56, 74, 0.5)),
    repeating-linear-gradient(45deg, rgba(43, 101, 128, 0.08) 0 6px, transparent 6px 12px);
}
.voice-bubble {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 6%;
  font-family: var(--hand);
  font-size: 0.6rem;
  line-height: 1.35;
  color: var(--white);
  background: rgba(8, 21, 29, 0.66);
  border: 1px solid rgba(184, 148, 74, 0.45);
  border-radius: 8px 8px 8px 2px;
  padding: 0.3rem 0.4rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}
.cast-name {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-align: center;
}
.synopsis {
  padding: 0.9rem 1.1rem;
  background: rgba(14, 36, 48, 0.35);
  border-left: 2px solid rgba(74, 107, 93, 0.6);
  border-radius: 0 4px 4px 0;
}
.synopsis-para {
  font-family: var(--sans);
  font-size: 0.79rem;
  line-height: 1.75;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  max-width: 74ch;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.episode-status {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.7rem;
  padding: 0.5rem 0.9rem;
  background: linear-gradient(90deg, rgba(74, 107, 93, 0.28), rgba(20, 56, 74, 0.2));
  border: 1px solid rgba(74, 107, 93, 0.4);
  border-radius: 3px;
  align-self: start;
  justify-self: start;
}
.status-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}
.status-value {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  padding-right: 0.4rem;
  border-right: 1px solid rgba(43, 101, 128, 0.4);
}
.status-value:last-child {
  border-right: none;
  padding-right: 0;
}
.details-panel {
  padding: 0.9rem 1.1rem;
  background: rgba(14, 36, 48, 0.32);
  border: 1px solid rgba(43, 101, 128, 0.22);
  border-radius: 4px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.3rem 1.4rem;
}
.details-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.24rem 0;
  border-bottom: 1px dashed rgba(43, 101, 128, 0.28);
  font-family: var(--sans);
  font-size: 0.75rem;
}
.details-row dt {
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}
.details-row dd {
  color: var(--ink);
  text-align: right;
  letter-spacing: 0.03em;
}
.timeline-section {
  padding: 1rem 0 0.4rem;
}
.timeline-track {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.8rem 0.3rem 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.timeline-track::-webkit-scrollbar {
  height: 5px;
}
.timeline-track::-webkit-scrollbar-track {
  background: rgba(43, 101, 128, 0.15);
  border-radius: 3px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: rgba(184, 148, 74, 0.5);
  border-radius: 3px;
}
.timeline-node {
  flex: 0 0 auto;
  width: 168px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  position: relative;
  padding-right: 0.6rem;
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 20px;
  right: -0.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(43, 101, 128, 0.55), rgba(43, 101, 128, 0.1));
}
.timeline-node:last-child::after {
  display: none;
}
.node-drop {
  position: relative;
  z-index: 1;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--lake-light), var(--moss-dim));
  border: 1px solid rgba(43, 101, 128, 0.7);
  box-shadow: 0 0 8px rgba(43, 101, 128, 0.4);
}
.node-timecode {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}
.node-label {
  font-family: var(--sans);
  font-size: 0.71rem;
  line-height: 1.55;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.timeline-node-current .node-drop {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  border-color: var(--gold-bright);
  box-shadow: 0 0 16px rgba(212, 175, 106, 0.75), 0 0 4px rgba(212, 175, 106, 0.9);
  animation: drop-pulse 2.4s ease-in-out infinite;
}
.timeline-node-current .node-timecode {
  color: var(--gold-bright);
}
.timeline-node-current .node-label {
  color: var(--white);
}
@keyframes drop-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(212, 175, 106, 0.6); }
  50% { box-shadow: 0 0 22px rgba(212, 175, 106, 0.95); }
}
.episodes-section {
  padding: 0.9rem 0 0;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(150deg, rgba(20, 56, 74, 0.5), rgba(14, 36, 48, 0.3));
  border: 1px solid rgba(43, 101, 128, 0.28);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.episode-card:hover {
  border-color: rgba(184, 148, 74, 0.5);
  transform: translateY(-2px);
}
.episode-number {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
}
.episode-title {
  font-family: var(--hand);
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.25;
}
.episode-summary {
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  padding-right: 3.4rem;
}
.episode-duration {
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  align-self: flex-end;
  margin-top: 0.15rem;
}
.episode-illustration {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(74, 107, 93, 0.55);
  background:
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(74, 107, 93, 0.4) 43%, transparent 46%),
    linear-gradient(135deg, rgba(43, 101, 128, 0.25), transparent 70%);
  opacity: 0.75;
  pointer-events: none;
}
.episode-illustration::before, .episode-illustration::after {
  content: "";
  position: absolute;
  background: rgba(74, 107, 93, 0.55);
}
.episode-illustration::before {
  left: 50%;
  top: 16%;
  bottom: 16%;
  width: 1px;
  transform: translateX(-50%);
}
.episode-illustration::after {
  top: 50%;
  left: 16%;
  right: 16%;
  height: 1px;
  transform: translateY(-50%);
}
.comments-section {
  padding: 0.9rem 0 0;
  max-width: 860px;
}
.comment-stream {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.65rem 0.8rem;
  background: rgba(14, 36, 48, 0.38);
  border-left: 2px solid rgba(74, 107, 93, 0.5);
  border-radius: 0 4px 4px 0;
}
.comment-card:nth-child(2n) {
  background: rgba(20, 56, 74, 0.28);
  border-left-color: rgba(43, 101, 128, 0.5);
}
.comment-nickname {
  font-family: var(--hand);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}
.comment-text {
  font-family: var(--sans);
  font-size: 0.73rem;
  line-height: 1.68;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.recommendation-band {
  padding: 0.8rem 0 0;
}
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.55rem;
}
.recommendation-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.45rem;
  background: rgba(14, 36, 48, 0.35);
  border: 1px solid rgba(43, 101, 128, 0.22);
  border-radius: 3px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.recommendation-card:hover {
  border-color: rgba(184, 148, 74, 0.5);
  background: rgba(20, 56, 74, 0.5);
  transform: translateY(-2px);
}
.recommendation-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(10, 26, 36, 0.8);
}
.recommendation-card img, [data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.9);
  transition: filter 0.3s ease;
}
.recommendation-card:hover img {
  filter: saturate(1) brightness(1);
}
.recommendation-name {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommendation-blurb {
  font-family: var(--sans);
  font-size: 0.66rem;
  line-height: 1.55;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.4rem 1.1rem 2rem;
  border-top: 1px solid rgba(43, 101, 128, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-disclaimer {
  font-family: var(--sans);
  font-size: 0.68rem;
  line-height: 1.7;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
  max-width: 80ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-dim);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.7rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(43, 101, 128, 0.2);
}
.friend-links-label {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  flex: 0 0 auto;
}
a.runtime-friend-link {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: var(--ink-faint);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
a.runtime-friend-link:hover {
  color: var(--gold-bright);
}
@media (max-width: 860px) {.overview-hero {
    grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
    gap: 1rem;
  }
.poster-shell {
    max-width: 170px;
  }
.comment-stream {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 640px) {.page-main {
    padding: 0.9rem 0.8rem 2rem;
    gap: 1.3rem;
  }
.header-inner {
    padding: 0.5rem 0.8rem;
    gap: 0.7rem;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 0.9rem;
  }
.poster-shell {
    max-width: 190px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-summary {
    padding-right: 3rem;
  }
.recommendation-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
.comments-section {
    max-width: 100%;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-list {
    padding-bottom: 0.3rem;
  }
.timeline-node {
    width: 152px;
  }
.movie-title {
    font-size: 1.4rem;
  }}
@media (max-width: 420px) {.recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-card {
    width: 116px;
  }
.control-btn {
    font-size: 0.62rem;
    padding: 0.22rem 0.45rem;
  }}
@media (min-width: 1100px) {.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-stream {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (prefers-reduced-motion: reduce) {* {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !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}
