:root {
  --bg: #080c18;
  --bg-2: #0d1324;
  --bg-3: #111a30;
  --line: #1d2742;
  --line-soft: #161f36;
  --text: #cfd6e4;
  --text-dim: #8b95ab;
  --text-faint: #5d6884;
  --gold: #b8933f;
  --gold-dim: #8a6f30;
  --amber: #e2542a;
  --amber-soft: #ff6a3d;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", Menlo, Consolas, "Liberation Mono", monospace;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: saturate(0.62) brightness(0.94) contrast(1.06) hue-rotate(-8deg);
}
button, input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
::selection {
  background: var(--amber);
  color: #0a0e1a;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 12, 24, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding: 8px 16px;
  max-width: 1440px;
  margin: 0 auto;
}
a[data-contract="site-name"] {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 2px solid var(--amber);
  padding-left: 8px;
  line-height: 1.15;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #fff;
  border-left-color: var(--gold);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
a.header-nav-link {
  display: inline-block;
  padding: 5px 11px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.header-nav-link:hover, a.header-nav-link:focus-visible {
  color: var(--text);
  background: var(--bg-3);
  border-color: var(--line);
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  padding: 6px 16px 7px;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: var(--bg-2);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: #0a0e1a;
  background: var(--gold);
  border-color: var(--gold);
}
.page-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px 26px;
}
.section-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 1px;
  background: var(--amber);
}
.section-heading--cast::before, .section-heading--status::before {
  background: var(--gold);
}
.movie-overview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
}
.overview-stage {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-2);
  min-height: 300px;
  overflow: hidden;
}
.stage-poster-column {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 7px;
  background: #05080f;
  border-right: 1px solid var(--line);
}
.poster-media {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #05080f;
  border: 1px solid var(--line-soft);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-side-still {
  position: relative;
  flex: 1 1 0;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(10, 16, 30, 0.15), rgba(6, 9, 18, 0.95)),
    repeating-linear-gradient(90deg, #131c33 0 1px, #0b1120 1px 4px),
    radial-gradient(120% 90% at 60% 25%, #2b3a5c 0%, #0a0f1c 72%);
  display: flex;
  align-items: flex-end;
}
.poster-side-still--upper {
  background-position: 0 0, 0 0, center;
}
.poster-side-still--lower {
  background-position: 0 0, 0 0, 72% 60%;
}
.side-still-label {
  display: block;
  width: 100%;
  padding: 3px 6px;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--text);
  background: linear-gradient(0deg, rgba(5, 8, 15, 0.92), rgba(5, 8, 15, 0));
  text-shadow: 0 1px 3px #000;
}
.stage-rehearsal-column {
  position: relative;
  min-height: 300px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  background:
    linear-gradient(0deg, rgba(4, 7, 14, 0.96) 0%, rgba(6, 10, 20, 0.55) 42%, rgba(8, 14, 26, 0.18) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 3px),
    radial-gradient(115% 85% at 68% 30%, #33486d 0%, #1a2742 44%, #080d18 100%);
}
.stage-rehearsal-column::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(226, 84, 42, 0.07), transparent 22%),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(180, 200, 235, 0.045) 78px 79px);
}
.stage-timecode {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--amber-soft);
  text-shadow: 0 0 8px rgba(226, 84, 42, 0.5);
}
.stage-tagline {
  position: relative;
  z-index: 1;
  max-width: 30ch;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.16em;
  color: #e6ebf4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}
.overview-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
  padding: 2px 0 8px;
  border-bottom: 1px solid var(--line);
}
.movie-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #eef2f8;
}
.movie-tagline {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  font-weight: 300;
}
.overview-player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #04060c;
  border: 1px solid var(--line);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.overview-player-shell.is-theater {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(226, 84, 42, 0.35), 0 12px 40px rgba(0, 0, 0, 0.7);
}
.overview-player-shell.is-lights-off {
  background: #000;
}
.overview-player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 7px;
  padding: 7px 9px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.player-button {
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 1px;
  white-space: nowrap;
  transition: color 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}
.player-button:hover, .player-button:focus-visible {
  color: var(--text);
  border-color: var(--gold-dim);
}
.player-button--play {
  color: #0a0e1a;
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 700;
  min-width: 58px;
}
.player-button--play:hover, .player-button--play:focus-visible {
  background: #d3a94b;
  border-color: #d3a94b;
  color: #0a0e1a;
}
.overview-player-shell.is-playing .player-button--play {
  background: var(--amber);
  border-color: var(--amber);
  color: #12060a;
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: #26314f;
  border-radius: 0;
  outline: none;
}
.player-range--progress {
  flex: 1 1 160px;
  min-width: 120px;
}
.player-range--volume {
  flex: 0 1 84px;
  min-width: 60px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 13px;
  background: var(--amber);
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.player-range::-moz-range-thumb {
  width: 9px;
  height: 13px;
  background: var(--amber);
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.player-range--volume::-webkit-slider-thumb {
  background: var(--gold);
}
.player-range--volume::-moz-range-thumb {
  background: var(--gold);
}
.overview-player-shell.is-muted .player-range--volume {
  opacity: 0.45;
}
.overview-player-shell.is-speed .player-button[data-player-action="speed"] {
  color: var(--amber-soft);
  border-color: var(--amber);
}
.overview-player-shell.is-pip .player-button[data-player-action="pip"], .overview-player-shell.is-theater .player-button[data-player-action="theater"], .overview-player-shell.is-lights-off .player-button[data-player-action="light"] {
  color: var(--amber-soft);
  border-color: var(--amber);
}
.player.is-playing .pause, .player.is-playing .play, .is-playing .play, .is-muted .volume, .is-muted .mute, .is-speed .speed, .is-pip .pip, .is-theater .theater, .is-lights-off .light, .player .progress, .player .timeupdate, .player .input, .click, .x, .fullscreen .x {
  display: none;
}
.is-playing .pause, .is-muted .mute {
  display: inline-block;
}
.cast-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 10px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.cast-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 84px;
  padding: 9px 10px 10px;
  background: var(--bg-2);
  border-top: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cast-card:hover {
  background: var(--bg-3);
  border-top-color: var(--gold);
}
.cast-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #e9eef7;
}
.cast-role-note {
  display: block;
  font-size: 11.5px;
  line-height: 1.42;
  color: var(--text-dim);
  border-top: 1px solid var(--line-soft);
  padding-top: 6px;
}
.synopsis-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 10px;
}
.synopsis-columns {
  column-count: 2;
  column-gap: 22px;
  column-rule: 1px solid var(--line-soft);
}
.synopsis-paragraph {
  break-inside: avoid;
  font-size: 13px;
  line-height: 1.46;
  color: #b9c2d3;
  margin-bottom: 8px;
  text-align: justify;
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
}
.episode-status {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 10px;
}
.episode-status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.status-current {
  color: var(--amber);
  font-weight: 700;
}
.status-divider {
  color: var(--text-faint);
}
.status-total {
  color: var(--text-dim);
}
.episode-status-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 7px;
}
.status-chip {
  display: inline-block;
  padding: 3px 9px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 1px;
}
.details-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 10px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 10px;
  background: var(--bg-2);
}
.details-key {
  flex: 0 0 auto;
  min-width: 56px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}
.details-value {
  flex: 1 1 auto;
  font-size: 12.5px;
  color: #c3cbdb;
}
.details-seo {
  margin-top: 9px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.46;
  color: var(--text-faint);
  background: var(--bg-2);
  border-left: 2px solid var(--gold-dim);
}
.timeline-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 14px;
}
.film-track {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 12px;
  background:
    repeating-linear-gradient(90deg, rgba(226, 84, 42, 0.06) 0 2px, transparent 2px 14px) top left / 100% 5px no-repeat,
    repeating-linear-gradient(90deg, rgba(180, 200, 235, 0.05) 0 2px, transparent 2px 14px) bottom left / 100% 5px no-repeat,
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--amber) #0b1120;
}
.film-track::-webkit-scrollbar {
  height: 7px;
}
.film-track::-webkit-scrollbar-track {
  background: #0b1120;
}
.film-track::-webkit-scrollbar-thumb {
  background: var(--amber);
}
.film-track-strip {
  display: flex;
  align-items: stretch;
  gap: 1px;
  min-width: max-content;
  padding: 0 10px;
}
.film-frame {
  position: relative;
  flex: 0 0 auto;
  width: 224px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 9px 9px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
}
.film-frame-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 auto;
  min-width: 0;
}
.film-timecode {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.film-label {
  display: block;
  font-size: 11.5px;
  line-height: 1.42;
  color: #aab4c7;
}
.film-thumb {
  flex: 0 0 auto;
  width: 54px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #05080f;
  border: 1px solid var(--line-soft);
}
.film-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0) brightness(0.9) contrast(1.1);
}
.film-frame--current {
  background: #1a1520;
  border-color: var(--amber);
  border-top-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(226, 84, 42, 0.28);
}
.film-frame--current .film-timecode {
  color: var(--amber-soft);
}
.film-frame--current .film-label {
  color: #e2e8f3;
}
.film-frame--current .film-thumb-image {
  filter: grayscale(0.72) saturate(0.5) brightness(0.95) contrast(1.08);
}
.film-cursor {
  position: absolute;
  top: -9px;
  left: 9px;
  padding: 1px 7px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: #14070a;
  background: var(--amber);
  white-space: nowrap;
  font-weight: 700;
}
.episodes-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 14px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px 10px 10px;
  background: var(--bg-2);
  border-left: 2px solid transparent;
}
.episode-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 8px;
}
.episode-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #cfd6e4;
  white-space: nowrap;
}
.episode-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #aeb8ca;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.44;
  color: var(--text-dim);
}
.episode-duration {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.episode-card--released .episode-number {
  color: var(--gold);
}
.episode-card--current {
  background: #1a1520;
  border-left-color: var(--amber);
}
.episode-card--current .episode-number {
  color: var(--amber-soft);
  font-weight: 700;
}
.episode-card--current .episode-title {
  color: #eef2f8;
  font-weight: 600;
}
.episode-card--pending {
  opacity: 0.46;
}
.episode-card--pending .episode-number {
  color: var(--text-faint);
  font-weight: 400;
}
.episode-card--pending .episode-summary {
  color: var(--text-faint);
}
.episode-flag {
  align-self: flex-start;
  margin-top: 4px;
  padding: 1px 7px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: #14070a;
  background: var(--amber);
  font-weight: 700;
}
.comments-section {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}
.comment-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 900px;
}
.comment-bubble {
  position: relative;
  padding: 8px 11px 9px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  max-width: 78%;
}
.comment-bubble--left {
  align-self: flex-start;
  border-left: 2px solid var(--gold-dim);
}
.comment-bubble--right {
  align-self: flex-end;
  background: var(--bg-3);
  border-right: 2px solid var(--line);
  text-align: left;
}
.comment-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.comment-nickname {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.46;
  color: #a9b3c7;
}
.recommend-region {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 14px;
}
.recommend-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #dde3ee;
  padding-bottom: 4px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--gold-dim);
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 8px;
  align-items: start;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
a.recommend-item:hover, a.recommend-item:focus-visible {
  border-color: var(--amber);
  background: var(--bg-3);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #05080f;
  border: 1px solid var(--line-soft);
}
.recommend-pic {
  display: block;
}
.recommend-name {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #dbe2ee;
  line-height: 1.35;
}
a.recommend-item:hover .recommend-name {
  color: var(--amber-soft);
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--text-dim);
}
.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 16px 26px;
  border-top: 1px solid var(--line);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  margin-bottom: 9px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-bottom: 10px;
}
.friend-links-label {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
}
a.runtime-friend-link {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #7e8aa2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.14s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.48;
  color: var(--text-faint);
  max-width: 78ch;
  border-top: 1px solid var(--line-soft);
  padding-top: 9px;
}
@media (max-width: 1100px) {.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.overview-stage {
    grid-template-columns: 168px minmax(0, 1fr);
    min-height: 260px;
  }
.stage-rehearsal-column {
    min-height: 260px;
  }
.stage-tagline {
    font-size: 17px;
    letter-spacing: 0.12em;
  }
.movie-title {
    font-size: 21px;
  }
.synopsis-columns {
    column-count: 1;
    column-rule: 0;
  }}
@media (max-width: 680px) {body {
    font-size: 13.5px;
  }
.page-main {
    padding: 0 11px 20px;
  }
.header-bar {
    padding: 8px 11px;
  }
.category-strip {
    padding: 6px 11px 7px;
  }
.overview-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }
.stage-poster-column {
    flex-direction: row;
    align-items: stretch;
    gap: 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
.poster-media {
    flex: 0 0 42%;
    max-width: 190px;
    aspect-ratio: 2 / 3;
  }
.poster-side-still {
    min-height: 0;
    flex: 1 1 0;
  }
.stage-rehearsal-column {
    min-height: 168px;
    padding: 11px 12px;
  }
.stage-tagline {
    font-size: 15px;
    max-width: 100%;
  }
.overview-headline {
    gap: 3px 10px;
  }
.movie-title {
    font-size: 18px;
  }
.movie-tagline {
    font-size: 11.5px;
    letter-spacing: 0.14em;
  }
.player-controls {
    gap: 4px 5px;
    padding: 6px 7px;
  }
.player-button {
    padding: 3px 8px;
    font-size: 11.5px;
  }
.player-range--progress {
    flex: 1 1 100%;
    order: -1;
  }
.player-range--volume {
    flex: 1 1 60px;
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-card {
    min-height: 0;
  }
.episode-grid {
    grid-template-columns: 1fr;
  }
.details-list {
    grid-template-columns: 1fr;
  }
.film-frame {
    width: 200px;
  }
.comment-bubble {
    max-width: 94%;
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 6px;
  }
.site-footer {
    padding: 12px 11px 22px;
  }}
@media (max-width: 400px) {.cast-grid {
    grid-template-columns: 1fr;
  }
.film-frame {
    width: 178px;
  }
.recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}

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}
