*, *::before, *::after {
  box-sizing: border-box;
}
html, body, h1, h2, h3, p, dl, dd, dt, ol, li {
  margin: 0;
  padding: 0;
}
ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
:root {
  --midnight: #0a1024;
  --midnight-2: #0d1530;
  --midnight-3: #131c3e;
  --steel: #2c3446;
  --steel-2: #3d4659;
  --raspberry: #e13b5c;
  --raspberry-deep: #a81f3e;
  --cream: #f4ead8;
  --cream-dim: #c7bfae;
  --ice: #7fb6d6;
  --ice-dim: #4a7794;
  --line: rgba(127, 182, 214, 0.16);
  --line-strong: rgba(127, 182, 214, 0.32);
  --panel: rgba(19, 28, 62, 0.72);
  --font-head: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: "Arial Narrow", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--midnight);
  background-image:
    radial-gradient(120% 90% at 12% -10%, rgba(127, 182, 214, 0.14), transparent 55%),
    radial-gradient(90% 70% at 100% 0%, rgba(225, 59, 92, 0.12), transparent 50%),
    linear-gradient(180deg, #070c1c 0%, #0a1024 40%, #080d1e 100%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
body.is-lights-off {
  background: #03060f;
  background-image: none;
}
body.is-lights-off .site-header, body.is-lights-off .site-footer {
  opacity: 0.35;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(7, 12, 28, 0.96), rgba(10, 16, 36, 0.86));
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 14px;
}
a[data-contract="site-name"] {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
a[data-contract="site-name"]::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--raspberry) 0 34%, var(--raspberry-deep) 35% 62%, var(--steel-2) 63% 100%);
  box-shadow: 0 0 0 2px rgba(10, 16, 36, 0.9), 0 0 10px rgba(225, 59, 92, 0.55);
  flex: none;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: var(--raspberry);
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}
a.runtime-category {
  color: var(--cream-dim);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 3px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(44, 52, 70, 0.35);
  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(--cream);
  border-color: var(--raspberry);
  background: rgba(225, 59, 92, 0.18);
}
.page-main {
  display: block;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 14px 26px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}
.section-heading::before {
  content: "";
  width: 3px;
  height: 15px;
  background: var(--raspberry);
  flex: none;
}
.section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 4px, transparent 4px 9px);
  margin-left: 4px;
}
.movie-overview {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), inset 0 0 60px rgba(127, 182, 214, 0.05);
  padding: 14px;
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.poster-shell {
  position: relative;
  align-self: start;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  background: var(--midnight-2);
}
.poster-media {
  position: relative;
  aspect-ratio: 2 / 3;
  width: 100%;
  overflow: hidden;
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.86);
}
.poster-crack-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 62% 34%, rgba(127, 182, 214, 0.5) 0 1.5px, transparent 2px),
    radial-gradient(circle at 62% 34%, transparent 0 18px, rgba(244, 234, 216, 0.22) 18px 19px, transparent 20px),
    linear-gradient(118deg, transparent 46.4%, rgba(244, 234, 216, 0.34) 46.6%, transparent 47%),
    linear-gradient(64deg, transparent 54.3%, rgba(244, 234, 216, 0.28) 54.5%, transparent 55%),
    linear-gradient(158deg, transparent 38.5%, rgba(244, 234, 216, 0.2) 38.8%, transparent 39.3%),
    linear-gradient(202deg, transparent 61.2%, rgba(244, 234, 216, 0.26) 61.5%, transparent 62%),
    radial-gradient(circle at 62% 34%, rgba(127, 182, 214, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(10, 16, 36, 0.1) 0%, rgba(10, 16, 36, 0.72) 100%);
  mix-blend-mode: screen;
  opacity: 0.95;
}
.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(200deg, rgba(127, 182, 214, 0.16) 0%, transparent 40%, rgba(8, 12, 26, 0.6) 100%);
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}
.movie-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.movie-tagline {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--raspberry);
  border-left: 2px solid var(--raspberry);
  padding-left: 8px;
  line-height: 1.3;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--cream-dim);
  max-width: 62ch;
}
.episode-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.status-current, .status-total {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  background: rgba(44, 52, 70, 0.4);
  color: var(--cream);
}
.status-current {
  border-color: rgba(225, 59, 92, 0.6);
  background: rgba(225, 59, 92, 0.16);
  color: #ffd9e1;
}
.status-current::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--raspberry);
  margin-right: 6px;
  box-shadow: 0 0 6px var(--raspberry);
}
.movie-details {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 0 16px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(127, 182, 214, 0.14);
  font-size: 12px;
  min-width: 0;
}
.detail-row dt {
  flex: none;
  width: 62px;
  color: var(--ice-dim);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.detail-row dd {
  color: var(--cream);
  min-width: 0;
  overflow-wrap: anywhere;
}
.player-shell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #04070f;
  padding: 6px;
  min-width: 0;
  width: 100%;
}
.player-shell video {
  width: 100%;
  background: #000;
  border-radius: 1px;
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px var(--raspberry), 0 20px 50px rgba(0, 0, 0, 0.7);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 2px;
}
.ctrl-btn {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: rgba(44, 52, 70, 0.55);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 4px 9px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  background: rgba(225, 59, 92, 0.22);
  border-color: var(--raspberry);
  color: #fff;
}
.ctrl-btn.is-playing, .ctrl-btn.is-active, .ctrl-btn.is-muted {
  background: var(--raspberry);
  border-color: var(--raspberry);
  color: #fff;
}
.ctrl-progress, .ctrl-volume {
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--raspberry) 0%, var(--steel-2) 0%);
  background-color: var(--steel);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  min-width: 0;
}
.ctrl-progress {
  flex: 1 1 160px;
}
.ctrl-volume {
  flex: 0 1 90px;
  width: 90px;
}
.ctrl-progress::-webkit-slider-thumb, .ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--raspberry);
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb, .ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--raspberry);
  cursor: pointer;
}
.ctrl-speed {
  border: 1px solid var(--line-strong);
  background: rgba(44, 52, 70, 0.55);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 2px;
  cursor: pointer;
}
.movie-synopsis {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.synopsis-para {
  font-size: 12.6px;
  line-height: 1.5;
  color: var(--cream-dim);
  max-width: 92ch;
  margin-bottom: 6px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.synopsis-para::first-letter {
  color: var(--raspberry);
  font-weight: 700;
}
.movie-cast {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.cast-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.cast-rail::-webkit-scrollbar {
  height: 6px;
}
.cast-rail::-webkit-scrollbar-track {
  background: rgba(44, 52, 70, 0.4);
}
.cast-rail::-webkit-scrollbar-thumb {
  background: var(--steel-2);
  border-radius: 3px;
}
.cast-card {
  position: relative;
  flex: 0 0 132px;
  scroll-snap-align: start;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  background: var(--midnight-2);
}
.cast-avatar {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 50% 34%, rgba(244, 234, 216, 0.5) 0 12%, transparent 13%),
    radial-gradient(circle at 50% 96%, rgba(244, 234, 216, 0.28) 0 26%, transparent 27%),
    linear-gradient(160deg, var(--steel-2) 0%, var(--midnight-3) 60%, #0a1122 100%);
  filter: saturate(0.85);
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 12, 28, 0.9) 100%);
}
.cast-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 6px 6px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
  background: linear-gradient(180deg, transparent, rgba(7, 12, 28, 0.92) 55%);
  z-index: 2;
}
.movie-timeline {
  margin: 0 0 18px;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, rgba(19, 28, 62, 0.5), rgba(10, 16, 36, 0.5));
  border: 1px solid var(--line);
  border-radius: 3px;
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 22px;
  margin-top: 2px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 3px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, var(--steel-2) 0 8px, var(--midnight-2) 8px 12px);
  box-shadow: 0 0 0 1px rgba(127, 182, 214, 0.1);
}
.timeline-node {
  position: relative;
  padding-top: 14px;
  min-width: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -19px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #0a1024 0 28%, var(--steel-2) 30% 52%, #05080f 54% 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 3px rgba(10, 16, 36, 0.9), inset 0 0 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(225, 59, 92, 0.25);
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px dashed rgba(225, 59, 92, 0.5);
  transform: scale(1.5);
  pointer-events: none;
}
.node-timecode {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--raspberry);
  margin-bottom: 3px;
}
.node-label {
  display: block;
  font-size: 11.6px;
  line-height: 1.32;
  color: var(--cream-dim);
}
.episode-section {
  margin-bottom: 18px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--steel-2);
  border-radius: 2px;
  background: rgba(13, 21, 48, 0.6);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.episode-card:hover {
  border-left-color: var(--raspberry);
  background: rgba(19, 28, 62, 0.85);
}
.episode-number {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px var(--ice-dim);
  text-stroke: 1px var(--ice-dim);
  padding-top: 2px;
  min-width: 34px;
}
.episode-card:hover .episode-number {
  -webkit-text-stroke-color: var(--raspberry);
  text-stroke-color: var(--raspberry);
}
.episode-body {
  min-width: 0;
}
.episode-title {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 3px;
}
.episode-summary {
  font-size: 11.6px;
  line-height: 1.38;
  color: var(--cream-dim);
  margin-bottom: 5px;
  overflow-wrap: anywhere;
}
.episode-duration {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ice);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 1px 6px;
}
.comment-section {
  margin-bottom: 18px;
}
.comment-masonry {
  columns: 3;
  column-gap: 8px;
}
.comment-card {
  position: relative;
  break-inside: avoid;
  margin: 0 0 8px;
  padding: 10px 10px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(19, 28, 62, 0.75), rgba(10, 16, 36, 0.75));
  display: inline-block;
  width: 100%;
}
.comment-mark {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 12px;
  line-height: 1;
  opacity: 0.85;
  filter: saturate(0.9);
}
.comment-text {
  font-size: 12.4px;
  line-height: 1.42;
  color: var(--cream);
  margin-bottom: 7px;
  padding-right: 16px;
  overflow-wrap: anywhere;
}
.comment-nickname {
  display: block;
  font-family: var(--font-head);
  font-size: 10.6px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ice);
  border-top: 1px dotted rgba(127, 182, 214, 0.2);
  padding-top: 5px;
}
.comment-nickname::before {
  content: "— ";
  color: var(--raspberry);
}
.recommend-region {
  margin-bottom: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.region-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.region-title::before {
  content: "";
  width: 3px;
  height: 13px;
  background: var(--ice);
  flex: none;
}
.region-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 3px, transparent 3px 8px);
}
.recommend-list {
  display: grid;
  gap: 7px;
  align-items: start;
}
a.recommend-item {
  display: grid;
  gap: 4px;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(13, 21, 48, 0.62);
  padding: 6px;
  min-width: 0;
  align-self: start;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
a.recommend-item:hover, a.recommend-item:focus-visible {
  border-color: var(--raspberry);
  background: rgba(30, 20, 44, 0.85);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 1px;
  background: var(--midnight-2);
  filter: saturate(0.9) brightness(0.9);
}
.recommend-name {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--cream);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  font-size: 10.8px;
  line-height: 1.34;
  color: var(--cream-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.region-dense-a .recommend-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.region-dense-a a.recommend-item {
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "thumb name"
    "thumb blurb";
  align-items: center;
  column-gap: 7px;
  row-gap: 1px;
}
.region-dense-a [data-runtime="recommendation"] img {
  grid-area: thumb;
  width: 46px;
  aspect-ratio: 2 / 3;
  height: auto;
  align-self: start;
}
.region-dense-a .recommend-name {
  grid-area: name;
}
.region-dense-a .recommend-blurb {
  grid-area: blurb;
  -webkit-line-clamp: 2;
}
.region-dense-b .recommend-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.region-dense-b a.recommend-item {
  grid-template-columns: 74px minmax(0, 1fr);
  grid-template-areas:
    "thumb name"
    "thumb blurb";
  align-items: center;
  column-gap: 8px;
}
.region-dense-b [data-runtime="recommendation"] img {
  grid-area: thumb;
  width: 74px;
  aspect-ratio: 16 / 10;
  height: auto;
  align-self: start;
}
.region-dense-b .recommend-name {
  grid-area: name;
}
.region-dense-b .recommend-blurb {
  grid-area: blurb;
  -webkit-line-clamp: 3;
}
.region-dense-c .recommend-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.region-dense-c a.recommend-item {
  grid-template-areas:
    "thumb"
    "name"
    "blurb";
}
.region-dense-c .recommend-name, .region-dense-c .recommend-blurb {
  grid-area: auto;
}
.region-dense-c .recommend-blurb {
  -webkit-line-clamp: 2;
}
.region-dense-d .recommend-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.region-dense-d a.recommend-item {
  grid-template-areas:
    "thumb"
    "name";
  padding: 4px;
  gap: 3px;
}
.region-dense-d .recommend-blurb {
  display: none;
}
.region-dense-d .recommend-name {
  font-size: 10.6px;
  text-align: center;
}
.site-footer {
  margin-top: 10px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(10, 16, 36, 0.7), rgba(4, 7, 15, 0.95));
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 14px 20px;
  display: grid;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus-visible {
  color: var(--raspberry);
  border-bottom-color: var(--raspberry);
}
a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--ice);
  border-bottom-color: var(--ice);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.friend-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ice);
  padding-right: 4px;
  border-right: 1px solid var(--line-strong);
  margin-right: 2px;
}
a.runtime-friend-link {
  font-size: 11px;
  line-height: 1.3;
  color: var(--cream-dim);
  text-decoration: none;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(44, 52, 70, 0.3);
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--cream);
  border-color: var(--raspberry);
}
.footer-disclaimer {
  font-size: 10.8px;
  line-height: 1.4;
  color: rgba(199, 191, 174, 0.7);
  max-width: 96ch;
  border-top: 1px dotted rgba(127, 182, 214, 0.16);
  padding-top: 8px;
}
@media (max-width: 1024px) {.overview-hero {
    grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
  }
.region-dense-a .recommend-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.region-dense-d .recommend-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.comment-masonry {
    columns: 2;
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 16px;
  }
.timeline-track::before {
    display: none;
  }
.timeline-node::before {
    top: 0;
  }
.timeline-node::after {
    top: -1px;
  }
.timeline-node {
    padding-top: 0;
    padding-left: 22px;
  }}
@media (max-width: 760px) {.overview-hero {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-shell {
    max-width: 260px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.region-dense-a .recommend-list, .region-dense-b .recommend-list, .region-dense-c .recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.region-dense-d .recommend-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.ctrl-progress {
    flex: 1 1 100%;
  }}
@media (max-width: 520px) {body {
    font-size: 13px;
  }
.movie-overview {
    padding: 10px;
    gap: 12px;
  }
.comment-masonry {
    columns: 1;
  }
.region-dense-a .recommend-list, .region-dense-b .recommend-list, .region-dense-c .recommend-list, .region-dense-d .recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.region-dense-a a.recommend-item, .region-dense-b a.recommend-item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "thumb"
      "name"
      "blurb";
  }
.region-dense-a [data-runtime="recommendation"] img, .region-dense-b [data-runtime="recommendation"] img {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
.timeline-track {
    grid-template-columns: minmax(0, 1fr);
  }
.movie-title {
    font-size: 24px;
  }}

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}
