*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body, h1, h2, h3, p, blockquote, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --abyss: #05090a;
  --hull: #0a1416;
  --hull-2: #0d1c1e;
  --hull-3: #122528;
  --line: #1c3a3c;
  --line-soft: #142b2d;
  --sonar: #4ff0d6;
  --sonar-dim: #2a8f83;
  --sonar-glow: rgba(79, 240, 214, 0.55);
  --ember: #d4622a;
  --ember-deep: #8c3a14;
  --text: #cfe4e1;
  --text-dim: #7f9c9a;
  --text-faint: #557270;
  --font: "Helvetica Neue", "Arial Narrow", "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
body {
  font-family: var(--font);
  font-stretch: condensed;
  letter-spacing: 0.01em;
  font-size: 13px;
  line-height: 1.42;
  color: var(--text);
  background:
    radial-gradient(120% 80% at 18% 0%, #0e2426 0%, rgba(10, 20, 22, 0) 55%),
    linear-gradient(180deg, #0b1a1c 0%, #071012 40%, #05090a 100%);
  background-color: var(--abyss);
  min-height: 100vh;
  padding-bottom: 0;
}
::selection {
  background: var(--sonar);
  color: #04100f;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #071214 0%, #061012 100%);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  max-width: 1360px;
  margin: 0 auto;
}
a[data-contract="site-name"].brand {
  color: var(--sonar);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 2px 8px 2px 10px;
  border-left: 2px solid var(--sonar);
  background: rgba(79, 240, 214, 0.06);
}
a[data-contract="site-name"].brand:hover {
  background: rgba(79, 240, 214, 0.14);
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border: 1px solid var(--line-soft);
  background: rgba(18, 37, 40, 0.5);
  transition: color 0.12s linear, border-color 0.12s linear,
    background 0.12s linear;
}
a.runtime-category:hover {
  color: var(--sonar);
  border-color: var(--sonar-dim);
  background: rgba(79, 240, 214, 0.08);
}
.movie-detail-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sonar);
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 2px solid var(--sonar);
}
.hero-sonar {
  display: block;
  padding: 14px 0 4px;
}
.sonar-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 90% at 50% 55%, #0d2a2b 0%, #071618 55%, #050c0d 100%);
  min-height: 260px;
  aspect-ratio: 21 / 9;
}
.sonar-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 240, 214, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 240, 214, 0.09) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
}
.sonar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(79, 240, 214, 0.28);
  border-radius: 50%;
}
.sonar-ring-1 {
  width: 90px;
  height: 90px;
  border-color: rgba(79, 240, 214, 0.45);
}
.sonar-ring-2 {
  width: 190px;
  height: 190px;
  border-color: rgba(79, 240, 214, 0.3);
}
.sonar-ring-3 {
  width: 300px;
  height: 300px;
  border-color: rgba(79, 240, 214, 0.18);
}
.sonar-blip {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--sonar);
  box-shadow: 0 0 10px 2px var(--sonar-glow);
  transform: translate(-50%, -50%);
}
.sonar-blip-a {
  top: 34%;
  left: 62%;
  animation: blip-pulse 2.4s ease-in-out infinite;
}
.sonar-blip-b {
  top: 63%;
  left: 44%;
  animation: blip-pulse 3.1s ease-in-out infinite 0.6s;
}
.sonar-blip-c {
  top: 46%;
  left: 78%;
  background: var(--ember);
  box-shadow: 0 0 12px 2px rgba(212, 98, 42, 0.7);
  animation: blip-pulse 2.7s ease-in-out infinite 1.1s;
}
.sonar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46%;
  height: 46%;
  transform-origin: 0 0;
  background: conic-gradient(
    from 0deg,
    rgba(79, 240, 214, 0.28) 0deg,
    rgba(79, 240, 214, 0.02) 42deg,
    rgba(79, 240, 214, 0) 60deg
  );
  animation: sweep-rotate 6.5s linear infinite;
  pointer-events: none;
}
@keyframes sweep-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes blip-pulse {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1.45);
  }
}
.hero-title-block {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 10px 14px 10px 12px;
  max-width: min(560px, 82%);
  background: linear-gradient(
    90deg,
    rgba(5, 12, 13, 0.94) 0%,
    rgba(5, 12, 13, 0.72) 70%,
    rgba(5, 12, 13, 0) 100%
  );
  border-left: 3px solid var(--ember);
}
.movie-title {
  font-size: clamp(20px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: #eafcf8;
  text-shadow: 0 0 18px rgba(79, 240, 214, 0.35);
}
.movie-tagline {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--ember);
  color: #e39a63;
}
.player-wrap {
  position: relative;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #04090a;
  width: 100%;
  max-width: 100%;
}
.player-wrap video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  padding: 7px 9px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0c1c1e 0%, #081416 100%);
}
.player-controls button {
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  color: var(--text-dim);
  background: rgba(18, 37, 40, 0.7);
  border: 1px solid var(--line);
  transition: color 0.12s linear, border-color 0.12s linear,
    background 0.12s linear;
}
.player-controls button:hover {
  color: var(--sonar);
  border-color: var(--sonar-dim);
}
.player-controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #163032;
  border: 1px solid var(--line);
  cursor: pointer;
  min-width: 0;
}
.player-controls input[data-player-action="progress"] {
  flex: 1 1 160px;
}
.player-controls input[data-player-action="volume"] {
  flex: 0 1 90px;
}
.player-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 14px;
  background: var(--sonar);
  box-shadow: 0 0 8px var(--sonar-glow);
  border: none;
}
.player-controls input[type="range"]::-moz-range-thumb {
  width: 8px;
  height: 14px;
  background: var(--sonar);
  border: none;
  border-radius: 0;
}
.player-controls button.is-active, .player-controls button.is-muted, .player-controls button.is-fast {
  color: var(--abyss);
  background: var(--sonar);
  border-color: var(--sonar);
}
.player-wrap.is-theater {
  border-color: var(--sonar-dim);
  box-shadow: 0 0 0 1px rgba(79, 240, 214, 0.25),
    0 0 34px rgba(79, 240, 214, 0.12);
}
body.is-lights-down .movie-detail-main {
  filter: brightness(0.55) saturate(0.8);
}
body.is-lights-down .player-wrap {
  filter: brightness(1.9) saturate(1.1);
}
.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 34, 36, 0.72) 0%, rgba(8, 18, 20, 0.72) 100%);
}
.poster-wrap {
  width: 100%;
  max-width: 260px;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #061012;
  filter: saturate(0.92) contrast(1.05);
}
.overview-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.seo-description {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--text-dim);
  padding-left: 10px;
  border-left: 1px solid var(--line);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
}
.episode-status span {
  padding: 3px 9px;
  border: 1px solid var(--line);
  background: rgba(18, 37, 40, 0.6);
  color: var(--text-dim);
  white-space: nowrap;
}
.status-current {
  color: #04100f;
  background: var(--sonar);
  border-color: var(--sonar);
  font-weight: 700;
}
.status-total {
  color: var(--text);
}
.status-duration {
  color: #e39a63;
  border-color: var(--ember-deep);
  background: rgba(140, 58, 20, 0.18);
}
.cast-strip {
  min-width: 0;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 74px;
  padding: 6px 4px;
  border: 1px solid var(--line-soft);
  background: rgba(13, 28, 30, 0.55);
  text-align: center;
}
.cast-avatar {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sonar-dim);
  background:
    radial-gradient(circle at 50% 38%, #1c4a48 0%, #0a1a1b 70%),
    #0a1a1b;
  box-shadow: inset 0 0 10px rgba(79, 240, 214, 0.18);
  position: relative;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 12px 15px auto 15px;
  height: 10px;
  background: rgba(79, 240, 214, 0.35);
  box-shadow: 0 10px 0 -2px rgba(79, 240, 214, 0.22);
}
.cast-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.cast-role {
  font-size: 10.5px;
  color: var(--text-faint);
  line-height: 1.25;
}
.synopsis-block {
  min-width: 0;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 7px;
  padding-left: 10px;
  border-left: 1px solid var(--line-soft);
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.details-block {
  min-width: 0;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
}
.detail-key {
  flex: 0 0 auto;
  min-width: 62px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.detail-value {
  color: var(--text);
  min-width: 0;
}
.timeline-strip {
  margin-top: 20px;
  padding: 14px 0 6px;
  border-top: 1px solid var(--line);
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  position: relative;
  padding-top: 26px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(79, 240, 214, 0.05) 0%,
    rgba(79, 240, 214, 0.5) 45%,
    rgba(212, 98, 42, 0.7) 100%
  );
}
.timeline-tick {
  position: relative;
  padding: 8px 10px 8px 10px;
  border-right: 1px solid var(--line-soft);
  min-width: 0;
}
.timeline-tick:first-child {
  border-left: 1px solid var(--line-soft);
}
.timeline-tick::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 1px;
  height: 10px;
  background: var(--sonar-dim);
}
.tick-timecode {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sonar);
  margin-bottom: 4px;
}
.tick-label {
  display: block;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-dim);
}
.timeline-tick.is-current {
  background: rgba(79, 240, 214, 0.06);
  border-color: var(--sonar-dim);
}
.timeline-tick.is-current .tick-timecode {
  color: #04100f;
  background: var(--sonar);
  display: inline-block;
  padding: 1px 6px;
  letter-spacing: 0.14em;
}
.timeline-tick.is-current .tick-label {
  color: var(--text);
}
.tick-pulse {
  position: absolute;
  top: -14px;
  left: 8px;
  width: 6px;
  height: 6px;
  background: var(--sonar);
  box-shadow: 0 0 10px 3px var(--sonar-glow);
  animation: blip-pulse 1.8s ease-in-out infinite;
}
.episodes-grid-section {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  background: linear-gradient(180deg, #0c1a1c 0%, #081214 100%);
  min-width: 0;
}
.episode-card.is-current {
  border-color: var(--sonar-dim);
  border-left-color: var(--sonar);
  background: linear-gradient(180deg, #0e2426 0%, #081416 100%);
  box-shadow: inset 0 0 22px rgba(79, 240, 214, 0.08);
}
.episode-number {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--sonar-dim);
  align-self: flex-start;
  border: 1px solid var(--line);
  padding: 1px 6px;
}
.episode-card.is-current .episode-number {
  color: #04100f;
  background: var(--sonar);
  border-color: var(--sonar);
  font-weight: 700;
}
.episode-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.25;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--line-soft);
}
.episode-card.is-current .episode-duration {
  color: #e39a63;
  border-top-color: var(--ember-deep);
}
.comments-section {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.comment-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  align-items: start;
}
.comment-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.comment-col:last-child {
  padding-top: 22px;
}
.comment-card {
  position: relative;
  padding: 8px 11px 8px 13px;
  border: 1px solid var(--line-soft);
  background: rgba(10, 22, 24, 0.6);
  border-left: 2px solid var(--sonar-dim);
}
.comment-nick {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sonar);
  margin-bottom: 3px;
}
.comment-nick::before {
  content: "> ";
  color: var(--ember);
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-dim);
}
.rec-region {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
[data-runtime="recommendation"] {
  display: block;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #0c1a1c 0%, #081214 100%);
  overflow: hidden;
  min-width: 0;
}
a.rec-card {
  color: var(--text-dim);
  text-decoration: none;
  transition: border-color 0.12s linear, background 0.12s linear;
}
a.rec-card:hover {
  border-color: var(--sonar-dim);
  background: linear-gradient(180deg, #102526 0%, #0a1819 100%);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #061012;
}
.rec-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
  padding: 6px 8px 0;
  line-height: 1.3;
}
.rec-blurb {
  display: block;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-faint);
  padding: 3px 8px 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rec-scroll-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.rec-scroll-track > [data-runtime="recommendation"] {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
.rec-scroll-track > [data-runtime="recommendation"] img {
  aspect-ratio: 16 / 10;
}
.rec-scroll-track::-webkit-scrollbar {
  height: 6px;
}
.rec-scroll-track::-webkit-scrollbar-track {
  background: #0a1618;
}
.rec-scroll-track::-webkit-scrollbar-thumb {
  background: var(--sonar-dim);
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.rec-grid > [data-runtime="recommendation"] img {
  aspect-ratio: 16 / 9;
}
.rec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.rec-list-item {
  min-width: 0;
}
.rec-list-item [data-runtime="recommendation"] {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-content: start;
}
.rec-list-item [data-runtime="recommendation"] img {
  grid-row: 1 / span 2;
  width: 96px;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.rec-list-item .rec-name {
  padding: 6px 8px 0 0;
}
.rec-list-item .rec-blurb {
  padding: 3px 8px 8px 0;
}
.site-footer {
  max-width: 1360px;
  margin: 24px auto 0;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 16, 18, 0.4) 0%, rgba(4, 9, 10, 0.9) 100%);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.friend-links-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-right: 4px;
  white-space: nowrap;
}
a.runtime-friend-link {
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 11.5px;
  padding: 2px 7px;
  border: 1px solid var(--line-soft);
  background: rgba(18, 37, 40, 0.5);
}
a.runtime-friend-link:hover {
  color: var(--sonar);
  border-color: var(--sonar-dim);
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-faint);
  max-width: 900px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
a[data-contract="footer-home"] {
  color: var(--sonar);
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover {
  border-bottom-color: var(--sonar);
}
a[data-contract="footer-sitemap"] {
  color: #e39a63;
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-sitemap"]:hover {
  border-bottom-color: #e39a63;
}
@media (max-width: 1080px) {.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
.timeline-track::before {
    display: none;
  }
.timeline-tick {
    border: 1px solid var(--line-soft);
    margin: -1px 0 0 -1px;
  }
.timeline-tick::before {
    display: none;
  }
.tick-pulse {
    top: 8px;
    left: auto;
    right: 10px;
  }}
@media (max-width: 860px) {.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-wrap {
    max-width: 200px;
  }
.comment-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.comment-col:last-child {
    padding-top: 0;
  }}
@media (max-width: 680px) {.movie-detail-main {
    padding: 0 12px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 10px;
  }
.sonar-screen {
    aspect-ratio: 16 / 10;
    min-height: 190px;
  }
.hero-title-block {
    max-width: 92%;
    padding: 8px 10px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-scroll-track > [data-runtime="recommendation"] {
    flex: 0 0 168px;
  }
.site-footer {
    padding: 14px 12px;
  }}
@media (max-width: 420px) {.rec-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-track {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-card {
    width: 68px;
  }
.player-controls button {
    padding: 4px 7px;
    font-size: 10.5px;
  }}

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}
