:root {
  --ink: #0b1220;
  --ink-2: #101a2e;
  --ink-3: #16233c;
  --smoke: #1a2233;
  --smoke-2: #232c40;
  --parchment: #d9cdb4;
  --parchment-dim: #b9ac91;
  --parchment-deep: #8d8069;
  --verdigris: #3f8f7d;
  --verdigris-deep: #2b6a5c;
  --candle: #e8b866;
  --candle-bright: #f5cf8a;
  --moon: #9fb4d4;
  --text: #cfd6e2;
  --text-dim: #8b96a8;
  --line: rgba(159, 180, 212, 0.18);
  --line-strong: rgba(159, 180, 212, 0.32);
  --gap: 16px;
  --pad: 12px;
  --radius-sm: 2px;
  --radius: 3px;
  --serif: "Songti SC", "SimSun", "Noto Serif SC", Georgia, "Times New Roman", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --copper: "STKaiti", "KaiTi", "Songti SC", 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(ellipse 120% 60% at 50% -10%, rgba(63, 143, 125, 0.10), transparent 60%),
    radial-gradient(ellipse 90% 50% at 50% 120%, rgba(232, 184, 102, 0.06), transparent 65%),
    linear-gradient(180deg, #0b1220 0%, #0e1729 40%, #0a101c 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
::selection {
  background: var(--verdigris);
  color: #06101a;
}
.ink-shell {
  background-color: rgba(16, 26, 46, 0.72);
  background-image:
    linear-gradient(180deg, rgba(159, 180, 212, 0.04), transparent 40%),
    radial-gradient(ellipse 100% 80% at 15% 0%, rgba(63, 143, 125, 0.08), transparent 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.parchment-shell {
  background-color: rgba(26, 34, 51, 0.66);
  background-image:
    linear-gradient(180deg, rgba(217, 205, 180, 0.05), transparent 30%),
    radial-gradient(ellipse 90% 60% at 85% 0%, rgba(232, 184, 102, 0.05), transparent 55%),
    radial-gradient(circle at 12% 88%, rgba(217, 205, 180, 0.04), transparent 40%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.smoke-shell {
  background-color: rgba(22, 35, 60, 0.5);
  background-image:
    radial-gradient(ellipse 120% 90% at 10% 10%, rgba(159, 180, 212, 0.06), transparent 55%),
    radial-gradient(ellipse 100% 80% at 90% 90%, rgba(43, 106, 92, 0.10), transparent 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.media-wrapper {
  position: relative;
  overflow: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 14px;
}
a[data-contract="site-name"].brand-mark {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--candle);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(232, 184, 102, 0.25);
  white-space: nowrap;
  padding: 2px 2px 2px 0;
  border-bottom: 1px solid rgba(232, 184, 102, 0.35);
}
.category-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--moon);
  text-decoration: none;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(11, 18, 32, 0.5);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--candle-bright);
  border-color: rgba(232, 184, 102, 0.5);
  background: rgba(232, 184, 102, 0.08);
}
.page-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--gap) 14px calc(var(--gap) * 2);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.movie-overview {
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: var(--gap);
  align-items: start;
}
.poster-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.poster-frame {
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #060a12;
  box-shadow:
    0 0 0 1px rgba(11, 18, 32, 0.9) inset,
    0 10px 26px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(63, 143, 125, 0.08);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232, 184, 102, 0.10), transparent 35%),
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(11, 18, 32, 0.85), transparent 60%);
  pointer-events: none;
}
img.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.92);
}
.overview-lede {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.movie-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--parchment);
  text-shadow: 0 0 22px rgba(232, 184, 102, 0.16);
}
.movie-tagline {
  font-size: 13px;
  line-height: 1.4;
  color: var(--candle);
  letter-spacing: 0.05em;
  padding-left: 10px;
  border-left: 2px solid var(--verdigris);
}
.movie-seo {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-dim);
  max-width: 66ch;
}
.player-column {
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #05080f;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
video.main-player {
  display: block;
  width: 100%;
  max-width: none;
  background: #05080f;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(22, 35, 60, 0.9), rgba(11, 18, 32, 0.95));
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--moon);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(11, 18, 32, 0.6);
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  color: var(--candle-bright);
  border-color: rgba(232, 184, 102, 0.5);
}
.ctrl-btn.is-active {
  color: var(--ink);
  background: var(--candle);
  border-color: var(--candle-bright);
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 90px;
  min-width: 70px;
  height: 16px;
  background: transparent;
}
.ctrl-range::-webkit-slider-runnable-track {
  height: 3px;
  background: rgba(159, 180, 212, 0.28);
  border-radius: 2px;
}
.ctrl-range::-moz-range-track {
  height: 3px;
  background: rgba(159, 180, 212, 0.28);
  border-radius: 2px;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--candle);
  border: 1px solid var(--candle-bright);
}
.ctrl-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--candle);
  border: 1px solid var(--candle-bright);
}
.ctrl-select {
  font-size: 11px;
  color: var(--moon);
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(11, 18, 32, 0.9);
}
.cast-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strip-heading, .block-heading {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--parchment);
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.strip-heading::after, .block-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-width: 0;
}
.cast-avatar {
  width: 100%;
  max-width: 84px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--parchment-deep);
  box-shadow:
    0 0 0 1px rgba(11, 18, 32, 0.9),
    0 0 0 3px rgba(141, 128, 105, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.5);
  background: #060a12;
  filter: saturate(0.7);
  transition: border-color 0.2s ease, filter 0.2s ease;
}
.cast-card:hover .cast-avatar {
  border-color: var(--candle);
  filter: saturate(0.95);
}
.cast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cast-name {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--parchment);
  line-height: 1.3;
}
.cast-role {
  font-size: 10px;
  line-height: 1.35;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.synopsis-block, .episode-status, .details-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.synopsis-flow {
  columns: 2;
  column-gap: 20px;
  column-rule: 1px solid var(--line);
}
.synopsis-paragraph {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 8px;
  break-inside: avoid;
  text-indent: 2em;
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
}
.status-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
}
.status-current {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--candle);
  text-shadow: 0 0 14px rgba(232, 184, 102, 0.25);
}
.status-sep {
  color: var(--text-dim);
  font-size: 13px;
}
.status-total {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--moon);
}
.status-bar {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 420px;
  height: 6px;
  border: none;
  border-radius: 3px;
  background: rgba(11, 18, 32, 0.85);
  overflow: hidden;
}
.status-bar::-webkit-progress-bar {
  background: rgba(11, 18, 32, 0.85);
  border-radius: 3px;
}
.status-bar::-webkit-progress-value {
  background: linear-gradient(90deg, var(--verdigris-deep), var(--candle));
  border-radius: 3px;
}
.status-bar::-moz-progress-bar {
  background: linear-gradient(90deg, var(--verdigris-deep), var(--candle));
  border-radius: 3px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 14px;
}
.detail-pair {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  padding: 3px 0 3px 8px;
  border-left: 2px solid rgba(63, 143, 125, 0.4);
}
.detail-key {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.detail-value {
  font-size: 12px;
  color: var(--parchment);
  letter-spacing: 0.03em;
  min-width: 0;
}
.timeline-section {
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  counter-reset: node;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 4px;
  text-align: center;
  color: var(--moon);
  min-width: 0;
}
.timeline-node::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 2px solid var(--moon);
  box-shadow: 0 0 0 3px rgba(159, 180, 212, 0.08);
  z-index: 2;
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 0;
  border-top: 1px dashed rgba(159, 180, 212, 0.4);
  z-index: 1;
}
.timeline-node:last-child::after {
  display: none;
}
.node-timecode {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.node-label {
  font-size: 11px;
  line-height: 1.3;
  color: var(--moon);
  letter-spacing: 0.02em;
}
.timeline-node.is-active::before {
  background: var(--candle);
  border-color: var(--candle-bright);
  box-shadow: 0 0 0 4px rgba(232, 184, 102, 0.18), 0 0 16px rgba(232, 184, 102, 0.55);
}
.timeline-node.is-active .node-timecode {
  color: var(--candle);
}
.timeline-node.is-active .node-label {
  color: var(--candle-bright);
}
.episodes-section {
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}
.episode-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 7px 8px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}
.episode-item:hover {
  background: rgba(63, 143, 125, 0.06);
}
.episode-item.is-active {
  background: rgba(232, 184, 102, 0.07);
  border-bottom-color: rgba(232, 184, 102, 0.5);
}
.episode-number {
  font-family: var(--copper);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--parchment-deep);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 0 10px rgba(141, 128, 105, 0.25);
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}
.episode-item.is-active .episode-number {
  color: var(--candle);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 0 12px rgba(232, 184, 102, 0.4);
}
.episode-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.episode-title {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--parchment);
  line-height: 1.3;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--verdigris);
}
.comments-section {
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comment-masonry {
  columns: 3;
  column-gap: 10px;
}
.comment-card {
  display: block;
  break-inside: avoid;
  margin: 0 0 10px;
  padding: 8px 10px 9px;
  background-color: rgba(217, 205, 180, 0.07);
  background-image:
    linear-gradient(180deg, rgba(217, 205, 180, 0.06), transparent 55%),
    radial-gradient(circle at 88% 8%, rgba(232, 184, 102, 0.06), transparent 45%);
  border: 1px solid rgba(217, 205, 180, 0.14);
  border-left: 2px solid rgba(63, 143, 125, 0.5);
  border-radius: var(--radius-sm);
}
.comment-nickname {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--candle);
  margin-bottom: 3px;
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: 0.01em;
}
.recommend-region {
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recommend-heading {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--candle);
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(232, 184, 102, 0.28);
}
.recommend-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}
a.recommend-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  row-gap: 2px;
  align-items: start;
  padding: 5px 0;
  border-bottom: 1px dotted rgba(159, 180, 212, 0.28);
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}
a.recommend-item:last-child {
  border-bottom: none;
}
a.recommend-item:hover {
  color: var(--candle-bright);
}
a.recommend-item img {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  filter: saturate(0.8) brightness(0.92);
}
a.recommend-item span[data-runtime="name"] {
  grid-column: 2;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--parchment);
  line-height: 1.3;
}
a.recommend-item span[data-runtime="blurb"] {
  grid-column: 2;
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1180px;
  margin: 0 auto var(--gap);
  padding: var(--pad) 14px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
a[data-contract="footer-home"].footer-link, a[data-contract="footer-sitemap"].footer-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--moon);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"].footer-link:hover, a[data-contract="footer-sitemap"].footer-link:hover {
  color: var(--candle-bright);
  border-bottom-color: rgba(232, 184, 102, 0.5);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  padding-top: 6px;
  border-top: 1px dotted rgba(159, 180, 212, 0.22);
}
.friend-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--verdigris);
  padding-right: 4px;
}
a.runtime-friend-link {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}
a.runtime-friend-link:hover {
  color: var(--moon);
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 10.5px;
  line-height: 1.45;
  color: rgba(139, 150, 168, 0.72);
  letter-spacing: 0.02em;
  max-width: 90ch;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
body.is-theater .page-body {
  max-width: 100%;
}
body.is-theater .movie-overview {
  border-color: rgba(232, 184, 102, 0.35);
}
body.is-lights-off {
  background-image: linear-gradient(180deg, #04070d 0%, #04070d 100%);
}
body.is-lights-off .movie-overview, body.is-lights-off .timeline-section, body.is-lights-off .episodes-section, body.is-lights-off .comments-section, body.is-lights-off .recommend-region {
  filter: brightness(0.72);
}
body.is-lights-off .player-column {
  filter: brightness(1.12);
}
@media (max-width: 1020px) {.cast-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px 0;
  }
.timeline-node:nth-child(4n)::after {
    display: none;
  }
.comment-masonry {
    columns: 2;
  }
.synopsis-flow {
    columns: 2;
  }}
@media (max-width: 760px) {body {
    font-size: 12.5px;
  }
.page-body {
    padding: var(--gap) 10px calc(var(--gap) * 1.6);
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    max-width: 180px;
  }
.movie-title {
    font-size: 22px;
  }
.cast-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.cast-avatar {
    max-width: 68px;
  }
.synopsis-flow {
    columns: 1;
    column-rule: none;
  }
.details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 0;
  }
.timeline-node:nth-child(4n)::after, .timeline-node:nth-child(2n)::after {
    display: none;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-masonry {
    columns: 1;
  }
.recommend-stack {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 480px) {.header-bar {
    padding: 7px 10px;
  }
a[data-contract="site-name"].brand-mark {
    font-size: 15px;
  }
.cast-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cast-avatar {
    max-width: 62px;
  }
.status-bar {
    max-width: 100%;
  }
.timeline-track {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
.timeline-node {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
    padding: 6px 4px;
  }
.timeline-node::before {
    flex: 0 0 auto;
  }
.timeline-node::after {
    display: none;
  }
.movie-title {
    font-size: 20px;
  }
.synopsis-paragraph {
    text-indent: 1.6em;
  }}

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}
