:root {
  --ink: #0a0f0c;
  --ink-2: #0f1613;
  --ink-3: #131e19;
  --deep-green: #0d211a;
  --deep-green-2: #123026;
  --dark-red: #3a1216;
  --dark-red-2: #551b21;
  --blood: #9e2b2b;
  --blood-bright: #c93a34;
  --gold: #c9a24a;
  --gold-bright: #e8c877;
  --gold-dim: #7a642c;
  --paper: #e9e4d6;
  --paper-dim: #a89f8b;
  --paper-faint: #6f6a5c;
  --line: rgba(201, 162, 74, 0.18);
  --line-strong: rgba(201, 162, 74, 0.38);
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, -apple-system, sans-serif;
  --serif-narrow: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", "Source Han Serif SC", Georgia, serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 120% 80% at 15% 0%, rgba(18, 48, 38, 0.75) 0%, rgba(10, 15, 12, 0) 55%),
    radial-gradient(ellipse 90% 60% at 88% 6%, rgba(58, 18, 22, 0.6) 0%, rgba(10, 15, 12, 0) 60%),
    linear-gradient(180deg, #0b120e 0%, #090d0a 40%, #0a0f0c 100%);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3 {
  font-family: var(--serif-narrow);
  font-weight: 700;
  letter-spacing: 0.02em;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(10, 15, 12, 0.96) 0%, rgba(10, 15, 12, 0.82) 100%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--serif-narrow);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(201, 162, 74, 0.35);
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: #fff0c9;
}
.category-nav {
  display: flex;
  align-items: center;
  gap: 4px 14px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: var(--paper-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a.runtime-category:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.movie-overview {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.overview-hero::before {
  content: "";
  position: absolute;
  inset: 0 -16px;
  background:
    linear-gradient(115deg, rgba(201, 162, 74, 0.07) 0%, rgba(201, 162, 74, 0) 42%),
    radial-gradient(ellipse 55% 90% at 0% 20%, rgba(18, 48, 38, 0.55) 0%, rgba(10, 15, 12, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.overview-hero > * {
  position: relative;
  z-index: 1;
}
.hero-figure {
  min-width: 0;
}
.poster-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 14px 40px rgba(0, 0, 0, 0.7),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
  background: var(--ink-3);
}
.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 245, 220, 0.16) 0%, rgba(255, 245, 220, 0) 34%),
    linear-gradient(285deg, rgba(58, 18, 22, 0.42) 0%, rgba(58, 18, 22, 0) 55%);
  pointer-events: none;
}
.main-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92);
}
.hero-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.movie-title {
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: 0.06em;
  color: #f4ecd8;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.8),
    0 0 26px rgba(201, 162, 74, 0.22);
}
.movie-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 9px;
  background: linear-gradient(90deg, var(--blood-bright) 0%, var(--gold) 65%, transparent 100%);
}
.movie-tagline {
  font-family: var(--serif-narrow);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold);
  padding-left: 10px;
  border-left: 2px solid var(--blood);
}
.movie-seo-desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--paper-dim);
  max-width: 62ch;
}
.player-shell {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  width: 100%;
}
.player-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.player-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #000;
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.main-player {
  display: block;
  width: 100%;
  background: #000;
}
.player-frame.is-lights-off {
  border-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 0, 0, 0.95);
}
.player-frame.is-lights-off::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  pointer-events: none;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 6px 7px;
  background: linear-gradient(180deg, var(--ink-3) 0%, #0b110e 100%);
  border: 1px solid var(--line);
  border-top: none;
}
.ctrl {
  background: rgba(201, 162, 74, 0.07);
  border: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.ctrl:hover {
  color: var(--gold-bright);
  border-color: var(--line-strong);
  background: rgba(201, 162, 74, 0.14);
}
.ctrl:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 1px;
}
.ctrl.is-active {
  color: #0a0f0c;
  background: var(--gold);
  border-color: var(--gold-bright);
}
.ctrl-play {
  color: var(--gold-bright);
  border-color: var(--line-strong);
  font-weight: 600;
}
.ctrl-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 4px;
  padding: 0;
  border: none;
  background: rgba(233, 228, 214, 0.14);
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  align-self: center;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 14px;
  background: var(--gold-bright);
  border-radius: 1px;
  border: none;
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--gold-bright);
  border: none;
  border-radius: 1px;
  cursor: pointer;
}
.ctrl-volume {
  flex: 0 1 72px;
  min-width: 56px;
  height: 4px;
  padding: 0;
  border: none;
  background: rgba(233, 228, 214, 0.14);
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  align-self: center;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 8px;
  height: 13px;
  background: var(--paper-dim);
  border-radius: 1px;
  border: none;
  cursor: pointer;
}
.ctrl-volume::-moz-range-thumb {
  width: 8px;
  height: 13px;
  background: var(--paper-dim);
  border: none;
  border-radius: 1px;
  cursor: pointer;
}
.ctrl-speed {
  background: rgba(201, 162, 74, 0.07);
  border: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 11.5px;
  padding: 4px 5px;
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-speed option {
  background: var(--ink-2);
  color: var(--paper);
}
.section-heading {
  font-size: 17px;
  letter-spacing: 0.14em;
  color: #f0e7d2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-heading::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--blood-bright);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(201, 58, 52, 0.6);
}
.section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong) 0%, rgba(201, 162, 74, 0) 100%);
}
.cast-panel, .synopsis-panel, .status-panel, .details-panel {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.cast-member {
  position: relative;
  padding: 26px 8px 8px;
  min-height: 84px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(18, 48, 38, 0.7) 0%, rgba(13, 33, 26, 0.9) 100%),
    var(--deep-green);
  border: 1px solid var(--line);
  overflow: hidden;
}
.cast-member::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(232, 200, 119, 0.5) 0%, rgba(201, 162, 74, 0.12) 45%, rgba(10, 15, 12, 0.9) 100%);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.7);
}
.cast-member::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(100deg, rgba(255, 240, 200, 0.16) 0%, rgba(255, 240, 200, 0) 60%);
  pointer-events: none;
}
.cast-name {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  font-family: var(--serif-narrow);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: var(--paper);
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--paper-dim);
  padding-left: 11px;
  border-left: 1px solid var(--line);
  align-self: start;
}
.synopsis-para:first-child {
  color: var(--paper);
}
.status-line {
  font-size: 13px;
  color: var(--paper-dim);
  letter-spacing: 0.06em;
}
.status-total, .status-current {
  font-family: var(--serif-narrow);
  font-size: 17px;
  color: var(--gold-bright);
  padding: 0 2px;
}
.status-current {
  color: var(--blood-bright);
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 48, 38, 0.35) 0%, rgba(10, 15, 12, 0.2) 100%);
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.detail-row:nth-child(4n) {
  border-right: none;
}
.detail-row:nth-last-child(-n + 4) {
  border-bottom: none;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  color: var(--paper);
  text-align: right;
}
.timeline-section {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.chip-timeline {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.chip-timeline::-webkit-scrollbar {
  height: 6px;
}
.chip-timeline::-webkit-scrollbar-track {
  background: rgba(233, 228, 214, 0.06);
}
.chip-timeline::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}
.chip-node {
  position: relative;
  flex: 0 0 208px;
  scroll-snap-align: start;
  padding: 40px 12px 12px;
  background: linear-gradient(180deg, rgba(13, 33, 26, 0.85) 0%, rgba(10, 15, 12, 0.95) 100%);
  border: 1px solid var(--line);
  border-top: 2px solid var(--line-strong);
}
.chip-node::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, var(--gold) 0deg 22.5deg, var(--gold-dim) 22.5deg 45deg);
  border: 2px solid var(--deep-green-2);
  box-shadow:
    0 0 0 1px var(--gold-dim),
    inset 0 0 0 3px var(--ink-2),
    0 0 12px rgba(201, 162, 74, 0.35);
}
.chip-mark {
  display: block;
  font-family: var(--serif-narrow);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.chip-label {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: var(--paper-dim);
}
.episodes-section {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  position: relative;
  padding: 11px 13px 10px 44px;
  background: linear-gradient(120deg, rgba(18, 48, 38, 0.55) 0%, rgba(10, 15, 12, 0.75) 100%);
  border: 1px solid var(--line);
  border-left: 2px solid var(--deep-green-2);
  align-self: start;
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.episode-card:hover {
  border-left-color: var(--gold);
  background: linear-gradient(120deg, rgba(18, 48, 38, 0.8) 0%, rgba(10, 15, 12, 0.85) 100%);
}
.episode-card-current {
  border-left-color: var(--blood-bright);
  background: linear-gradient(120deg, rgba(58, 18, 22, 0.6) 0%, rgba(10, 15, 12, 0.85) 100%);
}
.episode-suit {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 20px;
  line-height: 1;
  color: var(--paper-dim);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
.episode-suit-spade {
  color: #8fb3a6;
}
.episode-suit-heart {
  color: #d1554e;
}
.episode-suit-diamond {
  color: #d99a4d;
}
.episode-suit-club {
  color: #7f9bb5;
}
.episode-number {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 2px;
}
.episode-title {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #f1e8d4;
  margin-bottom: 4px;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.58;
  color: var(--paper-dim);
  margin-bottom: 6px;
}
.episode-duration {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--paper-faint);
  padding: 1px 7px;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.comments-section {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  align-items: start;
}
.comment-card {
  position: relative;
  padding: 12px 14px;
  background: linear-gradient(160deg, #141a15 0%, #0d1310 100%);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
  align-self: start;
}
.comment-card::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--blood-bright);
  transform: rotate(45deg);
}
.comment-card-left {
  margin-right: 18px;
  border-left: 2px solid var(--dark-red-2);
}
.comment-card-left::before {
  left: -4px;
}
.comment-card-right {
  margin-left: 18px;
  border-right: 2px solid var(--gold-dim);
}
.comment-card-right::before {
  right: -4px;
  background: var(--gold);
}
.comment-nickname {
  font-family: var(--serif-narrow);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 5px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.66;
  color: var(--paper-dim);
}
.recommend-region {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.recommend-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recommend-item {
  min-width: 0;
}
a.recommend-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  background: linear-gradient(180deg, rgba(18, 48, 38, 0.5) 0%, rgba(10, 15, 12, 0.7) 100%);
  border: 1px solid var(--line);
  color: var(--paper-dim);
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
  min-width: 0;
}
a.recommend-link:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
a.recommend-link:hover .recommend-name {
  color: var(--gold-bright);
}
.recommend-pic {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.6);
  filter: saturate(0.9) contrast(1.05);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}
.recommend-name {
  font-family: var(--serif-narrow);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1.35;
  transition: color 0.16s ease;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--paper-faint);
}
.site-footer {
  max-width: 1240px;
  margin: 26px auto 0;
  padding: 16px 16px 26px;
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--paper-faint);
  max-width: 80ch;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
}
.friend-links-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--gold-dim);
  flex: 0 0 auto;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--paper-dim);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a.runtime-friend-link:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-dim);
}
.footer-nav {
  display: flex;
  gap: 16px;
  padding-top: 4px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--paper-faint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-dim);
}
@media (max-width: 1024px) {.overview-hero {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 18px;
  }
.movie-title {
    font-size: 34px;
  }
.cast-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.detail-row:nth-child(4n) {
    border-right: 1px solid var(--line);
  }
.detail-row:nth-child(2n) {
    border-right: none;
  }
.detail-row:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }
.detail-row:nth-last-child(-n + 2) {
    border-bottom: none;
  }}
@media (max-width: 820px) {.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0 22px;
  }
.poster-wrap {
    max-width: 260px;
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
.comment-card-left {
    margin-right: 0;
  }
.comment-card-right {
    margin-left: 0;
  }
.recommend-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 560px) {.page-main {
    padding: 0 12px 6px;
    gap: 22px;
  }
.header-inner {
    padding: 7px 12px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    font-size: 17px;
  }
.movie-title {
    font-size: 28px;
  }
.movie-tagline {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
.poster-wrap {
    max-width: 100%;
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-row, .detail-row:nth-child(2n), .detail-row:nth-child(4n) {
    border-right: none;
  }
.detail-row:nth-last-child(-n + 4), .detail-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
.detail-row:last-child {
    border-bottom: none;
  }
.recommend-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.chip-node {
    flex: 0 0 178px;
  }
.section-heading {
    font-size: 15.5px;
  }
.ctrl {
    font-size: 11px;
    padding: 4px 7px;
  }
.site-footer {
    padding: 14px 12px 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}
