:root {
  --bg-deep: #0d1117;
  --bg-panel: #151c26;
  --bg-card: #1b2432;
  --bg-card-hi: #212c3d;
  --neon-purple: #9b6bff;
  --neon-purple-soft: rgba(155, 107, 255, 0.18);
  --warm-yellow: #ffc857;
  --warm-yellow-soft: rgba(255, 200, 87, 0.14);
  --tile-gray: #2a3341;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text-main: #e8edf5;
  --text-dim: #98a5b8;
  --text-faint: #6b7789;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-head: "PingFang SC", "Microsoft YaHei", "Heiti SC", "Noto Sans SC", system-ui, sans-serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  --gap-xs: 6px;
  --gap-sm: 10px;
  --gap-md: 16px;
  --gap-lg: 26px;
  --gap-xl: 40px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 12% -5%, rgba(155, 107, 255, 0.16), transparent 46%),
    radial-gradient(circle at 88% 3%, rgba(255, 200, 87, 0.10), transparent 42%),
    linear-gradient(180deg, #10161f 0%, #0d1117 34%, #0b0f15 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
h1, h2, h3, p, dl, dd, dt {
  margin: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 17, 23, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}
a[data-contract="site-name"].site-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--warm-yellow);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(255, 200, 87, 0.35);
}
a[data-contract="site-name"].site-logo:hover {
  color: #ffd97a;
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--neon-purple-soft);
  border: 1px solid rgba(155, 107, 255, 0.35);
  color: #c9b0ff;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
a.runtime-category:hover {
  background: rgba(155, 107, 255, 0.34);
  color: #ffffff;
  transform: translateY(-1px);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 18px 8px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.movie-overview {
  position: relative;
}
.overview-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: var(--gap-lg);
  align-items: start;
  padding: var(--gap-md);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(155, 107, 255, 0.10), transparent 38%),
    linear-gradient(340deg, rgba(255, 200, 87, 0.07), transparent 40%),
    var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px -28px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
.overview-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.7;
}
.poster-column {
  position: relative;
  z-index: 1;
  align-self: start;
}
.poster-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 34px -18px rgba(155, 107, 255, 0.6);
}
.main-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  background: var(--tile-gray);
}
.overview-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.movie-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 0 26px rgba(155, 107, 255, 0.45);
}
.movie-tagline {
  font-size: 14px;
  color: var(--warm-yellow);
  letter-spacing: 0.06em;
  padding-left: 12px;
  border-left: 3px solid var(--warm-yellow);
  line-height: 1.5;
}
.player-shell {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  background: #05070a;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 1);
}
.main-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: none;
  background: #000;
  object-fit: contain;
}
.player-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(21, 28, 38, 0.96), rgba(13, 17, 23, 0.98));
  border-top: 1px solid var(--line);
}
.player-btn {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 12.5px;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.player-btn:hover {
  background: var(--bg-card-hi);
  border-color: rgba(155, 107, 255, 0.55);
  color: #ffffff;
}
.player-btn:active {
  transform: translateY(1px);
}
.player-btn.is-playing, .player-btn.is-active {
  background: var(--neon-purple-soft);
  border-color: rgba(155, 107, 255, 0.6);
  color: #d9c9ff;
}
.player-btn.is-muted {
  background: rgba(255, 200, 87, 0.14);
  border-color: rgba(255, 200, 87, 0.5);
  color: var(--warm-yellow);
}
.player-progress {
  flex: 1 1 200px;
  min-width: 120px;
  height: 6px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon-purple) 0%, var(--neon-purple) 0%, rgba(255, 255, 255, 0.14) 0%);
  background-color: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  outline: none;
}
.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--warm-yellow);
  border: 2px solid #1b2432;
  box-shadow: 0 0 12px rgba(255, 200, 87, 0.7);
}
.player-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--warm-yellow);
  border: 2px solid #1b2432;
  box-shadow: 0 0 12px rgba(255, 200, 87, 0.7);
}
.player-progress::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.player-volume {
  flex: 0 0 90px;
  width: 90px;
  height: 5px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  outline: none;
}
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-purple);
  border: 2px solid #1b2432;
}
.player-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-purple);
  border: 2px solid #1b2432;
}
.player-volume::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.player-speed {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 12.5px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  outline: none;
}
.player-speed:hover {
  border-color: rgba(155, 107, 255, 0.55);
}
.player-speed option {
  background: #151c26;
  color: var(--text-main);
}
.episode-status {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(155, 107, 255, 0.9), rgba(120, 78, 220, 0.9));
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: rotate(-1.6deg);
  box-shadow: 0 6px 18px -8px rgba(155, 107, 255, 0.9);
  white-space: nowrap;
}
.status-current {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: var(--warm-yellow-soft);
  border: 1px solid rgba(255, 200, 87, 0.45);
  color: var(--warm-yellow);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transform: rotate(1.4deg);
  white-space: nowrap;
}
.section-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-heading::before {
  content: "";
  width: 4px;
  height: 17px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--neon-purple), var(--warm-yellow));
  box-shadow: 0 0 12px rgba(155, 107, 255, 0.7);
  flex: 0 0 auto;
}
.cast-section {
  margin-top: 2px;
}
.cast-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 107, 255, 0.5) transparent;
}
.cast-scroller::-webkit-scrollbar {
  height: 6px;
}
.cast-scroller::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}
.cast-scroller::-webkit-scrollbar-thumb {
  background: rgba(155, 107, 255, 0.5);
  border-radius: 999px;
}
.cast-track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: max-content;
  padding: 2px 2px 4px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 68px;
  flex: 0 0 auto;
}
.cast-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 200, 87, 0.5), transparent 55%),
    linear-gradient(150deg, #3a2f52, #1f2a3a);
  border: 2px solid rgba(155, 107, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(13, 17, 23, 0.9), 0 8px 18px -10px rgba(155, 107, 255, 0.8);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.cast-item:hover .cast-avatar {
  border-color: var(--warm-yellow);
  transform: translateY(-2px);
}
.cast-name {
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
  white-space: nowrap;
  line-height: 1.4;
}
.synopsis-section {
  margin-top: 2px;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.synopsis-para {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  text-indent: 2em;
}
.details-section {
  margin-top: 2px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  border-top: 1px solid var(--line);
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.detail-label {
  flex: 0 0 auto;
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.detail-value {
  flex: 1 1 auto;
  font-size: 13.5px;
  color: var(--text-main);
  margin-left: 0;
  min-width: 0;
  overflow-wrap: break-word;
}
.timeline-section {
  padding: var(--gap-md);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(155, 107, 255, 0.06), transparent 60%), var(--bg-panel);
  border: 1px solid var(--line);
}
.timeline-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 200, 87, 0.5) transparent;
}
.timeline-scroller::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroller::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}
.timeline-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 200, 87, 0.5);
  border-radius: 999px;
}
.timeline-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: max-content;
  padding: 26px 4px 6px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(155, 107, 255, 0.6), rgba(255, 200, 87, 0.55));
  border-radius: 2px;
  opacity: 0.6;
}
.timeline-node {
  position: relative;
  flex: 0 0 190px;
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0 4px;
}
.timeline-bulb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #fff3c9, var(--warm-yellow) 58%, #a97c1e 100%);
  box-shadow: 0 0 0 4px rgba(255, 200, 87, 0.16), 0 0 16px rgba(255, 200, 87, 0.85);
  margin-bottom: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.timeline-node:hover .timeline-bulb {
  transform: scale(1.12);
  box-shadow: 0 0 0 5px rgba(255, 200, 87, 0.22), 0 0 24px rgba(255, 200, 87, 1);
}
.timeline-timecode {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--neon-purple);
  background: var(--neon-purple-soft);
  border: 1px solid rgba(155, 107, 255, 0.4);
  border-radius: var(--radius-sm);
  padding: 2px 9px;
  transform: rotate(-1.5deg);
  white-space: nowrap;
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-dim);
}
.episodes-section {
  padding: var(--gap-md);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--line);
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 34px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(155, 107, 255, 0.08), transparent 55%), var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.episode-card:hover {
  border-color: rgba(155, 107, 255, 0.55);
  transform: translateY(-2px);
}
.episode-number {
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(155, 107, 255, 0.95), rgba(112, 70, 210, 0.95));
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  transform: rotate(-1.8deg);
  box-shadow: 0 6px 16px -8px rgba(155, 107, 255, 0.9);
  white-space: nowrap;
}
.episode-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-main);
  letter-spacing: 0.01em;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-dim);
}
.episode-duration {
  position: absolute;
  right: 12px;
  bottom: 11px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--warm-yellow);
  background: var(--warm-yellow-soft);
  border: 1px solid rgba(255, 200, 87, 0.35);
  border-radius: 999px;
  padding: 2px 9px;
  white-space: nowrap;
}
.comments-section {
  padding: var(--gap-md);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 200, 87, 0.05), transparent 55%), var(--bg-panel);
  border: 1px solid var(--line);
}
.comments-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, #232f42, #1a2331);
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 26px -20px rgba(0, 0, 0, 1);
  transform: rotate(-1.4deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.comment-card:nth-child(2n) {
  transform: rotate(1.5deg);
}
.comment-card:nth-child(3n) {
  transform: rotate(-0.8deg);
}
.comment-card:hover {
  transform: rotate(0deg) translateY(-2px);
  border-color: rgba(255, 200, 87, 0.5);
}
.comment-nickname {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--neon-purple);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-text {
  font-size: 13px;
  line-height: 1.68;
  color: var(--text-dim);
}
.recommendation-region {
  padding: var(--gap-md);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--line);
}
.recommendation-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--warm-yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255, 200, 87, 0.3);
}
.recommendation-heading::before {
  content: "";
  width: 4px;
  height: 17px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--warm-yellow), var(--neon-purple));
  box-shadow: 0 0 12px rgba(255, 200, 87, 0.7);
  flex: 0 0 auto;
}
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
a.recommendation-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text-main);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  min-width: 0;
}
a.recommendation-card:hover {
  border-color: rgba(155, 107, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -20px rgba(155, 107, 255, 0.9);
}
[data-runtime="recommendation"] img.recommendation-poster {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--tile-gray);
  display: block;
}
.recommendation-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommendation-blurb {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: var(--gap-lg);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(155, 107, 255, 0.05), transparent 70%), #0a0e14;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="footer-home"] {
  color: var(--warm-yellow);
}
a[data-contract="footer-sitemap"] {
  color: var(--neon-purple);
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-faint);
  max-width: 860px;
}
.footer-friend-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.friend-links-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 12.5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-faint);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
a.runtime-friend-link:hover {
  color: var(--warm-yellow);
  border-color: rgba(255, 200, 87, 0.45);
  background: var(--warm-yellow-soft);
}
body.theater-mode .overview-shell {
  grid-template-columns: minmax(0, 1fr);
}
body.theater-mode .poster-column {
  display: none;
}
body.lights-off {
  background-color: #04060a;
  background-image: none;
}
body.lights-off .site-header {
  background: rgba(4, 6, 10, 0.92);
}
body.lights-off .overview-shell, body.lights-off .timeline-section, body.lights-off .episodes-section, body.lights-off .comments-section, body.lights-off .recommendation-region {
  filter: brightness(0.72);
}
@media (max-width: 900px) {.overview-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
  }
.comments-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.page-main {
    padding: 16px 13px 6px;
    gap: 20px;
  }
.header-inner {
    padding: 9px 13px;
    gap: 10px;
  }
.overview-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 13px;
  }
.poster-column {
    max-width: 190px;
  }
.movie-title {
    font-size: 23px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-section, .episodes-section, .comments-section, .recommendation-region {
    padding: 13px;
  }
.player-progress {
    flex: 1 1 100%;
    order: 3;
  }
.player-volume {
    flex: 1 1 70px;
    width: auto;
  }}
@media (max-width: 480px) {.movie-title {
    font-size: 20px;
  }
.movie-tagline {
    font-size: 13px;
  }
.section-heading {
    font-size: 15.5px;
  }
.recommendation-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.player-controls {
    gap: 6px;
    padding: 7px 8px;
  }
.player-btn {
    font-size: 11.5px;
    padding: 6px 9px;
  }
.timeline-node {
    flex: 0 0 164px;
    width: 164px;
  }
.cast-item {
    width: 60px;
  }
.cast-avatar {
    width: 52px;
    height: 52px;
  }}

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}
