:root {
  --bg-abyss: #0a0d12;
  --bg-iron: #12161d;
  --bg-slab: #181d26;
  --bg-frost: #1f2530;
  --line-steel: #2a3140;
  --line-ice: #1e3a52;
  --text-primary: #d7dee8;
  --text-secondary: #8b96a5;
  --text-dim: #5c6775;
  --ice-bright: #7fd4f0;
  --ice-glow: #a8e8ff;
  --ice-deep: #2a7fa8;
  --ice-crystal: #4ab8dd;
  --aurora-green: #3d8b7a;
  --warn-frost: #c9dce8;
  --font-stack: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans CN", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-narrow: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans CN", "Noto Sans SC", "Arial Narrow", sans-serif;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-stack);
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-primary);
  background-color: var(--bg-abyss);
  background-image:
    radial-gradient(ellipse 100% 60% at 80% -10%, rgba(61, 139, 122, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 10% 5%, rgba(42, 127, 168, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0c1017 0%, #0a0d12 40%, #080a0e 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}
body.lights-dim {
  background-image:
    radial-gradient(ellipse 100% 60% at 80% -10%, rgba(61, 139, 122, 0.03) 0%, transparent 55%),
    linear-gradient(180deg, #040507 0%, #020304 100%);
}
body.lights-dim main, body.lights-dim .site-header, body.lights-dim .site-footer {
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
dl, dd, dt {
  margin: 0;
}
details summary {
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
.page-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 18px 40px;
}
.section-heading {
  font-family: var(--font-narrow);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ice-glow);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-ice);
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--ice-bright), transparent);
  box-shadow: 0 0 6px rgba(127, 212, 240, 0.5);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 18px;
  height: 48px;
  background: rgba(10, 13, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-steel);
  max-width: 100%;
}
a[data-contract="site-name"].site-logo {
  font-family: var(--font-narrow);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--ice-glow);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(127, 212, 240, 0.35);
  transition: color 0.2s ease;
  text-decoration: none;
}
a[data-contract="site-name"].site-logo:hover {
  color: #ffffff;
  text-decoration: none;
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  min-width: 0;
}
.category-bar::-webkit-scrollbar {
  display: none;
}
a.runtime-category {
  display: inline-block;
  font-family: var(--font-narrow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}
a.runtime-category:hover {
  color: var(--ice-glow);
  background-color: rgba(127, 212, 240, 0.08);
  text-decoration: none;
}
.movie-overview {
  position: relative;
  margin-bottom: 24px;
  background: linear-gradient(165deg, var(--bg-iron) 0%, var(--bg-abyss) 100%);
  border: 1px solid var(--line-steel);
  border-radius: 3px;
  overflow: hidden;
}
.overview-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 20px 18px;
  background:
    linear-gradient(180deg, rgba(10, 13, 18, 0.55) 0%, rgba(10, 13, 18, 0.88) 100%),
    radial-gradient(ellipse 70% 90% at 30% 40%, rgba(42, 127, 168, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(61, 139, 122, 0.1) 0%, transparent 55%),
    linear-gradient(135deg, #101720 0%, #0d1118 50%, #141b26 100%);
  border-bottom: 1px solid var(--line-steel);
}
.poster-column {
  flex: 0 0 auto;
  align-self: flex-start;
}
.poster-figure {
  width: 180px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  background: var(--bg-frost);
  box-shadow:
    0 0 0 1px rgba(127, 212, 240, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(10, 13, 18, 0.4);
}
.poster-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(127, 212, 240, 0.08) 0%, transparent 40%),
    linear-gradient(0deg, rgba(10, 13, 18, 0.45) 0%, transparent 30%);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}
.movie-title {
  font-family: var(--font-narrow);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.2;
  color: #eaf4fa;
  text-shadow:
    0 0 20px rgba(127, 212, 240, 0.4),
    0 0 40px rgba(42, 127, 168, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
}
.movie-tagline {
  font-family: var(--font-narrow);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--ice-crystal);
  line-height: 1.4;
  padding-left: 10px;
  border-left: 2px solid var(--ice-deep);
}
.movie-seo {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 56ch;
}
.player-shell {
  position: relative;
  width: 100%;
  margin: 0;
  background: #000;
  border-bottom: 1px solid var(--line-steel);
}
.player-shell.theater-mode {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
  border: none;
}
.player-shell.theater-mode .main-player {
  max-width: 100%;
  max-height: 100vh;
}
.player-shell.theater-mode .player-controls {
  display: flex;
}
.main-player {
  display: block;
  width: 100%;
  background: #000;
  outline: none;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 6px 8px;
  background: rgba(8, 10, 14, 0.9);
  border-top: 1px solid var(--line-steel);
}
.player-control {
  font-family: var(--font-narrow);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.player-control:hover {
  color: var(--ice-glow);
  border-color: var(--line-ice);
  background-color: rgba(127, 212, 240, 0.06);
}
.player-control.click, .player .player-control.click {
  color: var(--ice-glow);
  background-color: rgba(127, 212, 240, 0.1);
  border-color: var(--ice-deep);
}
.player-control.play, .player .player-control.play {
  color: var(--ice-bright);
}
.player-control.fullscreen, .player .player-control.fullscreen {
  margin-left: auto;
}
.player-control.theater, .player .player-control.theater {
  color: var(--text-primary);
}
.player.progress, .player .progress {
  color: var(--ice-bright);
}
.player.volume, .player .volume {
  color: var(--ice-bright);
}
.player.mute, .player .mute {
  color: var(--text-dim);
}
.player.speed, .player .speed {
  color: var(--ice-bright);
}
.player.pip, .player .pip {
  color: var(--ice-bright);
}
.player.theater, .player .theater {
  color: var(--ice-glow);
}
.player.light, .player .light {
  color: var(--warn-frost);
}
.overview-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 20px 20px;
}
.overview-meta-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: start;
}
.episode-status-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(30, 58, 82, 0.35) 0%, rgba(18, 22, 29, 0.6) 100%);
  border: 1px solid var(--line-ice);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.episode-status-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--ice-bright), var(--ice-deep));
}
.status-line {
  font-family: var(--font-narrow);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}
.status-line.status-current {
  font-size: 13px;
  font-weight: 700;
  color: var(--ice-glow);
  text-shadow: 0 0 8px rgba(127, 212, 240, 0.4);
}
.details-panel {
  display: flex;
  flex-direction: column;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(42, 49, 64, 0.5);
}
.detail-key {
  font-family: var(--font-narrow);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
.detail-value {
  font-size: 12px;
  color: var(--text-primary);
  text-align: right;
  overflow-wrap: break-word;
  word-break: break-word;
}
.cast-panel {
  display: flex;
  flex-direction: column;
}
.cast-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 4px;
  background: linear-gradient(180deg, rgba(31, 37, 48, 0.5) 0%, rgba(18, 22, 29, 0.3) 100%);
  border: 1px solid rgba(42, 49, 64, 0.7);
  border-radius: 2px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.cast-card:hover {
  border-color: var(--line-ice);
  background-color: rgba(30, 58, 82, 0.25);
}
.cast-avatar {
  width: 52px;
  height: 52px;
  background:
    linear-gradient(145deg, #2a3140 0%, #1a202a 60%, #222a36 100%);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  position: relative;
  overflow: hidden;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127, 212, 240, 0.12) 0%, transparent 50%);
}
.cast-name {
  font-family: var(--font-narrow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.2;
}
.cast-role {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.2;
}
.synopsis-panel {
  display: flex;
  flex-direction: column;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(31, 37, 48, 0.25);
  border-left: 2px solid var(--line-ice);
  border-radius: 0 2px 2px 0;
}
.synopsis-paragraph {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-indent: 2em;
}
.timeline-section {
  margin-bottom: 24px;
}
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--line-ice) 0%, var(--line-steel) 50%, var(--ice-deep) 100%);
}
.timeline-node {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0 6px 4px;
  position: relative;
  transition: background-color 0.2s ease;
}
.timeline-node:hover {
  background-color: rgba(30, 58, 82, 0.15);
}
.timeline-marker {
  position: absolute;
  left: -20px;
  top: 10px;
  width: 11px;
  height: 11px;
  background: var(--line-steel);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: translateX(-50%);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.timeline-node:hover .timeline-marker {
  background: var(--ice-deep);
  box-shadow: 0 0 6px rgba(42, 127, 168, 0.5);
}
.timeline-node-current .timeline-marker {
  background: var(--ice-bright);
  box-shadow: 0 0 10px rgba(127, 212, 240, 0.7);
  width: 13px;
  height: 13px;
  top: 9px;
}
.timeline-timecode {
  font-family: var(--font-narrow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 48px;
}
.timeline-node-current .timeline-timecode {
  color: var(--ice-glow);
  text-shadow: 0 0 8px rgba(127, 212, 240, 0.4);
}
.timeline-label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.timeline-node-current .timeline-label {
  color: var(--ice-glow);
  font-weight: 600;
}
.episodes-section {
  margin-bottom: 24px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.episode-card {
  background: linear-gradient(180deg, rgba(24, 29, 38, 0.7) 0%, rgba(18, 22, 29, 0.9) 100%);
  border: 1px solid var(--line-steel);
  border-radius: 2px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  overflow: hidden;
}
.episode-card:hover {
  border-color: var(--line-ice);
}
.episode-card-current {
  border-color: var(--ice-deep);
  background: linear-gradient(180deg, rgba(30, 58, 82, 0.3) 0%, rgba(18, 22, 29, 0.9) 100%);
  box-shadow: 0 0 12px rgba(42, 127, 168, 0.15);
}
.episode-card-current .episode-number {
  color: var(--ice-glow);
  text-shadow: 0 0 6px rgba(127, 212, 240, 0.4);
}
.episode-card-current .episode-title {
  color: var(--ice-glow);
}
.episode-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: baseline;
  gap: 2px 8px;
  padding: 8px 10px;
  position: relative;
}
.episode-summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.2s ease, transform 0.2s ease;
}
.episode-card[open] .episode-summary::after {
  content: "−";
  color: var(--ice-bright);
}
.episode-number {
  font-family: var(--font-narrow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ice-crystal);
  white-space: nowrap;
  grid-row: 1;
  grid-column: 1;
}
.episode-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  grid-row: 1;
  grid-column: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episode-brief {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-dim);
  grid-row: 2;
  grid-column: 1 / 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episode-duration {
  font-family: var(--font-narrow);
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
  grid-row: 1;
  grid-column: 3;
  padding-right: 14px;
}
.episode-card[open] .episode-brief {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.episode-card[open] .episode-duration {
  color: var(--ice-crystal);
}
.episode-card[open] {
  grid-column: 1 / -1;
}
.comments-section {
  margin-bottom: 24px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.comment-card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(31, 37, 48, 0.45);
  border-radius: 2px;
  border: none;
}
.comment-avatar {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a3140 0%, #1a202a 100%);
  margin-top: 2px;
  box-shadow: 0 0 0 1px rgba(127, 212, 240, 0.15);
}
.comment-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.comment-nickname {
  font-family: var(--font-narrow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ice-crystal);
}
.comment-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
  overflow-wrap: break-word;
  word-break: break-word;
}
.rec-region {
  margin-bottom: 20px;
}
.rec-heading {
  font-family: var(--font-narrow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-primary);
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-steel);
  position: relative;
}
.rec-heading::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--ice-crystal);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.rec-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 6px;
}
a.rec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
  background: rgba(24, 29, 38, 0.55);
  border: 1px solid rgba(42, 49, 64, 0.6);
  border-radius: 2px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
a.rec-item:hover {
  border-color: var(--line-ice);
  background-color: rgba(30, 58, 82, 0.2);
  text-decoration: none;
}
[data-runtime="recommendation"] img.rec-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1px;
  background: var(--bg-frost);
  display: block;
}
.rec-name {
  font-family: var(--font-narrow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rec-region-1 .rec-list {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
.rec-region-2 .rec-list {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.rec-region-3 .rec-list {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.rec-region-4 .rec-list {
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
}
.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 18px 28px;
  border-top: 1px solid var(--line-steel);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--font-narrow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--ice-bright);
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 70ch;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(42, 49, 64, 0.4);
}
.friend-links-label {
  font-family: var(--font-narrow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dim);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
a.runtime-friend-link:hover {
  color: var(--ice-crystal);
  text-decoration: underline;
}
@media (max-width: 900px) {.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.overview-meta-row {
    grid-template-columns: minmax(130px, 0.6fr) minmax(0, 1.4fr);
  }
.movie-title {
    font-size: 24px;
  }}
@media (max-width: 720px) {.page-main {
    padding: 12px 12px 32px;
  }
.site-header {
    padding: 0 12px;
    gap: 14px;
    height: 44px;
  }
.overview-hero {
    flex-direction: row;
    gap: 14px;
    padding: 16px 14px 14px;
  }
.poster-figure {
    width: 130px;
  }
.overview-meta-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
.details-list {
    grid-template-columns: 1fr;
  }
.episode-grid {
    grid-template-columns: 1fr;
  }
.episode-card[open] {
    grid-column: 1;
  }
.comment-stack {
    grid-template-columns: 1fr;
  }
.movie-title {
    font-size: 20px;
    letter-spacing: 2px;
  }
.movie-tagline {
    font-size: 12px;
  }
.cast-strip {
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  }
.cast-avatar {
    width: 44px;
    height: 44px;
  }
.rec-list, .rec-region-1 .rec-list, .rec-region-2 .rec-list, .rec-region-3 .rec-list, .rec-region-4 .rec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.player-controls {
    gap: 1px;
    padding: 5px 6px;
  }
.player-control {
    font-size: 10px;
    padding: 3px 7px;
  }}
@media (max-width: 480px) {.page-main {
    padding: 10px 10px 28px;
  }
.site-header {
    padding: 0 10px;
    height: 42px;
  }
a[data-contract="site-name"].site-logo {
    font-size: 15px;
  }
.overview-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px 12px;
  }
.poster-column {
    align-self: center;
  }
.poster-figure {
    width: 150px;
  }
.hero-info {
    width: 100%;
    padding-top: 0;
  }
.movie-title {
    font-size: 18px;
  }
.episode-summary {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
  }
.episode-duration {
    grid-row: 1;
    grid-column: 2;
    text-align: right;
    padding-right: 16px;
  }
.episode-brief {
    grid-column: 1 / -1;
  }
.cast-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-list, .rec-region-1 .rec-list, .rec-region-2 .rec-list, .rec-region-3 .rec-list, .rec-region-4 .rec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-list {
    padding-left: 16px;
  }
.timeline-marker {
    left: -16px;
  }
.footer-nav {
    gap: 12px;
  }}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-abyss);
}
::-webkit-scrollbar-thumb {
  background: var(--line-steel);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ice-deep);
}
::selection {
  background: rgba(127, 212, 240, 0.25);
  color: #ffffff;
}

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}
