:root {
  --mist-900: #0b1114;
  --mist-800: #121b1f;
  --mist-700: #1a262b;
  --mist-600: #24343a;
  --mist-500: #33474e;
  --mist-400: #4d666e;
  --mist-300: #7d959c;
  --mist-200: #aebfc4;
  --mist-100: #dbe4e6;
  --amber: #d99a2b;
  --amber-soft: #e8b455;
  --blood: #7d1a24;
  --blood-soft: #a82733;
  --rain: rgba(190, 215, 220, 0.06);
  --line: rgba(157, 187, 194, 0.16);
  --serif: "Songti SC", "STSong", "Noto Serif SC", "Georgia", "Times New Roman", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  background:
    radial-gradient(1200px 600px at 82% -8%, rgba(217, 154, 43, 0.07), transparent 60%),
    radial-gradient(900px 520px at 6% 12%, rgba(125, 26, 36, 0.08), transparent 62%),
    linear-gradient(180deg, var(--mist-900) 0%, #0e1619 40%, #0a1013 100%);
  color: var(--mist-100);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 17, 20, 0.86);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4), 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}
.header-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(217, 154, 43, 0.35);
  white-space: nowrap;
}
a[data-contract="site-name"]::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  transform: rotate(45deg);
  background: var(--blood-soft);
  box-shadow: 0 0 10px rgba(168, 39, 51, 0.8);
  vertical-align: 2px;
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 2px 12px 2px 12px;
  color: var(--mist-200);
  background: linear-gradient(180deg, rgba(51, 71, 78, 0.35), rgba(18, 27, 31, 0.5));
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--amber-soft);
  border-color: rgba(217, 154, 43, 0.6);
  background: linear-gradient(180deg, rgba(217, 154, 43, 0.16), rgba(18, 27, 31, 0.6));
  outline: none;
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section-heading {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--mist-100);
  padding-left: 12px;
  border-left: 3px solid var(--amber);
  line-height: 1.2;
}
.sub-heading {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--mist-200);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}
.movie-overview {
  position: relative;
  background:
    linear-gradient(180deg, rgba(26, 38, 43, 0.92) 0%, rgba(14, 22, 26, 0.94) 100%);
  border: 1px solid var(--line);
  border-radius: 3px 22px 3px 22px;
  padding: 16px 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.34fr);
  grid-template-areas:
    "heading  heading"
    "poster   headline"
    "synopsis synopsis"
    "cast     cast"
    "status   details";
  column-gap: 20px;
  row-gap: 16px;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(102deg, var(--rain) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(78deg, rgba(190, 215, 220, 0.035) 0 1px, transparent 1px 11px);
  pointer-events: none;
  mix-blend-mode: screen;
}
.overview-heading {
  grid-area: heading;
}
.overview-poster-wrap {
  grid-area: poster;
  align-self: start;
  position: relative;
  border-radius: 2px 18px 2px 18px;
  overflow: hidden;
  border: 1px solid rgba(217, 154, 43, 0.28);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.95);
}
.overview-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.94);
}
.overview-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 20, 0) 45%, rgba(11, 17, 20, 0.66) 100%);
  pointer-events: none;
}
.overview-headline {
  grid-area: headline;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}
.overview-title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #f2f6f6;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.8);
}
.overview-tagline {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--amber-soft);
  border-left: 2px solid var(--blood-soft);
  padding-left: 9px;
  line-height: 1.6;
}
.overview-seo {
  font-size: 13px;
  line-height: 1.78;
  color: var(--mist-200);
  max-width: 62ch;
}
.overview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.overview-chip {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 1px 10px 1px 10px;
  color: var(--mist-200);
  background: rgba(36, 52, 58, 0.5);
  white-space: nowrap;
}
.overview-chip-year {
  color: var(--mist-100);
  border-color: rgba(174, 191, 196, 0.32);
}
.overview-chip-region {
  color: var(--mist-100);
  border-color: rgba(174, 191, 196, 0.32);
}
.overview-chip-rating {
  color: var(--amber-soft);
  border-color: rgba(217, 154, 43, 0.55);
  background: rgba(217, 154, 43, 0.1);
  font-weight: 700;
}
.overview-synopsis {
  grid-area: synopsis;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.synopsis-heading {
  grid-column: 1 / -1;
}
.synopsis-para {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mist-200);
  text-align: justify;
}
.synopsis-para:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 30px;
  float: left;
  line-height: 0.9;
  padding: 2px 6px 0 0;
  color: var(--amber);
}
.overview-cast {
  grid-area: cast;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cast-heading {
  margin-bottom: 10px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(157, 187, 194, 0.14);
  border-top: 2px solid rgba(77, 102, 110, 0.7);
  border-radius: 1px 12px 1px 12px;
  background: linear-gradient(180deg, rgba(36, 52, 58, 0.42), rgba(18, 27, 31, 0.32));
}
.cast-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1px 9px 1px 9px;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(190, 215, 220, 0.22), transparent 62%),
    linear-gradient(160deg, #2c4046 0%, #162024 58%, #0e1518 100%);
  box-shadow: inset 0 0 0 1px rgba(157, 187, 194, 0.14);
  position: relative;
  overflow: hidden;
  filter: saturate(0.55);
}
.cast-portrait::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 62%;
  height: 78%;
  transform: translateX(-50%);
  border-radius: 46% 46% 12% 12% / 58% 58% 12% 12%;
  background: linear-gradient(180deg, rgba(125, 26, 36, 0.28), rgba(11, 17, 20, 0.9));
}
.cast-name {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--mist-100);
  line-height: 1.3;
}
.cast-tag {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mist-300);
  line-height: 1.35;
}
.cast-card:hover .cast-portrait {
  filter: saturate(0.85) brightness(1.05);
}
.cast-card:hover .cast-tag {
  color: var(--amber-soft);
}
.overview-status {
  grid-area: status;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  align-self: start;
}
.status-heading {
  margin-bottom: 8px;
}
.status-list, .details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.status-row, .details-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(157, 187, 194, 0.11);
}
.status-row:last-child, .details-row:last-child {
  border-bottom: 0;
}
.status-key, .details-key {
  flex: 0 0 auto;
  min-width: 4.6em;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mist-300);
}
.status-value, .details-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  color: var(--mist-100);
}
.status-value {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--amber-soft);
}
.overview-details {
  grid-area: details;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  align-self: start;
  min-width: 0;
}
.details-heading {
  margin-bottom: 8px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.details-value {
  word-break: break-word;
}
.player-stage {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 27, 31, 0.9), rgba(11, 17, 20, 0.95));
  border: 1px solid var(--line);
  border-radius: 3px 18px 3px 18px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.player-frame {
  width: 100%;
  border-radius: 2px 12px 2px 12px;
  overflow: hidden;
  background: #05090b;
  box-shadow: inset 0 0 0 1px rgba(157, 187, 194, 0.12), 0 20px 44px -26px rgba(0, 0, 0, 1);
}
.player-frame video {
  width: 100%;
  height: auto;
  display: block;
  background: #05090b;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.ctrl-btn {
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 1px 11px 1px 11px;
  background: linear-gradient(180deg, rgba(51, 71, 78, 0.5), rgba(18, 27, 31, 0.7));
  color: var(--mist-200);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.ctrl-btn:hover {
  color: var(--amber-soft);
  border-color: rgba(217, 154, 43, 0.55);
}
.ctrl-btn:focus-visible {
  outline: 1px solid var(--amber);
  outline-offset: 2px;
}
.ctrl-play {
  color: #0b1114;
  background: linear-gradient(180deg, var(--amber-soft), var(--amber));
  border-color: rgba(217, 154, 43, 0.85);
  font-weight: 700;
}
.ctrl-play:hover {
  color: #0b1114;
  background: linear-gradient(180deg, #f0c268, #e0a531);
}
.ctrl-progress {
  flex: 1 1 220px;
  min-width: 140px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--blood-soft), rgba(157, 187, 194, 0.25));
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(217, 154, 43, 0.8);
  border: 0;
}
.ctrl-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--amber);
}
.ctrl-volume {
  flex: 0 1 96px;
  min-width: 72px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(157, 187, 194, 0.28);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 1px 6px 1px 6px;
  background: var(--mist-200);
  border: 0;
}
.ctrl-volume::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 1px 6px 1px 6px;
  background: var(--mist-200);
}
.is-active {
  color: var(--amber-soft);
  border-color: rgba(217, 154, 43, 0.6);
  background: linear-gradient(180deg, rgba(217, 154, 43, 0.2), rgba(18, 27, 31, 0.7));
}
.ctrl-play.is-active {
  color: #0b1114;
  background: linear-gradient(180deg, #f0c268, #d99a2b);
}
.player-stage.is-theater {
  border-radius: 2px 26px 2px 26px;
  border-color: rgba(217, 154, 43, 0.4);
  box-shadow: 0 0 0 1px rgba(217, 154, 43, 0.18), 0 30px 70px -34px rgba(0, 0, 0, 1);
}
.player-stage.is-theater .player-frame {
  border-radius: 2px 16px 2px 16px;
}
.player-stage.is-lights-off {
  background: #04070a;
  border-color: rgba(0, 0, 0, 0.9);
}
.player-stage.is-lights-off .player-frame {
  box-shadow: 0 0 60px -8px rgba(217, 154, 43, 0.16), inset 0 0 0 1px rgba(157, 187, 194, 0.1);
}
.player-stage.is-lights-off .ctrl-btn:not(.is-active) {
  color: var(--mist-400);
  border-color: rgba(77, 102, 110, 0.35);
}
.timeline-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-track {
  position: relative;
  padding: 10px 4px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.timeline-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 10px;
  min-width: 940px;
  padding: 30px 0 12px;
}
.timeline-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 26px;
  background:
    linear-gradient(115deg, transparent 0 7%, rgba(157, 187, 194, 0.5) 7% 7.4%, transparent 7.4% 15%,
      rgba(157, 187, 194, 0.5) 15% 15.4%, transparent 15.4% 23%, rgba(157, 187, 194, 0.5) 23% 23.4%,
      transparent 23.4% 31%, rgba(157, 187, 194, 0.5) 31% 31.4%, transparent 31.4% 39%,
      rgba(157, 187, 194, 0.5) 39% 39.4%, transparent 39.4% 47%, rgba(157, 187, 194, 0.5) 47% 47.4%,
      transparent 47.4% 55%, rgba(157, 187, 194, 0.5) 55% 55.4%, transparent 55.4% 63%,
      rgba(157, 187, 194, 0.5) 63% 63.4%, transparent 63.4% 71%, rgba(157, 187, 194, 0.5) 71% 71.4%,
      transparent 71.4% 79%, rgba(157, 187, 194, 0.5) 79% 79.4%, transparent 79.4% 87%,
      rgba(157, 187, 194, 0.5) 87% 87.4%, transparent 87.4% 95%, rgba(157, 187, 194, 0.5) 95% 95.4%,
      transparent 95.4%);
  opacity: 0.55;
  pointer-events: none;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 10px 10px;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 1px 13px 1px 13px;
  background: linear-gradient(180deg, rgba(36, 52, 58, 0.4), rgba(18, 27, 31, 0.26));
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 14px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: var(--mist-500);
  box-shadow: 0 0 0 3px rgba(11, 17, 20, 0.9);
}
.timeline-node-1::before, .timeline-node-3::before, .timeline-node-5::before {
  top: -23px;
}
.timeline-node-2::before, .timeline-node-4::before, .timeline-node-6::before {
  top: -23px;
}
.node-timecode {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mist-300);
}
.node-label {
  font-size: 12px;
  line-height: 1.62;
  color: var(--mist-200);
}
.timeline-node.is-current {
  border-color: rgba(217, 154, 43, 0.5);
  background: linear-gradient(180deg, rgba(217, 154, 43, 0.16), rgba(18, 27, 31, 0.55));
  box-shadow: 0 0 26px -12px rgba(217, 154, 43, 0.7);
}
.timeline-node.is-current::before {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(11, 17, 20, 0.9), 0 0 16px rgba(217, 154, 43, 0.95);
}
.timeline-node.is-current .node-timecode {
  color: var(--amber-soft);
}
.timeline-node.is-current .node-label {
  color: var(--mist-100);
}
.episodes-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.episode-card {
  display: grid;
  grid-template-columns: minmax(0, 168px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px;
  background: linear-gradient(115deg, rgba(26, 38, 43, 0.94) 0%, rgba(14, 22, 26, 0.92) 100%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blood);
  border-radius: 2px 18px 2px 18px;
}
.episode-number-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 14px;
  border-right: 1px dashed rgba(157, 187, 194, 0.18);
}
.episode-number {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mist-100);
}
.episode-index {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 154, 43, 0.72);
  text-stroke: 1px rgba(217, 154, 43, 0.72);
  text-shadow: 0 0 26px rgba(217, 154, 43, 0.18);
}
.episode-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.episode-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mist-100);
}
.episode-summary {
  font-size: 13px;
  line-height: 1.78;
  color: var(--mist-200);
  text-align: justify;
}
.episode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 6px;
  border-top: 1px solid rgba(157, 187, 194, 0.12);
}
.episode-duration {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--amber-soft);
  border: 1px solid rgba(217, 154, 43, 0.42);
  background: rgba(217, 154, 43, 0.08);
  border-radius: 1px 10px 1px 10px;
  padding: 2px 10px;
  white-space: nowrap;
}
.comments-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comments-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  grid-template-areas:
    "feature-a list"
    "feature-b list";
  gap: 12px 18px;
  align-items: start;
}
.comment-feature {
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(36, 52, 58, 0.5), rgba(16, 24, 28, 0.5));
  border: 1px solid var(--line);
  border-radius: 2px 16px 2px 16px;
  position: relative;
}
.comment-feature:nth-of-type(1) {
  grid-area: feature-a;
  border-right: 3px solid var(--blood-soft);
}
.comment-feature:nth-of-type(2) {
  grid-area: feature-b;
  border-right: 3px solid var(--amber);
}
.comment-feature:nth-of-type(2) {
  margin-left: 26px;
}
.comment-nickname {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber-soft);
  margin-bottom: 5px;
}
.comment-feature:nth-of-type(2) .comment-nickname {
  color: var(--mist-100);
}
.comment-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--mist-100);
  text-align: justify;
}
.comment-list {
  grid-area: list;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2px 0 0;
  border-top: 1px solid var(--line);
}
.comment-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(157, 187, 194, 0.13);
}
.comment-item:last-child {
  border-bottom: 0;
}
.comment-nickname-sm {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mist-300);
}
.comment-nickname-sm::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  transform: rotate(45deg);
  background: var(--blood-soft);
  vertical-align: 1px;
}
.comment-text-sm {
  font-size: 12px;
  line-height: 1.66;
  color: var(--mist-200);
}
.recommend-region {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, rgba(26, 38, 43, 0.72), rgba(13, 20, 24, 0.72));
  border: 1px solid var(--line);
  border-radius: 2px 16px 2px 16px;
}
.recommend-heading {
  font-size: 15px;
  letter-spacing: 0.16em;
}
.recommend-dot-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.recommend-dot-item {
  min-width: 0;
  position: relative;
  padding-left: 13px;
}
.recommend-dot-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(217, 154, 43, 0.7);
}
.recommend-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  color: var(--mist-100);
  text-decoration: none;
  border-radius: 1px 12px 1px 12px;
  transition: color 0.16s ease, transform 0.16s ease;
}
a.recommend-link:hover, a.recommend-link:focus-visible {
  color: var(--amber-soft);
  outline: none;
  transform: translateY(-1px);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 1px 10px 1px 10px;
  filter: saturate(0.62) contrast(1.05) brightness(0.9);
  border: 1px solid rgba(157, 187, 194, 0.16);
  transition: filter 0.2s ease;
}
a[data-runtime="recommendation"]:hover img {
  filter: saturate(0.92) brightness(1.02);
}
.recommend-name {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.62;
  color: var(--mist-300);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 17, 20, 0.6), rgba(6, 10, 12, 0.96));
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--mist-200);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus-visible {
  color: var(--amber-soft);
  border-bottom-color: rgba(217, 154, 43, 0.6);
  outline: none;
}
a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--mist-100);
  border-bottom-color: rgba(157, 187, 194, 0.55);
  outline: none;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--mist-400);
  max-width: 78ch;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding-top: 9px;
  border-top: 1px dashed rgba(157, 187, 194, 0.14);
}
.friend-links-label {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--mist-300);
  padding-right: 8px;
  border-right: 1px solid var(--line);
}
.runtime-friend-link {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--mist-400);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.16s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--amber-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}
@media (max-width: 980px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "heading"
      "headline"
      "poster"
      "synopsis"
      "cast"
      "status"
      "details";
  }
.overview-poster-wrap {
    max-width: 300px;
  }
.overview-synopsis {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.recommend-dot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "feature-a"
      "feature-b"
      "list";
  }
.comment-feature:nth-of-type(2) {
    margin-left: 0;
  }}
@media (max-width: 720px) {.page-main {
    padding: 12px 12px 20px;
    gap: 18px;
  }
.header-shell {
    padding: 8px 12px;
    gap: 10px;
  }
.categories-bar {
    justify-content: flex-start;
  }
.overview-title {
    font-size: 24px;
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
.episode-number-block {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding-right: 0;
    padding-bottom: 8px;
    border-right: 0;
    border-bottom: 1px dashed rgba(157, 187, 194, 0.18);
  }
.episode-index {
    font-size: 42px;
  }
.recommend-dot-list {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.footer-inner {
    padding: 12px 12px 18px;
  }}
@media (max-width: 460px) {body {
    font-size: 13.5px;
  }
.overview-title {
    font-size: 21px;
    letter-spacing: 0.03em;
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
.ctrl-btn {
    padding: 5px 9px;
    font-size: 11.5px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    min-width: 0;
  }
.ctrl-volume {
    flex: 0 1 100%;
    min-width: 0;
  }
.timeline-line {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.timeline-line::before {
    display: none;
  }
.timeline-node::before {
    top: 12px;
    left: -1px;
  }
.timeline-node {
    padding-left: 22px;
  }}

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}
