:root {
  --ink: #0b0a09;
  --coal: #141210;
  --coal-2: #1c1917;
  --rust: #8c2f16;
  --rust-bright: #b8431f;
  --rust-deep: #5e1d0d;
  --sand: #c8a260;
  --sand-dim: #8d7444;
  --ash: #6d6a66;
  --cold: #8a8f96;
  --paper: #e3d8c4;
  --line: rgba(200, 162, 96, 0.22);
  --line-strong: rgba(184, 67, 31, 0.5);
  --cut: 10px;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(140, 47, 22, 0.22), transparent 60%),
    linear-gradient(180deg, #100e0c 0%, #0b0a09 40%, #0b0a09 100%);
  color: var(--paper);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-stretch: condensed;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol, dl, dd, figure, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #161311 0%, #100e0c 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--rust) 0%, var(--rust-deep) 30%, transparent 70%, var(--sand-dim) 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 16px;
  max-width: 1440px;
  margin: 0 auto;
}
a[data-contract="site-name"].brand-mark {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  padding: 2px 12px 2px 10px;
  background: linear-gradient(120deg, rgba(140, 47, 22, 0.55), rgba(94, 29, 13, 0.15));
  border-left: 3px solid var(--rust-bright);
  clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
  white-space: nowrap;
}
a[data-contract="site-name"].brand-mark:hover, a[data-contract="site-name"].brand-mark:focus-visible {
  color: #f0e2c6;
  background: linear-gradient(120deg, rgba(184, 67, 31, 0.7), rgba(140, 47, 22, 0.25));
}
.category-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--cold);
  text-decoration: none;
  padding: 4px 11px;
  border: 1px solid var(--line);
  background: rgba(28, 25, 23, 0.75);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: #f2e5c9;
  border-color: var(--line-strong);
  background: rgba(140, 47, 22, 0.4);
}
.page-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 16px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  grid-template-areas:
    "back lede"
    "player lede"
    "over over";
  gap: 16px 22px;
  padding: 18px;
  position: relative;
  background:
    linear-gradient(160deg, rgba(28, 25, 23, 0.92), rgba(16, 14, 12, 0.96)),
    radial-gradient(90% 70% at 12% 0%, rgba(140, 47, 22, 0.3), transparent 65%);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.hero-backdrop {
  grid-area: back;
  position: relative;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(200, 162, 96, 0.3);
  background: #0d0b0a;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-height: 62vh;
  overflow: hidden;
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.82) contrast(1.08) brightness(0.86);
}
.hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(200deg, rgba(140, 47, 22, 0.42) 0%, transparent 42%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.94) 4%, rgba(11, 10, 9, 0.1) 46%),
    radial-gradient(70% 45% at 30% 82%, rgba(200, 162, 96, 0.22), transparent 70%);
  mix-blend-mode: multiply;
}
.hero-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    118deg,
    rgba(255, 226, 180, 0.05) 0px,
    rgba(255, 226, 180, 0.05) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: overlay;
}
.hero-lede {
  grid-area: lede;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 2px 2px 2px 14px;
  border-left: 2px solid var(--rust);
}
.movie-title {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.04;
  color: #f4e6c8;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 0 26px rgba(184, 67, 31, 0.5);
  background-image: repeating-linear-gradient(
    92deg,
    rgba(0, 0, 0, 0.28) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(255, 255, 255, 0.04) 3px,
    rgba(0, 0, 0, 0) 5px
  );
  -webkit-background-clip: text;
  background-clip: text;
}
.movie-tagline {
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--sand);
  text-transform: none;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.movie-seo {
  font-size: 13px;
  line-height: 1.85;
  color: #b9b1a4;
  max-width: 62ch;
}
.player-shell {
  grid-area: player;
  position: relative;
  align-self: start;
  width: 100%;
  background: #080706;
  border: 1px solid rgba(200, 162, 96, 0.28);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.8), 0 14px 34px rgba(0, 0, 0, 0.6);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.player-video {
  display: block;
  background: #000;
}
.player-console {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.96), rgba(14, 12, 11, 0.98));
  border-top: 1px solid var(--line);
}
.console-btn {
  appearance: none;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  color: #d8cbb2;
  background: linear-gradient(180deg, #262220, #171412);
  border: 1px solid var(--line);
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.console-btn:hover, .console-btn:focus-visible {
  color: #fff0d2;
  border-color: var(--line-strong);
}
.console-btn.is-active, .console-btn.play, .console-btn.click {
  color: #ffe6c4;
  background: linear-gradient(180deg, var(--rust-bright), var(--rust-deep));
  border-color: var(--rust-bright);
}
.console-range {
  appearance: none;
  -webkit-appearance: none;
  flex: 1 1 130px;
  min-width: 96px;
  height: 6px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--rust-bright), var(--sand-dim));
  border: 1px solid rgba(0, 0, 0, 0.7);
}
.console-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 16px;
  background: #f0dcb6;
  border: 1px solid #4a3a22;
  clip-path: polygon(50% 0, 100% 22%, 100% 78%, 50% 100%, 0 78%, 0 22%);
}
.console-range::-moz-range-thumb {
  width: 12px;
  height: 16px;
  border-radius: 0;
  background: #f0dcb6;
  border: 1px solid #4a3a22;
}
.console-range--volume {
  flex: 0 1 84px;
  min-width: 64px;
  background: linear-gradient(90deg, var(--cold), #3b3a38);
}
.console-select {
  appearance: none;
  cursor: pointer;
  font-size: 12px;
  padding: 5px 20px 5px 9px;
  color: #d8cbb2;
  background:
    linear-gradient(45deg, transparent 50%, var(--sand-dim) 50%) calc(100% - 12px) 12px / 5px 5px no-repeat,
    linear-gradient(135deg, var(--sand-dim) 50%, transparent 50%) calc(100% - 7px) 12px / 5px 5px no-repeat,
    linear-gradient(180deg, #262220, #171412);
  border: 1px solid var(--line);
}
.console-select:hover, .console-select:focus-visible {
  border-color: var(--line-strong);
}
body.theater-mode .player-shell, .player-shell.theater {
  position: relative;
  z-index: 5;
  box-shadow: 0 0 0 1px var(--rust), 0 26px 60px rgba(0, 0, 0, 0.85);
}
body.lights-off .page-main {
  filter: brightness(0.42) saturate(0.7);
}
body.lights-off .player-shell {
  filter: brightness(1.06);
}
.overview-columns {
  grid-area: over;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr) minmax(0, 0.85fr);
  grid-template-areas:
    "cast synopsis status"
    "cast synopsis details";
  align-items: start;
  gap: 12px 18px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.cast-strip {
  grid-area: cast;
  min-width: 0;
}
.cast-heading, .synopsis-heading, .status-heading, .details-heading, .section-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--sand);
  padding-left: 10px;
  border-left: 3px solid var(--rust);
  margin-bottom: 9px;
  text-transform: none;
}
.cast-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cast-chip {
  flex: 0 0 auto;
  width: 76px;
}
.cast-figure {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cast-avatar {
  width: 76px;
  height: 76px;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.5) contrast(1.12) brightness(0.9);
  border: 1px solid rgba(200, 162, 96, 0.34);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
.cast-name {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #cdc2ae;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.synopsis-panel {
  grid-area: synopsis;
  min-width: 0;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.78;
  color: #b6ac9c;
}
.synopsis-para:first-child {
  color: #ddd0b6;
}
.episode-status-panel {
  grid-area: status;
  align-self: start;
  padding: 10px 12px;
  background: linear-gradient(150deg, rgba(140, 47, 22, 0.26), rgba(20, 18, 16, 0.9));
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ash);
}
.status-label {
  letter-spacing: 0.12em;
  color: var(--ash);
}
.status-value {
  font-weight: 800;
  font-size: 16px;
  color: #f1dfbe;
}
.status-divider {
  color: var(--rust-bright);
}
.status-bar {
  margin-top: 9px;
  height: 7px;
  background: #211d1a;
  border: 1px solid rgba(0, 0, 0, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.status-bar-fill {
  width: 66.6%;
  height: 100%;
  background: repeating-linear-gradient(
    115deg,
    var(--rust-bright) 0px,
    var(--rust-bright) 6px,
    var(--rust-deep) 6px,
    var(--rust-deep) 11px
  );
}
.details-panel {
  grid-area: details;
  align-self: start;
  min-width: 0;
}
.details-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3.5px 6px;
  border-bottom: 1px dashed rgba(200, 162, 96, 0.16);
}
.details-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.022);
}
.details-key {
  flex: 0 0 62px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ash);
}
.details-val {
  font-size: 12.5px;
  color: #ded2ba;
  min-width: 0;
}
.timeline-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.timeline-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--rust-deep) #14110f;
  scrollbar-width: thin;
}
.timeline-scroller::-webkit-scrollbar {
  height: 7px;
}
.timeline-scroller::-webkit-scrollbar-track {
  background: #14110f;
}
.timeline-scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--rust), var(--rust-deep));
}
.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  padding: 14px 4px 6px;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 186px;
  padding: 12px 12px 12px 16px;
  margin-right: 14px;
  background: linear-gradient(160deg, rgba(30, 26, 23, 0.95), rgba(16, 14, 12, 0.95));
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rust-bright), var(--rust-deep));
}
.timeline-node::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sand-dim) 0 3px, transparent 3px 6px);
  transform: translateY(-50%);
}
.timeline-node:last-child::after {
  display: none;
}
.node-timecode {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--rust-bright);
  font-weight: 700;
}
.node-label {
  font-size: 13px;
  line-height: 1.55;
  color: #d5c9b2;
}
.episodes-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num summary"
    "num dur";
  align-items: start;
  gap: 2px 10px;
  padding: 9px 12px 9px 10px;
  background: linear-gradient(140deg, rgba(26, 23, 21, 0.92), rgba(15, 13, 12, 0.92));
  border: 1px solid rgba(200, 162, 96, 0.16);
  border-left: 3px solid rgba(109, 106, 102, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.episode-number {
  grid-area: num;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ash);
  writing-mode: vertical-rl;
  padding-top: 2px;
  align-self: start;
}
.episode-title {
  grid-area: title;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #eadfc6;
}
.episode-summary {
  grid-area: summary;
  font-size: 12.5px;
  line-height: 1.68;
  color: #a99f90;
}
.episode-duration {
  grid-area: dur;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--sand-dim);
}
.episode-card--current {
  background: linear-gradient(140deg, rgba(140, 47, 22, 0.5), rgba(58, 20, 10, 0.75));
  border-color: var(--line-strong);
  border-left-color: var(--rust-bright);
  box-shadow: 0 0 0 1px rgba(184, 67, 31, 0.28), 0 10px 24px rgba(0, 0, 0, 0.5);
}
.episode-card--current .episode-number, .episode-card--current .episode-duration {
  color: #f0c79a;
}
.episode-card--current .episode-title {
  color: #fff2d8;
}
.episode-card--current .episode-summary {
  color: #e2cfb2;
}
.comments-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.comments-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  background: linear-gradient(160deg, rgba(28, 25, 23, 0.94), rgba(15, 13, 12, 0.94));
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.comment-card--offset-a {
  margin-top: 0;
}
.comment-card--offset-b {
  margin-top: 16px;
  border-left: 3px solid var(--rust);
}
.comment-card--offset-c {
  margin-top: 32px;
  background: linear-gradient(160deg, rgba(38, 30, 25, 0.95), rgba(18, 14, 12, 0.95));
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px dashed rgba(200, 162, 96, 0.2);
}
.comment-nickname {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--sand);
}
.comment-nickname::before {
  content: "/// ";
  color: var(--rust-bright);
  letter-spacing: 0;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.75;
  color: #b3a998;
}
.recommend-region {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.recommend-grid {
  display: grid;
  gap: 12px;
  align-items: start;
}
.recommend-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.recommend-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.recommend-item {
  min-width: 0;
}
a.recommend-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  color: #c9bda6;
  text-decoration: none;
  background: linear-gradient(150deg, rgba(26, 23, 21, 0.92), rgba(14, 12, 11, 0.92));
  border: 1px solid rgba(200, 162, 96, 0.18);
  border-top: 2px solid rgba(140, 47, 22, 0.6);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
a.recommend-link:hover, a.recommend-link:focus-visible {
  color: #f2e4c8;
  border-color: var(--line-strong);
  background: linear-gradient(150deg, rgba(58, 28, 16, 0.85), rgba(20, 14, 11, 0.95));
}
[data-runtime="recommendation"] img.recommend-pic {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.08) brightness(0.86);
  border: 1px solid rgba(0, 0, 0, 0.7);
}
.recommend-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ecdfc4;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.62;
  color: #9d9486;
}
.site-footer {
  margin-top: 8px;
  padding: 16px;
  background: linear-gradient(180deg, #100e0c, #0a0908);
  border-top: 1px solid var(--line);
}
.site-footer::before {
  content: "";
  display: block;
  height: 2px;
  margin: -16px -16px 14px;
  background: repeating-linear-gradient(115deg, var(--rust) 0 10px, transparent 10px 18px);
}
.friend-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(200, 162, 96, 0.16);
}
.friend-label {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--rust-bright);
  font-weight: 800;
  white-space: nowrap;
}
.friend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  min-width: 0;
}
a.runtime-friend-link {
  font-size: 12px;
  color: var(--cold);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--sand);
  border-bottom-color: var(--sand-dim);
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1440px;
  margin: 10px auto 0;
}
a[data-contract="footer-home"].footer-link, a[data-contract="footer-sitemap"].footer-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #b0a693;
  text-decoration: none;
  padding: 3px 10px;
  border: 1px solid rgba(200, 162, 96, 0.2);
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}
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: #f0e0c0;
  border-color: var(--line-strong);
}
.footer-disclaimer {
  max-width: 1440px;
  margin: 12px auto 0;
  font-size: 11.5px;
  line-height: 1.7;
  color: #6f6a62;
}
@media (max-width: 1080px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "back"
      "lede"
      "player"
      "over";
  }
.poster-frame {
    max-height: 56vh;
  }
.overview-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "cast synopsis"
      "status details";
  }
.comments-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-card--offset-b {
    margin-top: 0;
  }
.comment-card--offset-c {
    margin-top: 14px;
  }}
@media (max-width: 820px) {.recommend-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 640px) {body {
    font-size: 14px;
  }
.page-main {
    padding: 10px 10px 20px;
    gap: 16px;
  }
.header-inner {
    gap: 10px;
    padding: 7px 10px;
  }
.hero-shell {
    padding: 12px;
    gap: 12px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  }
.poster-frame {
    max-height: none;
  }
.hero-lede {
    padding-left: 10px;
  }
.movie-title {
    font-size: clamp(26px, 9vw, 38px);
  }
.overview-columns {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "cast"
      "synopsis"
      "status"
      "details";
  }
.cast-chip, .cast-avatar {
    width: 66px;
  }
.cast-avatar {
    height: 66px;
  }
.comments-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card--offset-a, .comment-card--offset-b, .comment-card--offset-c {
    margin-top: 0;
  }
.recommend-grid--three {
    grid-template-columns: minmax(0, 1fr);
  }
.console-range {
    flex: 1 1 100%;
  }
.console-range--volume {
    flex: 1 1 60%;
  }}
@media (max-width: 420px) {.cast-chip, .cast-avatar {
    width: 58px;
  }
.cast-avatar {
    height: 58px;
  }
.timeline-node {
    width: 164px;
  }}
@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}
