:root {
  --ink-blue: #10192a;
  --ink-blue-2: #16223a;
  --gray-green: #4a5d59;
  --gray-green-2: #2c3a38;
  --faded-orange: #c8763c;
  --warm-yellow: #e0a750;
  --paper: #d9d2c4;
  --paper-dim: #a89e8c;
  --text: #c9c3b6;
  --text-dim: #8b8578;
  --crack: #05080e;
  --line: rgba(200, 118, 60, 0.28);
  --line-cool: rgba(140, 160, 155, 0.18);
  --gap: 10px;
  --pad: 12px;
  --serif: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", "SimSun", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", system-ui, 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-blue);
  background-image:
    linear-gradient(180deg, #0b1220 0%, #10192a 28%, #0e1626 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px);
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--paper);
  text-decoration: none;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 600;
}
p {
  margin: 0;
}
ul, ol, dl, dd, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(9, 15, 26, 0.97), rgba(12, 20, 34, 0.9));
  border-bottom: 1px solid var(--line-cool);
  backdrop-filter: blur(6px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px var(--pad);
}
a[data-contract="site-name"] {
  color: var(--warm-yellow);
  text-decoration: none;
}
.site-logo {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(224, 167, 80, 0.35);
}
.site-logo::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-left: 8px;
  vertical-align: -1px;
  background: var(--faded-orange);
}
.site-header__categories {
  flex: 1 1 auto;
  min-width: 0;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  font-size: 12px;
}
a.runtime-category {
  white-space: nowrap;
  color: var(--gray-green);
  color: #8fa8a2;
  text-decoration: none;
  padding: 2px 7px;
  border: 1px solid var(--line-cool);
  border-radius: 2px;
  background: rgba(74, 93, 89, 0.14);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--warm-yellow);
  border-color: var(--line);
  background: rgba(200, 118, 60, 0.16);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad) 30px;
}
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  margin: 14px 0 18px;
  border: 1px solid var(--line-cool);
  background:
    linear-gradient(120deg, rgba(16, 25, 42, 0.9), rgba(20, 30, 46, 0.7) 45%, rgba(44, 58, 56, 0.55));
  position: relative;
  overflow: hidden;
}
.hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 8% 0%, rgba(200, 118, 60, 0.1), transparent 55%),
    radial-gradient(120% 90% at 100% 100%, rgba(224, 167, 80, 0.12), transparent 55%);
  pointer-events: none;
}
.hero-split__faces {
  display: grid;
  grid-template-columns: 1fr 8px 1fr;
  align-items: stretch;
  position: relative;
  min-height: 0;
}
.hero-split__face {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a0f19;
}
.hero-split__face--left {
  filter: saturate(0.62) contrast(1.06) brightness(0.86);
}
.hero-split__face--right {
  filter: saturate(1.05) contrast(1.02) brightness(0.98) sepia(0.14);
}
.hero-split__face--left::after, .hero-split__face--right::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-split__face--left::after {
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.34), rgba(10, 16, 28, 0.72)),
    linear-gradient(90deg, rgba(16, 25, 42, 0.5), transparent 60%);
}
.hero-split__face--right::after {
  background: linear-gradient(180deg, rgba(40, 26, 10, 0.24), rgba(20, 14, 6, 0.62)),
    linear-gradient(270deg, rgba(224, 167, 80, 0.16), transparent 60%);
}
.hero-split__poster {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 30%;
}
.hero-split__poster--warm {
  object-position: center 42%;
}
.hero-split__face-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 8px 6px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(5, 8, 14, 0.86));
  z-index: 2;
}
.hero-split__face--right .hero-split__face-caption {
  text-align: right;
  color: var(--warm-yellow);
}
.hero-split__seam {
  position: relative;
  background: var(--crack);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
  z-index: 3;
}
.hero-split__seam-line {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 50%;
  width: 2px;
  transform: translateX(-50%) rotate(1.6deg);
  background: linear-gradient(180deg, transparent, var(--faded-orange) 12%, var(--paper-dim) 48%, var(--faded-orange) 84%, transparent);
  opacity: 0.85;
  filter: blur(0.3px);
}
.hero-split__seam-stitch {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(217, 210, 196, 0.55) 0 3px,
    transparent 3px 11px
  );
  background-size: 9px 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}
.hero-split__info {
  position: relative;
  z-index: 2;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}
.movie-title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: #f0e6d2;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 0 22px rgba(200, 118, 60, 0.22);
}
.movie-title::first-letter {
  color: var(--faded-orange);
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--warm-yellow);
  padding-left: 9px;
  border-left: 2px solid var(--faded-orange);
}
.movie-seo-desc {
  font-size: 12px;
  line-height: 1.62;
  color: var(--paper-dim);
  max-width: 46em;
}
.player-shell {
  position: relative;
  margin-top: 2px;
  border: 1px solid var(--line-cool);
  background: #080c14;
  transition: box-shadow 0.2s, background 0.2s;
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px var(--line), 0 0 34px rgba(200, 118, 60, 0.22);
}
.player-shell.lights-off {
  background: #000;
}
.player-shell__frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #000;
  line-height: 0;
}
.player-shell__frame video {
  display: block;
  width: 100%;
  max-width: 100%;
}
.player-shell.is-playing .player-shell__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(224, 167, 80, 0.35);
  pointer-events: none;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(18, 27, 44, 0.96), rgba(12, 19, 32, 0.98));
  border-top: 1px solid var(--line-cool);
}
.player-btn {
  flex: 0 0 auto;
  padding: 3px 9px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(74, 93, 89, 0.22);
  border: 1px solid var(--line-cool);
  border-radius: 2px;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.player-btn:hover, .player-btn:focus-visible {
  color: var(--warm-yellow);
  border-color: var(--line);
}
.player-btn--play {
  color: #1a1206;
  background: linear-gradient(180deg, var(--warm-yellow), var(--faded-orange));
  border-color: var(--faded-orange);
  font-weight: 700;
}
.player-btn--play:hover, .player-btn--play:focus-visible {
  color: #1a1206;
  filter: brightness(1.08);
}
.player-btn.is-active {
  color: #1a1206;
  background: linear-gradient(180deg, var(--warm-yellow), var(--faded-orange));
  border-color: var(--faded-orange);
}
.player-btn--theater.is-active, .player-btn--light.is-active {
  background: linear-gradient(180deg, #8fa8a2, var(--gray-green));
  border-color: var(--gray-green);
  color: #06110f;
}
.player-field {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 1 1 140px;
  min-width: 110px;
  font-size: 11px;
  color: var(--text-dim);
}
.player-field--progress {
  flex: 3 1 200px;
}
.player-field--volume {
  flex: 1 1 110px;
}
.player-field--speed {
  flex: 0 0 auto;
  min-width: 0;
}
.player-field__label {
  flex: 0 0 auto;
  letter-spacing: 0.1em;
  font-size: 10.5px;
}
.player-range {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 14px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.player-range::-webkit-slider-runnable-track {
  height: 3px;
  background: linear-gradient(90deg, var(--faded-orange), rgba(140, 160, 155, 0.4));
  border-radius: 2px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--warm-yellow);
  border: 1px solid #2a1c08;
}
.player-range::-moz-range-track {
  height: 3px;
  background: linear-gradient(90deg, var(--faded-orange), rgba(140, 160, 155, 0.4));
  border-radius: 2px;
}
.player-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--warm-yellow);
  border: 1px solid #2a1c08;
}
.player-range--progress::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, var(--warm-yellow), rgba(140, 160, 155, 0.35));
}
.player-select {
  padding: 2px 4px;
  font-size: 11px;
  color: var(--text);
  background: rgba(74, 93, 89, 0.24);
  border: 1px solid var(--line-cool);
  border-radius: 2px;
}
.episode-status {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.episode-status__line {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--paper-dim);
}
.episode-status__total, .episode-status__current {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--warm-yellow);
  font-weight: 700;
}
.episode-status__bar {
  position: relative;
  height: 20px;
  border: 1px solid var(--line-cool);
  background: rgba(8, 12, 20, 0.7);
  overflow: hidden;
}
.episode-status__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% / 12 * 1);
  background: linear-gradient(90deg, rgba(200, 118, 60, 0.72), rgba(224, 167, 80, 0.5));
}
.episode-status__chip {
  position: relative;
  z-index: 2;
  display: block;
  padding: 2px 7px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: #f0e6d2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast {
  min-width: 0;
}
.cast__heading, .synopsis__heading, .details__heading, .timeline__heading, .episodes__heading, .comments__heading {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--paper);
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line-cool);
  position: relative;
}
.cast__heading::before, .synopsis__heading::before, .details__heading::before, .timeline__heading::before, .episodes__heading::before, .comments__heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 1px;
  background: var(--faded-orange);
}
.cast__list {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--faded-orange) transparent;
}
.cast__list::-webkit-scrollbar {
  height: 4px;
}
.cast__list::-webkit-scrollbar-thumb {
  background: var(--faded-orange);
}
.cast-card {
  flex: 0 0 auto;
  width: 74px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.cast-card__face {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(80% 70% at 62% 34%, rgba(224, 167, 80, 0.5), transparent 60%),
    linear-gradient(150deg, var(--gray-green) 0%, var(--gray-green-2) 55%, #131c1a 100%);
  border: 1px solid var(--line-cool);
  position: relative;
  overflow: hidden;
}
.cast-card__face::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 34%;
  width: 40%;
  height: 62%;
  border-radius: 48% 48% 42% 42% / 56% 56% 44% 44%;
  background: linear-gradient(160deg, rgba(217, 210, 196, 0.42), rgba(16, 25, 42, 0.3));
  filter: blur(1px);
}
.cast-card:nth-child(2n) .cast-card__face {
  background:
    radial-gradient(80% 70% at 40% 30%, rgba(200, 118, 60, 0.44), transparent 60%),
    linear-gradient(200deg, var(--gray-green-2) 0%, #1a2530 60%, #0d1622 100%);
}
.cast-card__name {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.synopsis__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.synopsis__para {
  font-size: 12px;
  line-height: 1.66;
  color: var(--paper-dim);
  text-align: justify;
}
.synopsis__para:first-child::first-letter {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  float: left;
  margin: 3px 5px 0 0;
  color: var(--faded-orange);
}
.details {
  min-width: 0;
}
.details__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-cool);
  border: 1px solid var(--line-cool);
}
.details__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 8px;
  background: rgba(12, 20, 34, 0.86);
  min-width: 0;
}
.details__key {
  flex: 0 0 62px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-green);
  color: #8fa8a2;
}
.details__val {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 11.5px;
  color: var(--text);
  overflow-wrap: anywhere;
}
.timeline {
  margin-top: 20px;
}
.timeline__ruler {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 4px 0 10px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--faded-orange) transparent;
}
.timeline__ruler::-webkit-scrollbar {
  height: 4px;
}
.timeline__ruler::-webkit-scrollbar-thumb {
  background: var(--faded-orange);
}
.timeline__ruler::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-cool) 4%, var(--line-cool) 96%, transparent);
}
.timeline-node {
  position: relative;
  flex: 1 1 0;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 0 8px 0 0;
  cursor: pointer;
}
.timeline-node__dot {
  position: relative;
  z-index: 2;
  display: block;
  width: 9px;
  height: 9px;
  margin: 10px 0 4px;
  background: var(--ink-blue);
  border: 1px solid var(--gray-green);
  border-radius: 50%;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.timeline-node__timecode {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray-green);
  color: #8fa8a2;
}
.timeline-node__label {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-dim);
  border-top: 1px solid transparent;
  padding-top: 3px;
}
.timeline-node:hover .timeline-node__dot {
  border-color: var(--warm-yellow);
}
.timeline-node--active .timeline-node__dot {
  background: var(--warm-yellow);
  border-color: var(--faded-orange);
  box-shadow: 0 0 0 3px rgba(200, 118, 60, 0.22);
}
.timeline-node--active .timeline-node__timecode {
  color: var(--warm-yellow);
}
.timeline-node--active .timeline-node__label {
  color: var(--paper);
  border-top-color: var(--faded-orange);
}
.episodes {
  margin-top: 20px;
}
.episodes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-cool);
  border: 1px solid var(--line-cool);
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  background: rgba(12, 20, 34, 0.88);
  cursor: pointer;
  min-width: 0;
  transition: background 0.15s, box-shadow 0.15s;
}
.episode-card:hover {
  background: rgba(20, 30, 48, 0.95);
}
.episode-card__index {
  font-family: var(--serif);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--faded-orange);
}
.episode-card__title {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--paper);
}
.episode-card__summary {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-card__duration {
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #6f7d78;
}
.episode-card--active {
  background: linear-gradient(180deg, rgba(200, 118, 60, 0.2), rgba(20, 30, 48, 0.94));
  box-shadow: inset 2px 0 0 var(--warm-yellow);
}
.episode-card--active .episode-card__title {
  color: #f4ead6;
}
.comments {
  margin-top: 20px;
}
.comments__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-cool);
  border: 1px solid var(--line-cool);
}
.comments__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line-cool);
  min-width: 0;
}
.comments__list--second {
  background: var(--line-cool);
}
.comment-card {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 8px 10px;
  background: rgba(12, 20, 34, 0.88);
  min-width: 0;
}
.comment-card__avatar {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background: var(--gray-green);
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.comment-card:nth-child(3n) .comment-card__avatar {
  background: var(--faded-orange);
}
.comment-card:nth-child(3n + 2) .comment-card__avatar {
  background: var(--gray-green-2);
}
.comment-card:nth-child(4n) .comment-card__avatar {
  background: var(--warm-yellow);
}
.comment-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.comment-card__nickname {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--warm-yellow);
}
.comment-card__text {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--paper-dim);
}
.rec-list, .rec-rail, .rec-grid {
  margin-top: 20px;
}
.rec-list__heading, .rec-rail__heading, .rec-grid__heading {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--paper);
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line-cool);
  position: relative;
}
.rec-list__heading::before, .rec-rail__heading::before, .rec-grid__heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 1px;
  background: var(--faded-orange);
}
.rec-card {
  display: block;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}
.rec-card__pic {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--gray-green-2);
  border: 1px solid var(--line-cool);
}
.rec-card__name {
  display: block;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--paper);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rec-card__blurb {
  display: block;
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--text-dim);
  overflow: hidden;
}
.rec-list__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-cool);
  border: 1px solid var(--line-cool);
}
.rec-list__item {
  min-width: 0;
  background: rgba(12, 20, 34, 0.88);
}
a.rec-card.rec-card--list {
  color: var(--text);
  text-decoration: none;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 2px 9px;
  padding: 7px 9px;
  align-items: start;
  transition: background 0.15s;
}
a.rec-card.rec-card--list:hover {
  background: rgba(22, 34, 54, 0.96);
}
a.rec-card.rec-card--list .rec-card__pic {
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
}
a.rec-card.rec-card--list .rec-card__blurb {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.rec-rail__track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--faded-orange) transparent;
}
.rec-rail__track::-webkit-scrollbar {
  height: 4px;
}
.rec-rail__track::-webkit-scrollbar-thumb {
  background: var(--faded-orange);
}
a.rec-card.rec-card--rail {
  flex: 0 0 168px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line-cool);
  background: rgba(12, 20, 34, 0.88);
  transition: border-color 0.15s, background 0.15s;
}
a.rec-card.rec-card--rail:hover {
  border-color: var(--faded-orange);
  background: rgba(22, 34, 54, 0.96);
}
a.rec-card.rec-card--rail .rec-card__pic {
  aspect-ratio: 16 / 10;
  height: auto;
  width: 100%;
  object-fit: cover;
}
a.rec-card.rec-card--rail .rec-card__blurb {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rec-grid__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}
a.rec-card.rec-card--grid {
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 5px;
  border: 1px solid var(--line-cool);
  background: rgba(12, 20, 34, 0.88);
  transition: border-color 0.15s;
}
a.rec-card.rec-card--grid:hover {
  border-color: var(--faded-orange);
}
a.rec-card.rec-card--grid .rec-card__pic {
  aspect-ratio: 3 / 4;
  height: auto;
  width: 100%;
  object-fit: cover;
}
a.rec-card.rec-card--grid .rec-card__name {
  font-size: 11.5px;
}
a.rec-card.rec-card--grid .rec-card__blurb {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.site-footer {
  border-top: 1px solid var(--line-cool);
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.94), rgba(6, 10, 18, 0.98));
  margin-top: 26px;
}
.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px var(--pad) 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 12px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: #8fa8a2;
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px dotted transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm-yellow);
  border-bottom-color: var(--faded-orange);
}
.site-footer__disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: #6f7d78;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 10px;
  font-size: 11px;
}
.friend-links__label {
  flex: 0 0 auto;
  font-family: var(--serif);
  letter-spacing: 0.16em;
  color: var(--paper);
}
a.runtime-friend-link {
  color: #8fa8a2;
  text-decoration: none;
  border-bottom: 1px dotted rgba(143, 168, 162, 0.4);
}
a.runtime-friend-link:hover {
  color: var(--warm-yellow);
  border-bottom-color: var(--faded-orange);
}
.player.mute, .player.mute .player-btn--mute, .mute {
  opacity: 0.85;
}
.player.play .player-btn--play, .play, .click {
  transition: transform 0.1s;
}
.change, .input, .progress, .timeupdate, .speed, .volume {
  outline-color: var(--warm-yellow);
}
.light, .lights-off {
  background: #000;
}
.fullscreen, .pip, .theater {
  box-shadow: 0 0 0 1px var(--line);
}
.is-active {
  color: #1a1206;
}
.is-playing .player-btn--play {
  background: linear-gradient(180deg, #8fa8a2, var(--gray-green));
  border-color: var(--gray-green);
}
.is-muted .player-range--volume::-webkit-slider-runnable-track {
  background: rgba(140, 160, 155, 0.3);
}
.is-theater .player-shell__frame {
  box-shadow: 0 0 0 1px rgba(200, 118, 60, 0.5);
}
.movie-overview {
  scroll-margin-top: 46px;
}
@media (max-width: 1024px) {.hero-split {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-split__faces {
    grid-template-columns: 1fr 6px 1fr;
  }
.hero-split__poster {
    aspect-ratio: 16 / 11;
  }
.movie-title {
    font-size: 26px;
  }
.rec-grid__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 760px) {body {
    font-size: 12.5px;
  }
.page-main {
    padding: 0 9px 24px;
  }
.site-header__inner {
    gap: 8px;
    padding: 7px 9px;
  }
.site-logo {
    font-size: 15px;
  }
.site-header__categories {
    flex: 1 1 100%;
    order: 3;
  }
.category-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 3px;
    scrollbar-width: thin;
  }
.hero-split {
    margin: 10px 0 14px;
  }
.hero-split__info {
    padding: 11px 11px 13px;
    gap: 8px;
  }
.movie-title {
    font-size: 22px;
  }
.movie-tagline {
    font-size: 12.5px;
  }
.player-controls {
    gap: 5px 6px;
    padding: 6px;
  }
.player-field {
    flex: 1 1 100%;
  }
.player-field--speed {
    flex: 0 0 auto;
  }
.details__list {
    grid-template-columns: minmax(0, 1fr);
  }
.episodes__grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments__columns {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-list__items {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-node {
    flex: 0 0 auto;
    min-width: 96px;
  }
a.rec-card.rec-card--rail {
    flex: 0 0 148px;
  }}
@media (max-width: 420px) {.movie-title {
    font-size: 20px;
  }
.rec-grid__items {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-card {
    width: 66px;
  }
.player-btn {
    padding: 3px 7px;
    font-size: 11px;
  }}

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}
