:root {
  --ink: #0b0d10;
  --ink-2: #10141a;
  --panel: #151a21;
  --panel-2: #1a212a;
  --hair: rgba(255, 255, 255, 0.08);
  --hair-2: rgba(255, 255, 255, 0.14);
  --text: #d7dbe0;
  --text-dim: #8b939d;
  --text-soft: #a8b0ba;
  --mud: #6b5747;
  --mud-2: #8a715c;
  --blue: #2c4157;
  --blue-2: #3d5a75;
  --blood: #8e2b2b;
  --blood-2: #b13a3a;
  --fog: rgba(180, 195, 210, 0.1);
  --radius: 3px;
  --gap: 10px;
  --pad: 12px;
  --maxw: 1180px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(1200px 600px at 15% -10%, rgba(44, 65, 87, 0.35), transparent 60%),
    radial-gradient(900px 500px at 90% 5%, rgba(107, 87, 71, 0.18), transparent 65%),
    linear-gradient(180deg, #0a0c0f 0%, #0d1116 40%, #0b0d10 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
body.lights-off {
  background-image: linear-gradient(180deg, #050607 0%, #07090b 100%);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol, dl, dd, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--text-soft);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--blood-2);
  outline-offset: 2px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 12, 15, 0.92);
  border-bottom: 1px solid var(--hair);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
}
a[data-contract="site-name"] {
  color: #e6e9ed;
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--blood-2);
}
.site-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 0 14px rgba(142, 43, 43, 0.5);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
}
a.runtime-category {
  color: var(--text-dim);
  text-decoration: none;
}
a.runtime-category:hover {
  color: #e6e9ed;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  font-size: 12.5px;
  line-height: 1.5;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.runtime-category:hover {
  border-color: rgba(142, 43, 43, 0.6);
  background: rgba(142, 43, 43, 0.14);
}
.page-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 14px 26px;
}
.block-heading {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e2e6ea;
  padding: 0 0 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 2px;
  background: var(--blood);
}
.hero-shell {
  position: relative;
  margin: 12px 0 0;
  background: linear-gradient(180deg, #10151b 0%, #0e1216 100%);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-backdrop {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  background-color: #090c10;
  background-image:
    radial-gradient(60% 70% at 22% 68%, rgba(214, 168, 92, 0.18), transparent 62%),
    radial-gradient(80% 90% at 78% 30%, rgba(60, 82, 104, 0.4), transparent 70%),
    linear-gradient(160deg, #0d1319 0%, #0a0e12 55%, #0b1014 100%);
  overflow: hidden;
}
.hero-poster-frame {
  grid-area: 1 / 1;
  justify-self: start;
  align-self: end;
  width: 128px;
  margin: 16px;
  z-index: 2;
  border: 1px solid var(--hair-2);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.92);
}
.hero-vignette {
  grid-area: 1 / 1;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.92) 0%, rgba(8, 10, 13, 0.4) 45%, rgba(8, 10, 13, 0.15) 100%),
    linear-gradient(180deg, rgba(8, 10, 13, 0.5) 0%, rgba(8, 10, 13, 0.05) 40%, rgba(8, 10, 13, 0.9) 100%),
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
}
.hero-scene-note {
  grid-area: 1 / 1;
  z-index: 3;
  justify-self: end;
  align-self: end;
  margin: 0 14px 14px;
  max-width: min(60%, 420px);
  text-align: right;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: rgba(200, 210, 220, 0.55);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}
.hero-body {
  padding: 12px 14px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.movie-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #f0f2f4;
  text-shadow: 0 0 22px rgba(142, 43, 43, 0.45);
}
.movie-tagline {
  margin-top: -6px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--mud-2);
  font-style: italic;
}
.movie-seo {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 78ch;
  padding-left: 10px;
  border-left: 2px solid rgba(142, 43, 43, 0.55);
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #050709;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-shell.is-theater {
  border-color: rgba(142, 43, 43, 0.7);
  box-shadow: 0 0 0 1px rgba(142, 43, 43, 0.35), 0 18px 50px rgba(0, 0, 0, 0.8);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(20, 25, 31, 0.95), rgba(11, 14, 18, 0.95));
  border-top: 1px solid var(--hair);
}
.player-btn {
  flex: 0 0 auto;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hair);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.player-btn:hover {
  color: #f0f2f4;
  border-color: rgba(142, 43, 43, 0.65);
  background: rgba(142, 43, 43, 0.16);
}
.player-btn.is-active, .player-btn[data-player-action="play"].play, .player-btn[data-player-action="mute"].mute, .player-btn[data-player-action="theater"].theater, .player-btn[data-player-action="light"].light, .player-btn[data-player-action="fullscreen"].fullscreen, .player-btn[data-player-action="pip"].pip {
  color: #f4e9e9;
  border-color: rgba(177, 58, 58, 0.8);
  background: rgba(142, 43, 43, 0.28);
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 120px;
  min-width: 90px;
  height: 4px;
  margin: 0;
  background: linear-gradient(90deg, var(--blood) 0%, var(--blood) 0%, rgba(255, 255, 255, 0.14) 0%);
  background-color: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d9dde2;
  border: 2px solid var(--blood);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.player-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d9dde2;
  border: 2px solid var(--blood);
}
.player-range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.player-speed-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
}
.player-speed {
  padding: 3px 6px;
  font-size: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hair);
  border-radius: 2px;
  cursor: pointer;
}
.player-speed option {
  background: #10151b;
  color: var(--text);
}
.cast-block {
  padding: 10px 12px 12px;
  background: linear-gradient(180deg, rgba(26, 33, 42, 0.7), rgba(18, 23, 29, 0.7));
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 4px 8px;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.cast-card:hover {
  border-color: rgba(142, 43, 43, 0.45);
  background: rgba(0, 0, 0, 0.4);
}
.cast-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--hair-2);
  background-color: #1d252e;
  background-image:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.16), transparent 52%),
    linear-gradient(160deg, #3a4a5c 0%, #4a3d33 60%, #2a323b 100%);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.75), 0 0 0 3px rgba(10, 12, 15, 0.9);
  filter: brightness(0.82) saturate(0.8);
  transition: filter 0.2s ease;
}
.cast-card:hover .cast-avatar {
  filter: brightness(1.05) saturate(1);
}
.cast-name {
  font-size: 12.5px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.synopsis-block {
  padding: 10px 12px 12px;
  background: rgba(14, 18, 23, 0.8);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}
.synopsis-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft);
  text-indent: 2em;
}
.synopsis-para:first-child::first-letter {
  font-size: 1.5em;
  color: var(--blood-2);
  font-weight: 700;
}
.episode-status-block, .details-block {
  padding: 10px 12px 12px;
  background: rgba(14, 18, 23, 0.8);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}
.episode-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.status-item {
  font-size: 12.5px;
  color: var(--text-soft);
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(44, 65, 87, 0.28);
  border: 1px solid rgba(61, 90, 117, 0.5);
}
.details-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.08);
}
.detail-row:last-child {
  border-bottom: 0;
}
.detail-key {
  flex: 0 0 68px;
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  color: var(--text);
}
.timeline-section {
  margin-top: 18px;
  padding: 12px 12px 14px;
  background: linear-gradient(180deg, rgba(18, 23, 29, 0.9), rgba(12, 16, 20, 0.9));
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 4px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(142, 43, 43, 0.6) transparent;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(142, 43, 43, 0.45) 12%, rgba(61, 90, 117, 0.5) 88%, transparent);
  pointer-events: none;
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: rgba(142, 43, 43, 0.65);
  border-radius: 999px;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 108px;
  padding: 0 4px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  scroll-snap-align: start;
}
.timeline-node::after {
  content: "";
  width: 14px;
  height: 18px;
  margin-top: -3px;
  background: linear-gradient(180deg, rgba(61, 90, 117, 0.95) 0%, rgba(44, 65, 87, 0.9) 100%);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 10px rgba(61, 90, 117, 0.5);
  order: 3;
}
.timeline-node.is-current::after {
  background: linear-gradient(180deg, #c04a4a 0%, var(--blood) 100%);
  border-color: rgba(255, 190, 190, 0.55);
  box-shadow: 0 0 14px rgba(177, 58, 58, 0.85), 0 0 32px rgba(142, 43, 43, 0.5);
}
.timeline-timecode {
  order: 1;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
  color: var(--text-dim);
}
.timeline-label {
  order: 2;
  font-size: 12.5px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.timeline-node.is-current .timeline-label {
  color: #f2d9d9;
  font-weight: 700;
}
.timeline-node.is-current .timeline-timecode {
  color: var(--blood-2);
}
.episodes-section {
  margin-top: 18px;
  padding: 12px;
  background: rgba(14, 18, 23, 0.8);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}
.episode-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}
.episode-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 10px 12px;
  background: linear-gradient(90deg, rgba(44, 65, 87, 0.22), rgba(20, 25, 31, 0.6));
  border: 1px solid var(--hair);
  border-left: 3px solid var(--blood);
  border-radius: var(--radius);
}
.episode-duration {
  flex: 0 0 auto;
  align-self: start;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #e8d6c8;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(107, 87, 71, 0.4);
  border: 1px solid rgba(138, 113, 92, 0.5);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.episode-main {
  min-width: 0;
}
.episode-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #e8ecf0;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.78;
  color: var(--text-soft);
}
.comments-section {
  margin-top: 18px;
  padding: 12px;
  background: rgba(11, 14, 18, 0.85);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}
.comment-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.comment-note {
  position: relative;
  padding: 9px 11px 10px;
  background: rgba(232, 226, 210, 0.075);
  border: 1px solid rgba(232, 226, 210, 0.14);
  border-radius: 2px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}
.comment-stack .comment-note:nth-child(odd) {
  transform: rotate(-0.5deg);
}
.comment-stack .comment-note:nth-child(even) {
  transform: rotate(0.6deg);
  margin-left: 6px;
}
.comment-note::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 14px;
  width: 26px;
  height: 9px;
  background: rgba(142, 43, 43, 0.4);
  border: 1px solid rgba(177, 58, 58, 0.4);
  transform: rotate(-3deg);
}
.comment-nick {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mud-2);
  margin-bottom: 3px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.75;
  color: #cdd3d9;
}
.rec-region {
  margin-top: 18px;
  padding: 12px;
  background: rgba(14, 18, 23, 0.8);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
}
.rec-heading {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #e6eaee;
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--hair);
}
.rec-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
a.rec-item {
  color: var(--text);
  text-decoration: none;
}
.rec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 7px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.rec-item:hover {
  border-color: rgba(142, 43, 43, 0.55);
  background: rgba(142, 43, 43, 0.1);
  transform: translateY(-2px);
}
.rec-item[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  max-height: 130px;
  object-fit: cover;
  border-radius: 2px;
  background: #0a0d11;
  filter: saturate(0.85) brightness(0.9);
}
.rec-item:hover img {
  filter: saturate(1) brightness(1.02);
}
.rec-name {
  font-size: 13px;
  font-weight: 700;
  color: #e3e7eb;
  letter-spacing: 0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 22px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(10, 12, 15, 0.9), rgba(7, 9, 11, 1));
  border-top: 1px solid var(--hair);
}
.footer-disclaimer {
  max-width: var(--maxw);
  margin: 0 auto 10px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-dim);
  text-align: center;
}
.footer-nav {
  max-width: var(--maxw);
  margin: 0 auto 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--text-soft);
  text-decoration: none;
}
a[data-contract="footer-home"] {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(142, 43, 43, 0.5);
  padding-bottom: 1px;
}
a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(61, 90, 117, 0.6);
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #f0f2f4;
}
.friend-links {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px 10px;
  padding-top: 10px;
  border-top: 1px solid var(--hair);
}
.friend-links-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  white-space: nowrap;
}
a.runtime-friend-link {
  color: rgba(138, 113, 92, 0.9);
  text-decoration: none;
}
a.runtime-friend-link:hover {
  color: var(--mud-2);
  text-decoration: underline;
}
.runtime-friend-link {
  font-size: 11.5px;
  white-space: nowrap;
}
.player-shell.is-theater video {
  max-height: 76vh;
}
.player-shell.is-theater .player-controls {
  background: linear-gradient(180deg, rgba(26, 32, 40, 0.96), rgba(12, 15, 19, 0.96));
}
.player-btn.play.is-active, .player-btn[data-player-action="play"].play, .player-btn[data-player-action="play"].click, .player-btn[data-player-action="theater"].theater, .player-btn[data-player-action="light"].light {
  color: #f4e9e9;
  border-color: rgba(177, 58, 58, 0.8);
  background: rgba(142, 43, 43, 0.28);
}
.player-range.progress, .player-range.timeupdate {
  background-color: rgba(255, 255, 255, 0.14);
}
.player-range.volume, .player-range.input {
  accent-color: var(--blood);
}
.player-speed.speed, .player-speed.change {
  border-color: rgba(142, 43, 43, 0.6);
}
body.lights-off .site-header {
  background: rgba(4, 5, 6, 0.96);
}
body.lights-off .hero-shell, body.lights-off .timeline-section, body.lights-off .episodes-section, body.lights-off .comments-section, body.lights-off .rec-region, body.lights-off .cast-block, body.lights-off .synopsis-block, body.lights-off .details-block, body.lights-off .episode-status-block {
  border-color: rgba(255, 255, 255, 0.05);
}
@media (min-width: 560px) {.hero-backdrop {
    min-height: 260px;
  }
.hero-poster-frame {
    width: 152px;
  }
.cast-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.synopsis-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
.synopsis-para:first-child {
    grid-column: 1 / -1;
  }
.details-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (min-width: 860px) {body {
    font-size: 14.5px;
  }
.header-inner {
    padding: 9px 20px;
  }
.page-main {
    padding: 0 20px 34px;
  }
.hero-backdrop {
    min-height: 320px;
  }
.hero-poster-frame {
    width: 186px;
    margin: 20px;
  }
.hero-body {
    padding: 14px 20px 20px;
    gap: 14px;
  }
.movie-title {
    font-size: 32px;
  }
.movie-tagline {
    font-size: 14px;
  }
.movie-seo {
    font-size: 13.5px;
  }
.cast-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
.cast-avatar {
    width: 68px;
    height: 68px;
  }
.synopsis-body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.synopsis-para:first-child {
    grid-column: 1 / -1;
  }
.comment-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
.episode-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    padding: 12px 16px;
  }
.rec-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.rec-item[data-runtime="recommendation"] img {
    max-height: 150px;
  }}
@media (min-width: 1080px) {.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-node {
    width: 120px;
  }
.rec-item[data-runtime="recommendation"] img {
    aspect-ratio: 2 / 3;
    max-height: 190px;
  }}
@media (max-width: 559px) {.hero-scene-note {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
.movie-title {
    font-size: 21px;
  }
.player-range {
    flex: 1 1 100%;
    order: 5;
  }
.player-controls {
    gap: 6px;
  }
.player-speed-label {
    order: 6;
  }
.comment-stack .comment-note:nth-child(even) {
    margin-left: 0;
  }
.rec-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-item[data-runtime="recommendation"] img {
    aspect-ratio: 16 / 9;
    max-height: 110px;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
.comment-stack .comment-note:nth-child(odd), .comment-stack .comment-note:nth-child(even) {
    transform: none;
    margin-left: 0;
  }}

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}
