:root {
  --abyss: #101820;
  --cold-blue: #1c2b36;
  --slate: #26343f;
  --iron: #3a4750;
  --mist: #6e7f8a;
  --fog: #a3b1b8;
  --bone: #d8d2c4;
  --parchment: #e6ddc8;
  --parchment-dim: #c9bfa6;
  --dried-red: #8a2f28;
  --dried-red-deep: #5e1e1a;
  --ink: #0b1218;
  --line: rgba(163, 177, 184, 0.22);
  --line-strong: rgba(163, 177, 184, 0.42);
  --font-song: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "STSong", "SimSun", serif;
  --font-hei: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Heiti SC", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: var(--abyss);
  background-image:
    radial-gradient(120% 90% at 12% 0%, rgba(110, 127, 138, 0.20), transparent 60%),
    radial-gradient(90% 70% at 100% 8%, rgba(38, 52, 63, 0.65), transparent 62%),
    linear-gradient(180deg, #131e26 0%, #101820 46%, #0c141b 100%);
  color: var(--fog);
  font-family: var(--font-hei);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(11, 18, 24, 0.94), rgba(11, 18, 24, 0.78));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 7px 16px;
}
a[data-contract="site-name"] {
  font-family: var(--font-song);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--parchment);
  text-decoration: none;
  border-left: 3px solid var(--dried-red);
  padding-left: 9px;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: var(--dried-red);
  text-underline-offset: 4px;
}
.category-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--fog);
  text-decoration: none;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(38, 52, 63, 0.42);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover {
  color: var(--parchment);
  text-decoration: underline;
  text-decoration-color: var(--dried-red);
  border-color: var(--line-strong);
  background: rgba(58, 71, 80, 0.55);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 30px;
}
.hero-figure-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: end;
}
.hero-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--cold-blue);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.9);
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.5) 0%, transparent 26%, transparent 74%, rgba(16, 24, 32, 0.55) 100%),
    linear-gradient(180deg, rgba(28, 43, 54, 0.55) 0%, transparent 34%, transparent 62%, rgba(11, 18, 24, 0.86) 100%);
  mix-blend-mode: multiply;
}
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.82) contrast(1.06) brightness(0.94);
}
.hero-sonar-scale {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  padding: 4px 0 2px;
  border-left: 1px solid var(--line);
}
.hero-sonar-scale::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    var(--line-strong) 0 1px,
    transparent 1px 7px
  );
}
.scale-tick {
  position: relative;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mist);
  padding-left: 9px;
  line-height: 1;
  white-space: nowrap;
}
.scale-tick::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--line-strong);
  transform: translateY(-50%);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}
.movie-title {
  font-family: var(--font-song);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--parchment);
  text-shadow: 0 0 22px rgba(138, 47, 40, 0.28);
}
.movie-tagline {
  font-family: var(--font-song);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--dried-red);
  border-left: 2px solid var(--dried-red);
  padding-left: 9px;
  background: linear-gradient(90deg, rgba(138, 47, 40, 0.14), transparent 70%);
}
.movie-seo-note {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--fog);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  text-align: justify;
}
.episode-status-panel {
  display: flex;
  align-items: center;
}
.status-line {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--parchment);
  background: linear-gradient(90deg, rgba(94, 30, 26, 0.6), rgba(28, 43, 54, 0.7));
  border: 1px solid rgba(138, 47, 40, 0.7);
  padding: 3px 12px;
  border-radius: 2px;
  white-space: nowrap;
}
.quick-specs {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(38, 52, 63, 0.5), rgba(16, 24, 32, 0.35));
  padding: 8px 10px 9px;
}
.specs-heading {
  font-family: var(--font-song);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--parchment-dim);
  padding-bottom: 6px;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--line);
}
.specs-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}
.specs-col {
  padding: 0 10px;
  border-left: 1px solid var(--line);
}
.specs-col:first-child {
  padding-left: 0;
  border-left: 0;
}
.specs-col:last-child {
  padding-right: 0;
}
.specs-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 8px;
  margin: 0;
}
.specs-list dt {
  font-size: 11px;
  color: var(--mist);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.specs-list dd {
  font-size: 11.5px;
  color: var(--bone);
  margin: 0;
  min-width: 0;
}
.cast-strip {
  border-top: 1px solid var(--line);
  padding-top: 7px;
}
.cast-heading {
  font-family: var(--font-song);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--parchment-dim);
  margin-bottom: 6px;
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: flex-start;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 52px;
}
.cast-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background-color: var(--slate);
  background-image:
    radial-gradient(circle at 50% 34%, rgba(163, 177, 184, 0.34) 0 22%, transparent 23%),
    radial-gradient(circle at 50% 92%, rgba(110, 127, 138, 0.42) 0 40%, transparent 41%),
    linear-gradient(180deg, #2c3b46, #1a2630);
  box-shadow: inset 0 0 0 2px rgba(16, 24, 32, 0.7);
  filter: saturate(0.7);
}
.cast-name {
  font-size: 10.5px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--fog);
  text-align: center;
  white-space: nowrap;
}
.synopsis-panel {
  border-top: 1px solid var(--line);
  padding-top: 7px;
}
.synopsis-heading {
  font-family: var(--font-song);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--parchment-dim);
  margin-bottom: 6px;
}
.synopsis-body {
  columns: 2;
  column-gap: 18px;
  column-rule: 1px solid var(--line);
}
.synopsis-para {
  font-size: 12px;
  line-height: 1.74;
  color: var(--fog);
  text-align: justify;
  margin: 0 0 7px;
  break-inside: avoid;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.hero-player-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 4px;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 5px;
}
.hero-player-wrap video {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #000;
  border: 1px solid rgba(58, 71, 80, 0.8);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.player-btn {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fog);
  background: rgba(38, 52, 63, 0.75);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 3px 9px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.player-btn:hover {
  color: var(--parchment);
  border-color: var(--line-strong);
  background: rgba(58, 71, 80, 0.9);
}
.player-btn.is-playing, .player-btn.is-active {
  color: var(--parchment);
  border-color: rgba(138, 47, 40, 0.85);
  background: rgba(94, 30, 26, 0.5);
}
.player-btn.is-muted {
  color: var(--mist);
  border-style: dashed;
}
.player-range {
  flex: 1 1 90px;
  min-width: 70px;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--dried-red), rgba(110, 127, 138, 0.35));
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid var(--dried-red-deep);
}
.player-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid var(--dried-red-deep);
}
.player-select {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--fog);
  background: rgba(38, 52, 63, 0.75);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2px 4px;
  cursor: pointer;
}
.hero-player-wrap.is-theater {
  border-color: rgba(138, 47, 40, 0.8);
  box-shadow: 0 0 0 1px rgba(138, 47, 40, 0.35), 0 22px 50px -28px #000;
}
.hero-player-wrap.is-lights-off {
  background: #000;
  border-color: rgba(138, 47, 40, 0.55);
}
.hero-player-wrap.is-lights-off .player-controls {
  opacity: 0.55;
}
.hero-player-wrap:fullscreen {
  background: #000;
  padding: 0;
}
.timeline-heading, .episodes-heading, .comments-heading, .rec-title {
  font-family: var(--font-song);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--parchment);
}
.timeline-module {
  border-top: 1px solid var(--line-strong);
  padding-top: 9px;
}
.timeline-heading {
  font-size: 14px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.timeline-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px 14px;
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgba(163, 177, 184, 0.55) 0 1px,
    transparent 1px 5px
  );
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  grid-template-areas:
    "dot time"
    "dot label";
  align-items: start;
  column-gap: 6px;
  row-gap: 1px;
  padding: 3px 0;
}
.timeline-dot {
  grid-area: dot;
  position: relative;
  align-self: start;
  justify-self: start;
  width: 9px;
  height: 9px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--dried-red) 0 28%, transparent 29%),
    repeating-radial-gradient(circle at 50% 50%, rgba(138, 47, 40, 0.85) 0 1px, transparent 1px 2px),
    rgba(94, 30, 26, 0.55);
  border: 1px solid rgba(138, 47, 40, 0.9);
  box-shadow: 0 0 0 1px rgba(16, 24, 32, 0.9), 0 0 8px rgba(138, 47, 40, 0.4);
}
.timeline-time {
  grid-area: time;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--parchment);
  white-space: nowrap;
}
.timeline-label {
  grid-area: label;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--mist);
  min-width: 0;
}
.episodes-module {
  border-top: 1px solid var(--line-strong);
  padding-top: 9px;
}
.episodes-heading {
  font-size: 14px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.episodes-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px 9px;
  background:
    linear-gradient(160deg, rgba(38, 52, 63, 0.72), rgba(16, 24, 32, 0.5));
  border: 1px solid var(--line);
  border-left: 2px solid rgba(110, 127, 138, 0.55);
  transition: border-color 0.15s, background 0.15s;
}
.episode-card:hover {
  border-left-color: var(--dried-red);
  background:
    linear-gradient(160deg, rgba(48, 64, 76, 0.82), rgba(16, 24, 32, 0.55));
}
.episode-number {
  font-family: var(--font-song);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--dried-red);
}
.episode-title {
  font-family: var(--font-song);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--parchment);
  line-height: 1.25;
}
.episode-hook {
  font-size: 11.5px;
  line-height: 1.58;
  color: var(--fog);
  text-align: justify;
}
.episode-duration {
  align-self: flex-start;
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--mist);
  border-top: 1px dashed var(--line);
  padding-top: 3px;
  width: 100%;
}
.comments-module {
  border-top: 1px solid var(--line-strong);
  padding-top: 9px;
}
.comments-heading {
  font-size: 14px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.comments-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  align-items: start;
}
.comment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px 8px;
  background: linear-gradient(180deg, rgba(230, 221, 200, 0.07), rgba(16, 24, 32, 0.42));
  border: 1px solid var(--line);
  box-shadow: 0 2px 0 rgba(94, 30, 26, 0.22);
}
.comment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--dried-red), transparent);
  opacity: 0.7;
}
.comment-nick {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--parchment);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.58;
  color: var(--fog);
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comment-toggle {
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--mist);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  padding-bottom: 1px;
}
.comment-toggle:hover {
  color: var(--parchment);
  border-bottom-color: var(--dried-red);
}
.rec-region {
  border-top: 1px solid var(--line-strong);
  padding-top: 9px;
}
.rec-title {
  font-size: 14px;
  margin-bottom: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  display: block;
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
a.rec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  color: var(--fog);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(38, 52, 63, 0.55), rgba(16, 24, 32, 0.35));
  border: 1px solid var(--line);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
a.rec-item:hover {
  color: var(--parchment);
  text-decoration: underline;
  text-decoration-color: var(--dried-red);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(48, 64, 76, 0.7), rgba(16, 24, 32, 0.4));
  transform: translateY(-1px);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(58, 71, 80, 0.85);
  filter: saturate(0.78) contrast(1.05) brightness(0.95);
}
.rec-name {
  font-family: var(--font-song);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--parchment);
  line-height: 1.3;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.5;
  color: var(--mist);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(11, 18, 24, 0.6), rgba(8, 13, 18, 0.95));
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.65;
  color: var(--mist);
  text-align: justify;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--fog);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--parchment);
  text-decoration: underline;
  text-decoration-color: var(--dried-red);
  border-bottom-color: var(--dried-red);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.friend-links-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--parchment-dim);
  white-space: nowrap;
  border-right: 1px solid var(--line);
  padding-right: 10px;
}
a.runtime-friend-link {
  font-size: 11px;
  color: var(--mist);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px dotted var(--line-strong);
  padding-bottom: 1px;
}
a.runtime-friend-link:hover {
  color: var(--parchment);
  text-decoration: underline;
  text-decoration-color: var(--dried-red);
  border-bottom-color: var(--dried-red);
}
@media (max-width: 1024px) {.hero-stage {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 14px;
  }
.episodes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.hero-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 20px;
  }
.hero-figure-shell {
    grid-template-columns: minmax(0, 1fr) 40px;
  }
.hero-figure {
    max-width: 460px;
    margin: 0 auto;
  }
.hero-copy {
    width: 100%;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.episodes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 640px) {body {
    font-size: 12.5px;
  }
.header-inner {
    padding: 6px 12px;
  }
.page-main {
    padding: 10px 12px 30px;
    gap: 13px;
  }
.movie-title {
    font-size: 23px;
  }
.specs-table {
    grid-template-columns: minmax(0, 1fr);
  }
.specs-col {
    padding: 7px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
.specs-col:first-child {
    padding-top: 0;
    border-top: 0;
  }
.specs-list {
    grid-template-columns: auto minmax(0, 1fr);
  }
.timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.player-range {
    flex: 1 1 100%;
  }
.footer-inner {
    padding: 12px 12px 18px;
  }}
@media (max-width: 420px) {.cast-item {
    width: 46px;
  }
.cast-thumb {
    width: 36px;
    height: 36px;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.scale-tick {
    font-size: 9px;
  }
.hero-figure-shell {
    grid-template-columns: minmax(0, 1fr) 34px;
  }}

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}
