:root {
  --ink: #0b0f0d;
  --ink-2: #101613;
  --ink-3: #161d19;
  --moss: #14211c;
  --moss-2: #1b2c25;
  --moss-3: #22362d;
  --gold: #b9914a;
  --gold-bright: #d9b465;
  --gold-dim: #7d6432;
  --ivory: #e8e0cf;
  --ivory-dim: #b3ab99;
  --ivory-faint: #867f70;
  --line: rgba(185, 145, 74, 0.22);
  --line-soft: rgba(232, 224, 207, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  --serif: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "SimSun", "STSong", serif;
  --sans: "Heiti SC", "PingFang SC", "Noto Sans SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --cond: "Songti SC", "Noto Serif SC", "STSong", serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(1200px 600px at 15% -10%, rgba(185, 145, 74, 0.07), transparent 60%),
    radial-gradient(900px 500px at 95% 8%, rgba(34, 54, 45, 0.55), transparent 65%),
    linear-gradient(180deg, #0b0f0d 0%, #0d1210 40%, #0a0e0c 100%);
  color: var(--ivory);
  font-family: var(--cond);
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, figure {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(9, 13, 11, 0.96), rgba(9, 13, 11, 0.86));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(185, 145, 74, 0.35);
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus {
  color: var(--ivory);
  text-decoration: none;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  flex: 1 1 260px;
}
a.runtime-category {
  white-space: nowrap;
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--ivory-dim);
  text-decoration: none;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.18s ease, border-color 0.18s ease;
}
a.runtime-category:hover, a.runtime-category:focus {
  color: var(--gold-bright);
  border-color: var(--line);
  text-decoration: none;
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  padding: 0 0 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 2px;
  background: var(--gold-bright);
}
.movie-overview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.55fr);
  grid-template-areas:
    "heading heading"
    "poster cast"
    "synopsis synopsis"
    "status details";
  gap: 14px 22px;
  padding: 20px 20px 18px;
  margin-top: 14px;
  background:
    linear-gradient(160deg, rgba(34, 54, 45, 0.62) 0%, rgba(12, 18, 15, 0.9) 55%, rgba(9, 13, 11, 0.98) 100%);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 320px at 8% 0%, rgba(185, 145, 74, 0.16), transparent 70%),
    radial-gradient(420px 300px at 100% 100%, rgba(217, 180, 101, 0.08), transparent 72%);
  pointer-events: none;
}
.overview-heading {
  grid-area: heading;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-soft);
}
.movie-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4.4vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.1em;
  color: var(--ivory);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.7), 0 0 40px rgba(185, 145, 74, 0.18);
}
.movie-tagline {
  margin-top: 6px;
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.overview-poster {
  grid-area: poster;
  position: relative;
  margin: 0;
  align-self: start;
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--line);
  background: #050807;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.overview-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(200deg, rgba(217, 180, 101, 0.16), transparent 42%),
    linear-gradient(0deg, rgba(5, 8, 7, 0.72), transparent 55%);
  pointer-events: none;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.88) contrast(1.1) brightness(0.92);
}
.cast-strip {
  grid-area: cast;
  min-width: 0;
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 6px 7px;
  background: linear-gradient(180deg, rgba(27, 44, 37, 0.7), rgba(11, 15, 13, 0.6));
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--gold-dim);
  border-radius: 2px;
  text-align: center;
  min-width: 0;
}
.cast-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(217, 180, 101, 0.5), transparent 62%),
    linear-gradient(150deg, #24382f 0%, #101815 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.75), 0 4px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 3px;
}
.cast-name {
  font-family: var(--serif);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--ivory);
  line-height: 1.3;
}
.cast-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1.3;
}
.synopsis-block {
  grid-area: synopsis;
  min-width: 0;
}
.synopsis-body {
  columns: 2;
  column-gap: 26px;
  column-rule: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.72;
  color: var(--ivory-dim);
}
.synopsis-body p {
  break-inside: avoid;
  margin-bottom: 8px;
  text-indent: 2em;
}
.synopsis-body p:first-child {
  color: var(--ivory);
}
.synopsis-body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 2.1em;
  float: left;
  line-height: 0.9;
  padding: 2px 6px 0 0;
  color: var(--gold-bright);
}
.episode-status {
  grid-area: status;
  min-width: 0;
}
.status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.status-item {
  flex: 1 1 120px;
  min-width: 0;
  padding: 7px 12px;
  background: rgba(27, 44, 37, 0.5);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.status-item dt {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ivory-faint);
  white-space: nowrap;
}
.status-item dd {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.movie-details {
  grid-area: details;
  min-width: 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted var(--line-soft);
  min-width: 0;
}
.detail-item dt {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ivory-faint);
  white-space: nowrap;
}
.detail-item dd {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  color: var(--ivory);
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
}
.hero {
  position: relative;
  padding: 0;
  margin-top: 2px;
}
.hero-player-slot {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #040705;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.72);
  overflow: hidden;
}
.hero-player-slot video {
  display: block;
  width: 100%;
  background: #000;
}
.player-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  background: linear-gradient(180deg, rgba(22, 29, 25, 0.95), rgba(9, 13, 11, 0.98));
  border-top: 1px solid var(--line);
}
.player-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(34, 54, 45, 0.85), rgba(11, 15, 13, 0.9));
  color: var(--ivory-dim);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.player-btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
}
.player-btn.is-active {
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-color: var(--gold-bright);
  box-shadow: 0 0 12px rgba(217, 180, 101, 0.4);
}
.player-progress {
  flex: 1 1 160px;
  min-width: 90px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dim) 50%, rgba(232, 224, 207, 0.14) 50%);
  border-radius: 2px;
  outline: none;
  margin: 0 4px;
}
.player-progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 1px solid #2a1f0c;
  box-shadow: 0 0 8px rgba(217, 180, 101, 0.7);
  cursor: pointer;
}
.player-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 1px solid #2a1f0c;
  border-radius: 50%;
  background: var(--gold-bright);
  cursor: pointer;
}
.player-volume {
  flex: 0 1 90px;
  min-width: 56px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(232, 224, 207, 0.16);
  border-radius: 2px;
  outline: none;
}
.player-volume::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ivory-dim);
  cursor: pointer;
}
.player-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--ivory-dim);
  cursor: pointer;
}
.player.play, .player.pause, .player.mute, .player.volume, .player.progress, .player.speed, .player.pip, .player.fullscreen, .player.theater, .player.light, .player.click, .player.timeupdate, .player.input {
  transition: opacity 0.2s ease;
}
.hero-player-slot.is-theater {
  box-shadow: 0 0 0 1px var(--gold-bright), 0 20px 60px rgba(0, 0, 0, 0.85);
}
body.lights-off .page-main > section:not(.hero), body.lights-off .site-footer, body.lights-off .site-header {
  opacity: 0.12;
  transition: opacity 0.3s ease;
}
body.lights-off .hero-player-slot {
  box-shadow: 0 0 0 1px var(--gold-bright), 0 0 90px rgba(185, 145, 74, 0.28);
}
.timeline-section {
  min-width: 0;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 22px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  padding: 6px 10px 6px 12px;
  background: linear-gradient(90deg, rgba(27, 44, 37, 0.55), rgba(11, 15, 13, 0.25));
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold-dim);
  min-width: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold-dim));
  box-shadow: 0 0 0 3px rgba(185, 145, 74, 0.14), 0 0 10px rgba(217, 180, 101, 0.5);
}
.timeline-timecode {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  white-space: nowrap;
}
.timeline-label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ivory-dim);
  min-width: 0;
}
.episodes-section {
  min-width: 0;
}
.episode-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) rgba(255, 255, 255, 0.05);
}
.episode-scroll::-webkit-scrollbar {
  height: 7px;
}
.episode-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.episode-scroll::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 4px;
}
.episode-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 250px);
  grid-template-rows: 1fr;
  gap: 8px;
  align-items: stretch;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 11px 10px;
  background: linear-gradient(180deg, rgba(22, 29, 25, 0.9), rgba(9, 13, 11, 0.82));
  border: 1px solid var(--line-soft);
  border-top: 2px solid rgba(185, 145, 74, 0.35);
  border-radius: 2px;
  min-height: 100%;
}
.episode-number {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.episode-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ivory);
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ivory-dim);
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ivory-faint);
  border-top: 1px dotted var(--line-soft);
  padding-top: 4px;
}
.episode-current {
  border: 1px solid var(--gold-bright);
  border-top: 2px solid var(--gold-bright);
  background: linear-gradient(180deg, rgba(38, 58, 48, 0.92), rgba(12, 18, 15, 0.88));
  box-shadow: 0 0 0 1px rgba(217, 180, 101, 0.22), 0 8px 22px rgba(0, 0, 0, 0.55);
}
.episode-current .episode-number {
  color: var(--gold-bright);
}
.episode-current .episode-title {
  color: var(--gold-bright);
  text-shadow: 0 0 16px rgba(217, 180, 101, 0.35);
}
.comments-section {
  min-width: 0;
}
.comment-columns {
  columns: 2;
  column-gap: 12px;
}
.comment-card {
  break-inside: avoid;
  display: block;
  margin: 0 0 8px;
  padding: 8px 11px 9px;
  background: linear-gradient(180deg, rgba(22, 29, 25, 0.75), rgba(9, 13, 11, 0.6));
  border: 1px solid var(--line-soft);
  border-left: 2px solid rgba(185, 145, 74, 0.45);
  border-radius: 2px;
}
.comment-nickname {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 3px;
}
.comment-text {
  font-size: 13px;
  line-height: 1.62;
  color: var(--ivory-dim);
}
.recommendations {
  min-width: 0;
}
.tile-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
a.tile-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px 6px 7px;
  background: linear-gradient(180deg, rgba(22, 29, 25, 0.8), rgba(9, 13, 11, 0.65));
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  color: var(--ivory-dim);
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
a.tile-card:hover, a.tile-card:focus {
  border-color: var(--gold-dim);
  background: linear-gradient(180deg, rgba(34, 54, 45, 0.9), rgba(12, 18, 15, 0.8));
  color: var(--ivory);
  text-decoration: none;
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img, .tile-poster {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: 50% 30%;
  background: #050807;
  border: 1px solid rgba(0, 0, 0, 0.6);
  filter: saturate(0.85) contrast(1.06) brightness(0.9);
}
a.tile-card:hover .tile-poster {
  filter: saturate(1) contrast(1.1) brightness(1);
}
.tile-name {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ivory);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tile-blurb {
  display: block;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ivory-faint);
  overflow: hidden;
}
.closing-scene {
  position: relative;
  margin: 18px 0 26px;
  padding: 46px 22px;
  text-align: center;
  background:
    radial-gradient(560px 220px at 50% 0%, rgba(185, 145, 74, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(9, 13, 11, 0.2), rgba(9, 13, 11, 0.95));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.closing-text {
  font-family: var(--serif);
  font-size: clamp(15px, 2.3vw, 21px);
  letter-spacing: 0.28em;
  line-height: 2;
  color: var(--gold-bright);
  text-shadow: 0 0 26px rgba(185, 145, 74, 0.4);
  max-width: 30em;
  margin: 0 auto;
}
.site-footer {
  background: linear-gradient(180deg, rgba(6, 9, 7, 0.98), #050807);
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-home"]:focus, a[data-contract="footer-sitemap"]:focus {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-dim);
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  padding-top: 6px;
  border-top: 1px solid var(--line-soft);
}
.friend-links-label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-right: 2px;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ivory-faint);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: var(--gold-dim);
  text-underline-offset: 3px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ivory-faint);
  border-top: 1px solid var(--line-soft);
  padding-top: 8px;
  max-width: 90ch;
}
@media (max-width: 1024px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
.tile-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "heading"
      "poster"
      "cast"
      "synopsis"
      "status"
      "details";
  }
.overview-poster {
    max-width: 320px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-columns {
    columns: 1;
  }
.tile-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 640px) {body {
    font-size: 14px;
  }
.header-inner {
    padding: 7px 12px;
    gap: 10px;
  }
.page-main {
    padding: 0 12px;
    gap: 12px;
  }
.movie-overview {
    padding: 14px 13px 14px;
    gap: 12px;
    margin-top: 10px;
  }
.cast-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.status-item {
    flex: 1 1 100%;
  }
.timeline-node {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px;
  }
.episode-grid {
    grid-auto-columns: minmax(200px, 215px);
  }
.tile-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
.closing-scene {
    padding: 34px 14px;
  }
.closing-text {
    letter-spacing: 0.18em;
  }
.footer-inner {
    padding: 14px 12px 20px;
  }}
@media (max-width: 420px) {.cast-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.tile-row {
    grid-template-columns: minmax(0, 1fr);
  }
.player-btn {
    font-size: 11px;
    padding: 4px 7px;
  }}
@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}
