:root {
  --ink: #0d1b24;
  --ink-soft: #2c3f4d;
  --muted: #6b8291;
  --line: #ccd9e0;
  --line-soft: #e2ebf0;
  --surface: #f4f8fa;
  --surface-2: #e8f0f4;
  --white: #ffffff;
  --cyan: #24d6c8;
  --cyan-deep: #0e9c92;
  --alert: #e5384a;
  --alert-deep: #b62230;
  --blue-steel: #587a8c;
  --blue-dark: #17323f;
  --shadow: 0 1px 0 rgba(23, 50, 63, 0.06), 0 8px 22px -14px rgba(23, 50, 63, 0.4);
  --radius: 4px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li, figure {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: var(--blue-steel);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.page-shell {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(180deg, #0e2530 0, #0e2530 420px, var(--surface) 420px, var(--surface) 100%);
  overflow-x: hidden;
}
.site-header {
  position: relative;
  z-index: 30;
  background: rgba(9, 26, 34, 0.92);
  border-bottom: 1px solid rgba(36, 214, 200, 0.22);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
}
.brand-mark {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  padding-left: 14px;
  position: relative;
  white-space: nowrap;
}
.brand-mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(36, 214, 200, 0.7);
}
a[data-contract="site-name"] {
  color: var(--white);
  text-decoration: none;
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12.5px;
  color: #b9d2dc;
  text-decoration: none;
  padding: 3px 9px;
  border: 1px solid rgba(185, 210, 220, 0.28);
  border-radius: 999px;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
a.runtime-category {
  color: #b9d2dc;
  text-decoration: none;
}
a.runtime-category:hover {
  color: #eafcf9;
  border-color: rgba(36, 214, 200, 0.7);
  background: rgba(36, 214, 200, 0.14);
}
.page-main {
  position: relative;
  z-index: 20;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding-top: 22px;
  position: relative;
}
.hero-poster-layer {
  position: relative;
  grid-column: 1 / -1;
  min-height: 260px;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 18% 22%, rgba(36, 214, 200, 0.2), transparent 58%),
    linear-gradient(112deg, #0d2733 0%, #123544 46%, #0a1e28 100%);
  box-shadow: var(--shadow);
}
.hero-poster-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 46px);
  pointer-events: none;
}
.hero-poster-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 22, 30, 0.94) 0%, rgba(7, 22, 30, 0.72) 44%, rgba(7, 22, 30, 0.2) 100%);
  pointer-events: none;
}
.poster-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 18%;
  filter: saturate(0.72) contrast(1.06) brightness(0.82);
  opacity: 0.85;
}
.hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  align-self: end;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 620px;
}
.movie-title {
  font-size: clamp(30px, 7vw, 60px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.6);
  writing-mode: horizontal-tb;
}
.movie-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cyan);
  border-left: 3px solid var(--alert);
  padding-left: 10px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.65;
  color: #c3d7e0;
  max-width: 56ch;
}
.hero-status-rail {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  align-self: start;
  background: rgba(11, 32, 42, 0.86);
  border: 1px solid rgba(36, 214, 200, 0.3);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 10px;
}
.status-readout {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.status-item {
  flex: 1 1 auto;
  min-width: 74px;
  padding: 4px 12px 4px 0;
  margin-right: 12px;
  border-right: 1px solid rgba(36, 214, 200, 0.18);
}
.status-item:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.status-key {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: #7fa3b3;
  text-transform: uppercase;
}
.status-value {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  color: #eafcf9;
  font-variant-numeric: tabular-nums;
}
.status-item:nth-child(3) .status-value {
  color: var(--cyan);
}
.player-zone {
  grid-column: 1 / -1;
  min-width: 0;
  background: #0a1c25;
  border: 1px solid rgba(36, 214, 200, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.player-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #061119;
  line-height: 0;
}
.player-frame video {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #061119;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 9px 11px;
  background: linear-gradient(180deg, #0e2733, #0b2029);
  border-top: 1px solid rgba(36, 214, 200, 0.18);
}
.ctrl-btn {
  appearance: none;
  border: 1px solid rgba(36, 214, 200, 0.34);
  background: rgba(36, 214, 200, 0.08);
  color: #d3f2ee;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ctrl-btn:hover {
  background: rgba(36, 214, 200, 0.2);
  color: #ffffff;
  border-color: rgba(36, 214, 200, 0.7);
}
.ctrl-field {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.ctrl-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #77a0b1;
  white-space: nowrap;
}
.ctrl-field input[type="range"] {
  width: 96px;
  max-width: 34vw;
  accent-color: var(--cyan);
  cursor: pointer;
}
.ctrl-field select {
  background: #0d2531;
  color: #d3f2ee;
  border: 1px solid rgba(36, 214, 200, 0.34);
  border-radius: 3px;
  padding: 4px 6px;
  font-size: 12px;
  cursor: pointer;
}
.player.is-theater, .page-shell.is-theater {
  background-color: #050d12;
}
.page-shell.is-light .player-zone {
  box-shadow: 0 0 0 1px rgba(36, 214, 200, 0.6), 0 0 44px -4px rgba(36, 214, 200, 0.6);
}
.page-shell.is-light {
  background-color: #04101a;
}
.player.is-theater {
  width: 100%;
}
.player-controls .is-active, .player.is-light + .player-controls {
  border-color: var(--cyan);
}
.synopsis-block {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue-steel);
  border-radius: var(--radius);
  padding: 14px 16px 16px;
  box-shadow: var(--shadow);
}
.section-heading {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue-dark);
  padding-left: 11px;
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--blue-steel));
}
.heading-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1px 8px;
}
.synopsis-body {
  columns: 1;
  column-gap: 24px;
}
.synopsis-para {
  font-size: 12.8px;
  line-height: 1.72;
  color: var(--ink-soft);
  break-inside: avoid;
  margin-bottom: 8px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.cast-block {
  grid-column: 1 / -1;
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
}
.cast-card {
  display: flex;
  align-items: stretch;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px;
  min-width: 0;
}
.cast-portrait {
  flex: 0 0 44px;
  width: 44px;
  height: 58px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--surface-2);
  position: relative;
}
.cast-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 20%;
  filter: saturate(0.6) contrast(1.05) brightness(0.94);
}
.cast-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}
.cast-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-role {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.details-block {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px 16px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0 18px;
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.detail-value {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  min-width: 0;
}
.timeline-section {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: start;
  gap: 14px 12px;
  position: relative;
  padding-top: 10px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 21px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.timeline-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 2px;
  min-width: 0;
}
.node-marker {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-steel);
  display: block;
  margin-bottom: 6px;
  position: relative;
}
.node-marker::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(88, 122, 140, 0.35);
}
.node-timecode {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-steel);
  font-variant-numeric: tabular-nums;
}
.node-label {
  font-size: 11.8px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.timeline-node:nth-child(even) {
  transform: translateY(14px);
}
.timeline-node.is-current .node-marker {
  border-color: var(--alert);
  background: var(--alert);
  box-shadow: 0 0 0 3px rgba(229, 56, 74, 0.18), 0 0 12px rgba(229, 56, 74, 0.6);
}
.timeline-node.is-current .node-marker::after {
  border-color: rgba(229, 56, 74, 0.5);
  animation: pulse-ring 1.6s ease-out infinite;
}
.timeline-node.is-current .node-timecode {
  color: var(--alert-deep);
}
.timeline-node.is-current .node-label {
  color: var(--ink);
  font-weight: 600;
}
@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}
.episodes-section {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 11px 10px;
  border-left: 3px solid var(--line);
  min-width: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.episode-card:hover {
  border-color: var(--blue-steel);
  box-shadow: 0 6px 16px -12px rgba(23, 50, 63, 0.7);
}
.episode-number {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.episode-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--blue-dark);
}
.episode-summary {
  font-size: 11.8px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.episode-duration {
  margin-top: 2px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--blue-steel);
  font-variant-numeric: tabular-nums;
}
.episode-card.is-current {
  border: 2px solid var(--alert);
  border-left: 4px solid var(--alert);
  background: #fff6f7;
  padding: 8px 10px 9px;
  box-shadow: 0 0 0 1px rgba(229, 56, 74, 0.12), 0 10px 22px -16px rgba(229, 56, 74, 0.9);
}
.episode-card.is-current .episode-number {
  color: var(--alert-deep);
}
.episode-card.is-current .episode-title {
  color: var(--alert-deep);
}
.episode-card.is-active, .timeline-node.is-active {
  outline: 1px dashed var(--cyan-deep);
  outline-offset: 2px;
}
.comments-section {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 12px;
  align-items: start;
}
.comment-note {
  display: flex;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 10px 11px;
  box-shadow: 0 6px 14px -12px rgba(23, 50, 63, 0.8);
  min-width: 0;
}
.comment-note:nth-child(3n + 1) {
  transform: rotate(-0.7deg);
}
.comment-note:nth-child(3n + 2) {
  transform: rotate(0.6deg) translateY(6px);
}
.comment-note:nth-child(3n) {
  transform: rotate(-0.3deg) translateY(-4px);
}
.comment-avatar {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-steel);
  position: relative;
  overflow: hidden;
}
.comment-note:nth-child(4n + 1) .comment-avatar { background: #587a8c; }
.comment-note:nth-child(4n + 2) .comment-avatar { background: #0e9c92; }
.comment-note:nth-child(4n + 3) .comment-avatar { background: #e5384a; }
.comment-note:nth-child(4n) .comment-avatar { background: #17323f; }
.comment-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24%;
  width: 34%;
  height: 34%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.comment-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.comment-nickname {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
}
.comment-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.rec-region {
  grid-column: 1 / -1;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px 13px;
  align-self: start;
}
.rec-heading {
  font-size: 13.5px;
  margin-bottom: 9px;
}
.rec-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rec-item {
  border-top: 1px solid var(--line-soft);
}
.rec-item:first-child {
  border-top: 0;
}
.rec-link {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  row-gap: 2px;
  align-items: center;
  padding: 8px 0;
  text-decoration: none;
  min-width: 0;
}
a.rec-link {
  color: var(--ink);
  text-decoration: none;
}
a.rec-link:hover .rec-name {
  color: var(--cyan-deep);
}
[data-runtime="recommendation"] img {
  grid-row: 1 / span 2;
  width: 100%;
  height: 44px;
  object-fit: cover;
  border-radius: 2px;
  background: var(--surface-2);
  filter: saturate(0.7) contrast(1.04);
}
.rec-thumb {
  display: block;
}
.rec-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  position: relative;
  z-index: 20;
  background: #0b2029;
  border-top: 3px solid var(--cyan);
  color: #9db8c4;
  margin-top: 6px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.65;
  color: #7fa3b3;
  max-width: 78ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
a[data-contract="footer-home"] {
  color: var(--cyan);
  text-decoration: none;
}
a[data-contract="footer-home"]:hover {
  text-decoration: underline;
}
a[data-contract="footer-sitemap"] {
  color: #b9d2dc;
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--cyan);
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  border-top: 1px solid rgba(157, 184, 196, 0.16);
  padding-top: 10px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #6b8b99;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: #9db8c4;
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--cyan);
  text-decoration: underline;
}
@media (min-width: 720px) {body {
    font-size: 14px;
  }
.page-main {
    gap: 30px;
  }
.hero {
    grid-template-columns: minmax(0, 1fr) 210px;
    grid-template-rows: auto auto;
    gap: 18px 20px;
    padding-top: 26px;
  }
.hero-poster-layer {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    min-height: 420px;
  }
.hero-copy {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    align-self: end;
    padding: 26px 0 24px 4px;
    z-index: 4;
  }
.hero-status-rail {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: end;
    justify-self: end;
    margin: 0 0 24px 0;
    width: 100%;
  }
.status-readout {
    flex-direction: column;
  }
.status-item {
    border-right: 0;
    border-bottom: 1px solid rgba(36, 214, 200, 0.16);
    margin-right: 0;
    padding: 6px 0;
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
  }
.status-item:last-child {
    border-bottom: 0;
  }
.player-zone {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
  }
.synopsis-body {
    columns: 2;
  }
.timeline-track {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px 10px;
  }
.episode-grid {
    grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  }
.rec-region {
    grid-column: span 1;
  }
.page-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.hero, .timeline-section, .episodes-section, .cast-block, .details-block, .synopsis-block, .comments-section {
    grid-column: 1 / -1;
  }
.rec-region-one, .rec-region-two, .rec-region-three {
    grid-column: span 1;
  }}
@media (min-width: 1000px) {.hero-poster-layer {
    min-height: 500px;
  }
.movie-seo {
    font-size: 13px;
  }
.cast-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.details-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (max-width: 719px) {.page-shell {
    background: linear-gradient(180deg, #0e2530 0, #0e2530 340px, var(--surface) 340px, var(--surface) 100%);
  }
.hero-poster-layer {
    min-height: 300px;
  }
.hero-copy {
    padding: 0 2px 8px;
  }
.movie-title {
    font-size: 38px;
  }
.status-item {
    flex: 1 1 45%;
    min-width: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 214, 200, 0.16);
    margin-right: 0;
    padding: 5px 0;
  }
.status-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
.timeline-node:nth-child(even) {
    transform: none;
  }
.comment-note:nth-child(n) {
    transform: none;
  }
.ctrl-field input[type="range"] {
    width: 74px;
  }}
@media (min-width: 720px) and (max-width: 999px) {.cast-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (prefers-reduced-motion: reduce) {.timeline-node.is-current .node-marker::after {
    animation: none;
  }}

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}
