*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #17181b;
  background-image:
    linear-gradient(180deg, #1d1e22 0%, #17181b 42%, #141518 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 4px);
  color: #e8e2d8;
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
}
h1, h2, h3, p, dl, dd, dt, figure, ol {
  margin: 0;
  padding: 0;
}
ol {
  list-style: none;
}
a {
  color: #ff8a3c;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
:root {
  --bg-metal: #17181b;
  --bg-panel: #202226;
  --bg-panel-2: #26282d;
  --line: #34373d;
  --line-soft: #2b2e33;
  --ink: #e8e2d8;
  --ink-dim: #9aa0a8;
  --ink-faint: #6f757d;
  --grill: #ff7a2f;
  --grill-deep: #c94d12;
  --warn: #ffc93c;
  --danger: #ff4d3d;
  --camp-a: #ff7a2f;
  --camp-b: #4fd1c5;
  --camp-c: #ffc93c;
  --camp-d: #b07cff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #1f2125 0%, #191a1e 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5), 0 8px 22px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 16px;
}
a[data-contract="site-name"] {
  color: #fff2e2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 3px 10px 3px 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(100deg, var(--grill-deep), var(--grill) 70%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 3px 0 #7d2c07;
}
a[data-contract="site-name"]:hover {
  filter: brightness(1.08);
}
.category-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: #ffe9d4;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #4a3a2c;
  background: #24262b;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: #1a1207;
  background: var(--warn);
  border-color: var(--warn);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section-heading {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #ffd9b0;
  text-transform: uppercase;
  padding-left: 11px;
  border-left: 5px solid var(--grill);
  border-radius: 2px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #24262b 0%, #1e2024 60%, #1b1c20 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 26px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 122, 47, 0.05) 0 2px, transparent 2px 9px),
    radial-gradient(120% 70% at 100% 0%, rgba(255, 122, 47, 0.12), transparent 60%);
}
.overview-poster-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  align-self: start;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #3c3f45;
  background: #101114;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.overview-poster {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}
.poster-fork-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  transform: rotate(-6deg);
}
.fork-badge-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #2a1206;
  background: linear-gradient(100deg, var(--warn), #ff9f3c);
  padding: 4px 9px;
  border-radius: 6px;
  box-shadow: 0 3px 0 #8a5a05, 0 6px 14px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.vote-bar-shell {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 9px;
  border-radius: var(--radius-sm);
  background: rgba(14, 15, 18, 0.86);
  border: 1px solid rgba(255, 122, 47, 0.4);
  backdrop-filter: blur(3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
}
.vote-bar-fill-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--warn);
  white-space: nowrap;
}
.vote-bar-track {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: #14161a;
  border: 1px solid #3a3d43;
  overflow: hidden;
}
.vote-bar-fill {
  display: block;
  height: 100%;
  width: 27%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--grill-deep), var(--grill) 55%, var(--warn));
  box-shadow: 0 0 12px rgba(255, 122, 47, 0.65);
  animation: vote-pulse 1.4s ease-in-out infinite;
}
@keyframes vote-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
.overview-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.movie-title {
  font-size: clamp(26px, 4.4vw, 46px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.02;
  color: #fff4e8;
  text-shadow: 0 3px 0 #6d2a06, 0 10px 24px rgba(0, 0, 0, 0.6);
  font-stretch: condensed;
}
.movie-tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--warn);
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 201, 60, 0.08);
  border-left: 3px solid var(--warn);
}
.episode-status {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.status-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.status-chip {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  color: #c9ced6;
  background: #2a2d33;
  border: 1px solid #3b3f46;
  white-space: nowrap;
}
.status-chip-current {
  color: #1a1207;
  background: linear-gradient(100deg, var(--grill), #ffa14f);
  border-color: #ffa14f;
  box-shadow: 0 2px 0 #8d3608;
}
.status-chip-warn {
  color: #221802;
  background: linear-gradient(100deg, var(--warn), #ffd86e);
  border-color: var(--warn);
  box-shadow: 0 2px 0 #8a6504;
  animation: vote-pulse 1.8s ease-in-out infinite;
}
.cast-strip {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cast-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cast-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px 4px 5px;
  border-radius: var(--radius-sm);
  background: #2a2d33;
  border: 1px solid #3b3f46;
  border-left-width: 4px;
  min-width: 0;
}
.cast-index {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #14161a;
  background: #8f959d;
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1.2;
}
.cast-name {
  font-size: 12px;
  font-weight: 800;
  color: #eae5dc;
  white-space: nowrap;
}
.cast-camp-a { border-left-color: var(--camp-a); }
.cast-camp-a .cast-index { background: var(--camp-a); }
.cast-camp-b { border-left-color: var(--camp-b); }
.cast-camp-b .cast-index { background: var(--camp-b); }
.cast-camp-c { border-left-color: var(--camp-c); }
.cast-camp-c .cast-index { background: var(--camp-c); }
.cast-camp-d { border-left-color: var(--camp-d); }
.cast-camp-d .cast-index { background: var(--camp-d); }
.synopsis-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.synopsis-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.synopsis-text {
  font-size: 12.5px;
  line-height: 1.62;
  color: #c3c8cf;
}
.details-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.details-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 5px 14px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px dashed #34373d;
  min-width: 0;
}
.detail-row dt {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.detail-row dd {
  margin: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: #e4dfd6;
  min-width: 0;
}
.detail-row-score {
  background: rgba(255, 201, 60, 0.1);
  border-bottom-color: var(--warn);
}
.detail-row-score dd {
  color: var(--warn);
  font-size: 15px;
  font-weight: 900;
}
.player-shell {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: #191a1e;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}
.player-shell video {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-sm);
  background: #0c0d10;
}
.player-caption {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--warn);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.player-btn {
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffe6d2;
  background: #2a2d33;
  border: 1px solid #41454c;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.player-btn:hover {
  background: #34383f;
  border-color: #565b63;
}
.player-btn.is-active, .player-btn[data-player-action="play"].is-active {
  color: #1a1207;
  background: linear-gradient(100deg, var(--grill), #ffa14f);
  border-color: #ffa14f;
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  flex: 1 1 120px;
  min-width: 90px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--grill-deep), var(--grill));
  outline: none;
  cursor: pointer;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--warn);
  border: 2px solid #2a1a06;
  box-shadow: 0 0 8px rgba(255, 201, 60, 0.8);
}
.player-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid #2a1a06;
  border-radius: 50%;
  background: var(--warn);
}
.player-select {
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 999px;
  color: #ffe6d2;
  background: #2a2d33;
  border: 1px solid #41454c;
  cursor: pointer;
}
.player-shell.is-theater {
  background: #101114;
  border-color: var(--grill);
}
.player-shell.is-lights-off {
  background: #050607;
}
.player-shell.is-lights-off video {
  filter: brightness(0.86);
}
.player-shell:fullscreen {
  padding: 0;
  background: #000;
  border-radius: 0;
  justify-content: center;
}
.timeline-section {
  padding: 14px 14px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #22242a 0%, #1c1d22 100%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.timeline-node {
  display: grid;
  grid-template-columns: 62px 46px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #2c2f35;
}
.timeline-timecode {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--grill);
  background: #14161a;
  border: 1px solid #3a3d43;
  border-radius: 6px;
  padding: 3px 0;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.timeline-arc {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--grill-deep), var(--grill), var(--warn));
}
.timeline-arc::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--warn);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 201, 60, 0.8);
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.4;
  color: #cdd2d9;
  min-width: 0;
}
.episodes-section {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #202227 0%, #1b1c21 100%);
  border: 1px solid var(--line);
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  background: #26282d;
  border: 1px solid #34373d;
  border-top: 3px solid #4a4e56;
  min-width: 0;
}
.episode-card-current {
  background: linear-gradient(160deg, #35251a, #26282d 70%);
  border-color: var(--grill);
  border-top-color: var(--grill);
  box-shadow: 0 0 0 1px rgba(255, 122, 47, 0.35), 0 8px 18px rgba(0, 0, 0, 0.4);
}
.episode-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.episode-number {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #14161a;
  background: #9aa0a8;
  border-radius: 5px;
  padding: 2px 7px;
  white-space: nowrap;
}
.episode-card-current .episode-number {
  background: var(--grill);
  color: #1a1207;
}
.episode-duration {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.episode-title {
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #f2ede4;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.5;
  color: #a9afb7;
}
.rec-region {
  padding: 12px 14px 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #202227 0%, #1b1c21 100%);
  border: 1px solid var(--line);
}
.rec-region-1 { border-left: 4px solid var(--camp-a); }
.rec-region-2 { border-left: 4px solid var(--camp-b); }
.rec-region-3 { border-left: 4px solid var(--camp-c); }
.rec-region-4 { border-left: 4px solid var(--camp-d); }
.rec-heading {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ffd9b0;
  text-align: left;
  margin-bottom: 9px;
  padding-left: 9px;
  border-left: 3px solid var(--grill);
  line-height: 1.3;
}
.rec-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
  align-items: start;
}
.rec-row-compact {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border-radius: var(--radius-sm);
  background: #26282d;
  border: 1px solid #34373d;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
a.rec-card:hover {
  background: #2d3036;
  border-color: var(--grill);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  background: #101114;
  border: 1px solid #3a3d43;
}
.rec-name {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #f0ebe2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.45;
  color: #9aa0a8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.comments-section {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #1f2126 0%, #1a1b20 100%);
  border: 1px solid var(--line);
}
.comments-masonry {
  column-count: 3;
  column-gap: 8px;
}
.comment-card {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 8px;
  padding: 9px 10px 10px;
  border-radius: var(--radius-sm);
  background: #26282d;
  border: 1px solid #34373d;
  border-right: 3px solid rgba(255, 122, 47, 0.5);
}
.comment-head {
  display: flex;
  align-items: center;
  gap: 6px;
}
.comment-nickname {
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--warn);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: #c3c8cf;
}
.comment-tail {
  display: flex;
  justify-content: flex-end;
}
.comment-danmaku {
  position: relative;
  display: inline-block;
  max-width: 100%;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffd9b0;
  background: #17181b;
  border: 1px solid rgba(255, 122, 47, 0.5);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-danmaku::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  background: #17181b;
  border-left: 1px solid rgba(255, 122, 47, 0.5);
  border-bottom: 1px solid rgba(255, 122, 47, 0.5);
  margin-right: -5px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #1b1c20 0%, #121316 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-home-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffb37a;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 999px;
  background: #23252a;
  border: 1px solid #3b3f46;
  white-space: nowrap;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #1a1207;
  background: var(--grill);
  border-color: var(--grill);
}
.footer-link {
  display: inline-block;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px dashed #2c2f35;
}
.friend-links-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 4px;
}
a.runtime-friend-link {
  font-size: 11.5px;
  font-weight: 700;
  color: #9fc4c1;
  text-decoration: none;
  padding: 3px 9px;
  border-radius: 999px;
  background: #1f2226;
  border: 1px solid #2f343a;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: #101114;
  background: var(--camp-b);
  border-color: var(--camp-b);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.55;
  color: #6f757d;
  max-width: 900px;
}
.player-shell.is-theater video {
  border-radius: var(--radius-sm);
}
.player .is-active, .player-btn.is-active {
  font-weight: 900;
}
[data-player-action="progress"]:focus-visible, [data-player-action="volume"]:focus-visible, .player-btn:focus-visible, .player-select:focus-visible, a:focus-visible {
  outline: 2px solid var(--warn);
  outline-offset: 2px;
}
@media (max-width: 1024px) {.movie-overview {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  }
.comments-masonry {
    column-count: 2;
  }
.rec-row, .rec-row-compact {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }}
@media (max-width: 760px) {.page-main {
    padding: 12px 12px 30px;
    gap: 20px;
  }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }
.overview-poster-wrap {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }
.movie-title {
    font-size: clamp(24px, 8vw, 34px);
  }
.details-list {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-node {
    grid-template-columns: 56px 34px minmax(0, 1fr);
    gap: 6px;
  }
.comments-masonry {
    column-count: 1;
  }
.rec-row, .rec-row-compact {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
.header-inner {
    padding: 8px 12px;
  }}
@media (max-width: 420px) {.player-controls {
    gap: 5px;
  }
.player-btn {
    font-size: 10.5px;
    padding: 4px 8px;
  }
.player-range {
    flex: 1 1 100%;
    min-width: 0;
  }
.timeline-node {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "time label"
      "arc label";
    align-items: start;
    row-gap: 3px;
  }
.timeline-timecode {
    grid-area: time;
  }
.timeline-arc {
    grid-area: arc;
  }
.timeline-label {
    grid-area: label;
  }
.rec-row, .rec-row-compact {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }}

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}
