*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, ul, ol, li, dl, dd, dt, nav, header, footer, main, section, article, span, a, button, input, select, video, img {
  margin: 0;
  padding: 0;
}
:root {
  --soil: #4a3220;
  --soil-deep: #2f1f12;
  --soil-mid: #6b4a2e;
  --mud: #8a6a44;
  --sprout: #6f9b3f;
  --sprout-deep: #4d7327;
  --sprout-light: #a8c46a;
  --grain: #e0a938;
  --grain-soft: #f0c765;
  --sun: #f7d98a;
  --paper: #f4eddf;
  --paper-warm: #ece0c9;
  --ink: #241a0f;
  --line: rgba(74, 50, 32, 0.22);
  --shadow-soft: 0 2px 6px rgba(47, 31, 18, 0.16);
  --shadow-lift: 0 8px 20px rgba(47, 31, 18, 0.22);
  --radius: 3px;
  --gap-tight: 8px;
  --gap: 12px;
  --gap-wide: 20px;
  --title-font: "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
  --body-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Heiti SC", system-ui, sans-serif;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(247, 217, 138, 0.18) 0%, rgba(244, 237, 223, 0) 340px),
    repeating-linear-gradient(90deg, rgba(74, 50, 32, 0.035) 0 1px, transparent 1px 5px);
  min-height: 100vh;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--sprout-deep);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--grain-soft);
  color: var(--soil-deep);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--soil-deep);
  background-image: linear-gradient(180deg, #3a2716 0%, #2f1f12 100%);
  border-bottom: 2px solid var(--grain);
  box-shadow: 0 3px 10px rgba(15, 9, 4, 0.4);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: var(--gap-wide);
  flex-wrap: wrap;
}
.site-brand {
  font-family: var(--title-font);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sun);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-brand:hover, .site-brand:focus-visible {
  color: var(--grain-soft);
  border-bottom-color: var(--sprout-light);
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}
.runtime-category, a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.5;
  padding: 3px 10px;
  color: var(--paper-warm);
  text-decoration: none;
  border: 1px solid rgba(224, 169, 56, 0.35);
  border-radius: var(--radius);
  background: rgba(224, 169, 56, 0.08);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.runtime-category:hover, .runtime-category:focus-visible, a.runtime-category:hover, a.runtime-category:focus-visible {
  background: var(--grain);
  color: var(--soil-deep);
  border-color: var(--grain-soft);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 40px;
  display: block;
}
.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  grid-template-areas:
    "figure masthead"
    "figure player"
    "details details"
    "cast cast"
    "synopsis synopsis";
  column-gap: 24px;
  row-gap: 18px;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.hero-stage::before {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 0;
  height: 320px;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(247, 217, 138, 0.30) 0%, rgba(247, 217, 138, 0) 62%),
    linear-gradient(180deg, rgba(111, 155, 63, 0.10) 0%, rgba(111, 155, 63, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-figure {
  grid-area: figure;
  position: relative;
  z-index: 1;
  align-self: start;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--soil);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  background: var(--soil-mid);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 4px rgba(244, 237, 223, 0.16);
  pointer-events: none;
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}
.hero-reflection {
  position: relative;
  height: 64px;
  margin-top: 3px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(74, 50, 32, 0.30) 0%, rgba(74, 50, 32, 0.05) 100%),
    repeating-linear-gradient(180deg, rgba(111, 155, 63, 0.28) 0 3px, rgba(74, 50, 32, 0.06) 3px 7px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero-masthead {
  grid-area: masthead;
  position: relative;
  z-index: 1;
  align-self: end;
  padding-bottom: 4px;
}
.movie-title {
  font-family: var(--title-font);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--soil-deep);
  text-shadow: 1px 1px 0 rgba(247, 217, 138, 0.5);
  margin-bottom: 6px;
}
.movie-tagline {
  font-family: var(--title-font);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--sprout-deep);
  padding-left: 10px;
  border-left: 3px solid var(--grain);
  margin-bottom: 8px;
}
.movie-seo {
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(36, 26, 15, 0.82);
  max-width: 62ch;
  margin-bottom: 12px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.btn-play {
  font-family: var(--title-font);
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 8px 22px;
  color: var(--paper);
  background: linear-gradient(180deg, var(--sprout) 0%, var(--sprout-deep) 100%);
  border: 1px solid var(--sprout-deep);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(244, 237, 223, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn-play:hover, .btn-play:focus-visible {
  background: linear-gradient(180deg, var(--sprout-light) 0%, var(--sprout) 100%);
  box-shadow: var(--shadow-lift);
}
.btn-play:active {
  transform: translateY(1px);
}
.btn-play.is-playing {
  background: linear-gradient(180deg, var(--grain-soft) 0%, var(--grain) 100%);
  border-color: var(--grain);
  color: var(--soil-deep);
}
.hero-current {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  font-size: 13px;
  padding: 5px 10px;
  border: 1px dashed rgba(74, 50, 32, 0.4);
  border-radius: var(--radius);
  background: rgba(247, 217, 138, 0.16);
}
.current-episode {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--soil-deep);
}
.current-total {
  color: var(--mud);
  font-size: 12.5px;
}
.current-label {
  color: var(--sprout-deep);
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 22ch;
}
.player-shell {
  grid-area: player;
  position: relative;
  z-index: 2;
  align-self: start;
  width: 100%;
  min-width: 0;
  background: #1b1209;
  border: 1px solid var(--soil);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: linear-gradient(180deg, #241a0f 0%, #180f07 100%);
  border-top: 1px solid rgba(224, 169, 56, 0.35);
}
.ctrl {
  font-size: 12px;
  line-height: 1.4;
  padding: 4px 9px;
  color: var(--paper-warm);
  background: rgba(244, 237, 223, 0.08);
  border: 1px solid rgba(244, 237, 223, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ctrl:hover, .ctrl:focus-visible {
  background: rgba(224, 169, 56, 0.22);
  border-color: var(--grain-soft);
  color: var(--sun);
}
.ctrl.is-active {
  background: var(--grain);
  color: var(--soil-deep);
  border-color: var(--grain-soft);
}
.ctrl.is-playing {
  background: var(--sprout);
  color: var(--paper);
  border-color: var(--sprout-light);
}
.ctrl.is-muted {
  background: var(--mud);
  color: var(--paper);
  border-color: var(--soil-mid);
}
.ctrl-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 18px;
  padding: 0;
  background: transparent;
  border: none;
  accent-color: var(--grain);
  cursor: pointer;
}
.ctrl-volume {
  flex: 0 1 90px;
  min-width: 70px;
  height: 18px;
  padding: 0;
  background: transparent;
  border: none;
  accent-color: var(--sprout-light);
  cursor: pointer;
}
.ctrl-speed {
  padding: 4px 6px;
  background: rgba(244, 237, 223, 0.08);
  color: var(--paper-warm);
  border: 1px solid rgba(244, 237, 223, 0.22);
  border-radius: var(--radius);
  font-size: 12px;
}
.ctrl-speed option {
  color: var(--soil-deep);
  background: var(--paper);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 3px var(--grain), var(--shadow-lift);
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  opacity: 0.85;
}
.player-shell.is-fullscreen {
  border-radius: 0;
  border: none;
}
.player-shell.is-fullscreen .player-video {
  height: calc(100vh - 44px);
  object-fit: contain;
}
.hero-details {
  grid-area: details;
  position: relative;
  z-index: 1;
  background: rgba(236, 224, 201, 0.55);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sprout);
  border-radius: var(--radius);
  padding: 10px 12px;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 4px 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(74, 50, 32, 0.28);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mud);
  white-space: nowrap;
}
.detail-key::after {
  content: "·";
  margin-left: 6px;
  color: var(--sprout);
}
.detail-val {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--soil-deep);
}
.hero-cast {
  grid-area: cast;
  position: relative;
  z-index: 1;
}
.cast-heading, .synopsis-heading, .section-heading {
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--soil-deep);
  padding-left: 12px;
  position: relative;
  margin-bottom: 12px;
}
.cast-heading::before, .synopsis-heading::before, .section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 4px;
  background: linear-gradient(180deg, var(--grain) 0%, var(--sprout) 100%);
  border-radius: 2px;
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cast-item {
  flex: 1 1 160px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 10px 7px 12px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-left: 3px solid var(--mud);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.cast-item:hover {
  border-left-color: var(--grain);
  background: #f2e7d2;
}
.cast-name {
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--soil-deep);
}
.cast-role {
  font-size: 12px;
  color: var(--sprout-deep);
  line-height: 1.45;
}
.hero-synopsis {
  grid-area: synopsis;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.synopsis-body {
  column-count: 2;
  column-gap: 28px;
  column-rule: 1px dotted rgba(74, 50, 32, 0.3);
}
.synopsis-para {
  font-size: 13.5px;
  line-height: 1.78;
  color: rgba(36, 26, 15, 0.88);
  margin-bottom: 10px;
  break-inside: avoid;
}
.synopsis-para:first-of-type::first-letter {
  font-family: var(--title-font);
  font-size: 2.4em;
  float: left;
  line-height: 0.9;
  margin: 3px 6px 0 0;
  color: var(--sprout-deep);
}
.timeline-section {
  margin-bottom: 30px;
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 18px 4px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, rgba(111, 155, 63, 0.10) 0 2px, transparent 2px 26px),
    linear-gradient(180deg, rgba(236, 224, 201, 0.7) 0%, rgba(244, 237, 223, 0.4) 100%);
  scrollbar-color: var(--mud) transparent;
  scrollbar-width: thin;
}
.timeline-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: 0 8px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--mud) 0%, var(--sprout) 60%, var(--grain) 100%);
  border-radius: 2px;
  opacity: 0.55;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 148px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.timeline-node::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-top: 28px;
  background: var(--paper);
  border: 3px solid var(--mud);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(244, 237, 223, 0.9);
  position: relative;
  z-index: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.timeline-node .node-timecode {
  order: -1;
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--soil-deep);
  padding: 2px 8px;
  background: rgba(236, 224, 201, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  white-space: nowrap;
}
.timeline-node .node-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(36, 26, 15, 0.8);
  max-width: 14ch;
}
.timeline-node.is-active::before {
  background: var(--grain);
  border-color: var(--soil-deep);
  transform: scale(1.25);
}
.timeline-node.is-active .node-timecode {
  background: var(--grain);
  color: var(--soil-deep);
  border-color: var(--soil-deep);
  box-shadow: 0 2px 0 rgba(47, 31, 18, 0.4);
}
.timeline-node.is-active .node-label {
  color: var(--soil-deep);
  font-weight: 700;
}
.episodes-section {
  margin-bottom: 30px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(236, 224, 201, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.episode-card:hover {
  background: var(--paper-warm);
  border-color: var(--mud);
  box-shadow: var(--shadow-soft);
}
.episode-number {
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--title-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--paper);
  background: linear-gradient(180deg, var(--sprout-deep) 0%, var(--soil-mid) 100%);
  border-radius: var(--radius);
  padding: 6px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
}
.episode-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.episode-title {
  font-family: var(--title-font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--soil-deep);
  line-height: 1.35;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(36, 26, 15, 0.78);
  flex: 1 1 auto;
}
.episode-duration {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--sprout-deep);
  border: 1px solid rgba(111, 155, 63, 0.5);
  border-radius: var(--radius);
  padding: 1px 7px;
  background: rgba(168, 196, 106, 0.16);
}
.comments-section {
  margin-bottom: 30px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  align-items: start;
}
.comment-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 rgba(74, 50, 32, 0.14);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.comment-card:nth-child(3n/**/+1) {
  transform: rotate(-0.5deg);
}
.comment-card:nth-child(3n/**/+2) {
  transform: rotate(0.45deg) translateY(4px);
  background: #f7f1e4;
  box-shadow: 4px 5px 0 rgba(74, 50, 32, 0.16);
}
.comment-card:nth-child(3n) {
  transform: rotate(-0.3deg) translateY(-3px);
}
.comment-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 34px;
  height: 8px;
  margin-left: -17px;
  background: rgba(224, 169, 56, 0.4);
  border-radius: 2px;
  transform: rotate(-2deg);
}
.comment-card:hover {
  transform: rotate(0) translateY(0);
  box-shadow: var(--shadow-lift);
  z-index: 1;
}
.comment-avatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, var(--sprout-light) 0%, var(--sprout) 45%, var(--sprout-deep) 100%);
  border: 2px solid var(--paper-warm);
  box-shadow: 0 0 0 1px var(--mud);
  position: relative;
}
.comment-avatar::after {
  content: "";
  position: absolute;
  inset: 34% 34% 42% 34%;
  background: rgba(244, 237, 223, 0.85);
  border-radius: 50% 50% 40% 40%;
}
.comment-body {
  flex: 1 1 auto;
  min-width: 0;
}
.comment-nickname {
  font-family: var(--title-font);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--soil-deep);
  margin-bottom: 3px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.68;
  color: rgba(36, 26, 15, 0.82);
}
.recommend-region {
  margin-bottom: 26px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.recommend-heading {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--soil-mid);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(74, 50, 32, 0.3);
}
.recommend-column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  align-items: start;
}
.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: rgba(236, 224, 201, 0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soil-deep);
  text-decoration: none;
  min-width: 0;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.recommend-item:hover, .recommend-item:focus-visible {
  background: var(--paper-warm);
  border-color: var(--grain);
  transform: translateY(-2px);
}
.recommend-item[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--soil-mid);
  display: block;
}
.recommend-pic {
  border: 1px solid rgba(74, 50, 32, 0.35);
  filter: saturate(0.95);
}
.recommend-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--soil-deep);
  letter-spacing: 0.02em;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(36, 26, 15, 0.72);
}
.site-footer {
  background: var(--soil-deep);
  background-image: linear-gradient(180deg, #2f1f12 0%, #241a0f 100%);
  color: rgba(244, 237, 223, 0.78);
  border-top: 3px solid var(--grain);
  padding: 22px 16px 26px;
}
.footer-nav, .site-footer > .friend-links, .site-footer > .footer-disclaimer {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(224, 169, 56, 0.28);
}
.footer-link {
  font-family: var(--title-font);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--sun);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.footer-link:hover, .footer-link:focus-visible {
  color: var(--sprout-light);
  border-bottom-color: var(--sprout-light);
}
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(244, 237, 223, 0.58);
  margin-bottom: 14px;
  max-width: 90ch;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  font-size: 12px;
}
.friend-links-label {
  font-family: var(--title-font);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--grain);
  padding-right: 8px;
  border-right: 1px solid rgba(224, 169, 56, 0.4);
  white-space: nowrap;
}
.runtime-friend-link {
  color: rgba(244, 237, 223, 0.72);
  text-decoration: none;
  border-bottom: 1px dotted rgba(244, 237, 223, 0.35);
  transition: color 0.16s ease, border-color 0.16s ease;
}
.runtime-friend-link:hover, .runtime-friend-link:focus-visible {
  color: var(--sprout-light);
  border-bottom-color: var(--sprout-light);
}
@media (max-width: 980px) {.hero-stage {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    column-gap: 18px;
  }
.synopsis-body {
    column-count: 1;
    column-rule: none;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 760px) {body {
    font-size: 14px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 8px 12px;
  }
.site-brand {
    font-size: 18px;
  }
.page-main {
    padding: 0 12px 30px;
  }
.hero-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "masthead"
      "figure"
      "player"
      "details"
      "cast"
      "synopsis";
    row-gap: 14px;
    padding: 18px 0 22px;
  }
.hero-stage::before {
    height: 240px;
  }
.hero-figure {
    max-width: 300px;
  }
.hero-masthead {
    align-self: start;
  }
.movie-title {
    font-size: clamp(24px, 7.5vw, 32px);
  }
.movie-tagline {
    font-size: 14px;
  }
.movie-seo {
    font-size: 13px;
  }
.hero-current {
    width: 100%;
  }
.current-label {
    max-width: none;
    white-space: normal;
  }
.player-controls {
    gap: 5px;
    padding: 6px;
  }
.ctrl {
    padding: 4px 7px;
    font-size: 11.5px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    order: -1;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
.cast-item {
    flex: 1 1 100%;
    min-width: 0;
  }
.cast-heading, .synopsis-heading, .section-heading {
    font-size: 17px;
  }
.timeline-node {
    width: 132px;
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card, .comment-card:nth-child(3n/**/+1), .comment-card:nth-child(3n/**/+2), .comment-card:nth-child(3n) {
    transform: none;
    box-shadow: 2px 3px 0 rgba(74, 50, 32, 0.14);
  }
.recommend-column {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 9px;
  }
.friend-links-label {
    border-right: none;
    padding-right: 0;
  }}
@media (max-width: 420px) {.episode-number {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    min-height: 0;
    padding: 3px 6px;
    align-self: flex-start;
  }
.episode-card {
    flex-direction: column;
    gap: 6px;
  }
.recommend-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (min-width: 1100px) {.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
.comment-stack {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.recommend-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }}

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}
