:root {
  --ash: #6f7278;
  --ash-deep: #43464c;
  --blue-grey: #55606b;
  --blue-grey-soft: #7d8894;
  --rust: #7d3b2e;
  --rust-bright: #a04a35;
  --rust-dark: #57261d;
  --aged-cream: #d8d0bf;
  --cream-pale: #e6e0d2;
  --wall-warm: #2c2a28;
  --wall-warm-2: #35322e;
  --wall-warm-3: #403c36;
  --ink: #1c1a18;
  --key-brass: #b8863b;
  --key-brass-lit: #d8a745;
  --line: rgba(216, 208, 191, 0.16);
  --line-strong: rgba(216, 208, 191, 0.3);
  --smudge: rgba(20, 18, 16, 0.55);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  background: var(--wall-warm);
  color: var(--aged-cream);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", sans-serif;
  font-size: 13px;
  line-height: 1.42;
  background:
    radial-gradient(120% 80% at 78% 0%, rgba(125, 59, 46, 0.22), transparent 55%),
    radial-gradient(140% 90% at 12% 6%, rgba(85, 96, 107, 0.28), transparent 60%),
    linear-gradient(180deg, #2a2825 0%, #302d29 46%, #3a3730 100%);
  color: var(--aged-cream);
  min-height: 100%;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3 {
  font-family: "Songti SC", "STSong", "Noto Serif SC", "SimSun", "Source Han Serif SC", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background:
    linear-gradient(180deg, rgba(28, 26, 24, 0.94), rgba(28, 26, 24, 0.78));
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4), inset 0 -6px 14px -12px var(--key-brass);
}
.brand {
  font-family: "Songti SC", "STSong", "Noto Serif SC", "SimSun", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cream-pale);
  padding: 2px 6px;
  border-left: 3px solid var(--rust);
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="site-name"] {
  color: var(--cream-pale);
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--key-brass-lit);
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  overflow: hidden;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-grey-soft);
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(85, 96, 107, 0.12);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
a.runtime-category {
  color: var(--blue-grey-soft);
  text-decoration: none;
}
a.runtime-category:hover {
  color: var(--cream-pale);
  border-color: var(--rust);
  background: rgba(125, 59, 46, 0.24);
}
.page-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 14px 6px;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.7fr);
  gap: 16px;
  align-items: start;
  padding: 14px 14px 16px;
  background:
    linear-gradient(160deg, rgba(64, 60, 54, 0.9), rgba(44, 42, 40, 0.92)),
    linear-gradient(180deg, rgba(125, 59, 46, 0.08), transparent 70%);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(216, 208, 191, 0.04),
    inset 0 -30px 48px -40px rgba(0, 0, 0, 0.7),
    0 2px 10px rgba(0, 0, 0, 0.35);
  position: relative;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  pointer-events: none;
  background:
    radial-gradient(60% 34% at 90% 4%, rgba(184, 134, 59, 0.14), transparent 60%),
    radial-gradient(50% 30% at 4% 96%, var(--smudge), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.poster-column {
  position: relative;
  align-self: start;
}
.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #201e1c;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(216, 208, 191, 0.05);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(200deg, rgba(184, 134, 59, 0.18) 0%, transparent 38%),
    linear-gradient(0deg, rgba(20, 18, 16, 0.72) 0%, transparent 46%);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.92) sepia(0.14);
}
.overview-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.movie-title {
  font-size: 30px;
  letter-spacing: 0.08em;
  color: var(--cream-pale);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 0 22px rgba(184, 134, 59, 0.14);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.movie-tagline {
  font-family: "Songti SC", "STSong", "Noto Serif SC", "SimSun", serif;
  font-size: 14px;
  color: var(--rust-bright);
  letter-spacing: 0.1em;
  padding-left: 10px;
  border-left: 2px solid var(--rust);
  font-style: italic;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.62;
  color: rgba(216, 208, 191, 0.78);
  padding: 8px 10px;
  background: rgba(28, 26, 24, 0.42);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue-grey);
  border-radius: 2px;
  text-align: justify;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #171614;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(216, 208, 191, 0.04), 0 3px 14px rgba(0, 0, 0, 0.45);
}
.player-video {
  display: block;
  width: 100%;
  background: #100f0e;
  filter: saturate(0.86) contrast(1.05) brightness(0.94);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px 7px;
  background: linear-gradient(180deg, rgba(28, 26, 24, 0.92), rgba(20, 18, 16, 0.96));
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  font-size: 11.5px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(216, 208, 191, 0.82);
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: rgba(85, 96, 107, 0.14);
  white-space: nowrap;
  transition: color 0.16s, background 0.16s, border-color 0.16s;
}
.ctrl-btn:hover {
  color: var(--cream-pale);
  border-color: var(--rust);
  background: rgba(125, 59, 46, 0.28);
}
.ctrl-btn.is-active {
  color: var(--key-brass-lit);
  border-color: var(--key-brass);
  background: rgba(184, 134, 59, 0.2);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  padding: 7px 10px;
  border-left: 3px solid var(--rust);
  background: linear-gradient(90deg, rgba(125, 59, 46, 0.2), transparent 72%);
  border-radius: 1px;
}
.status-heading {
  font-size: 15px;
  color: var(--cream-pale);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.status-note {
  font-size: 11.5px;
  color: rgba(216, 208, 191, 0.66);
}
.detail-block {
  padding: 8px 2px 2px;
  border-top: 1px solid var(--line);
}
.detail-heading {
  font-size: 14px;
  color: var(--aged-cream);
  margin-bottom: 6px;
  letter-spacing: 0.14em;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.detail-key {
  font-size: 11.5px;
  color: var(--blue-grey-soft);
  padding: 4px 8px;
  background: rgba(28, 26, 24, 0.44);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  letter-spacing: 0.06em;
}
.detail-value {
  font-size: 12px;
  color: var(--cream-pale);
  padding: 4px 8px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(64, 60, 54, 0.22);
}
.detail-list .detail-key:nth-last-of-type(1), .detail-list .detail-value:nth-last-of-type(1) {
  border-bottom: none;
}
.cast-block {
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.cast-heading {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--aged-cream);
  margin-bottom: 8px;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px;
  background: linear-gradient(170deg, rgba(64, 60, 54, 0.5), rgba(40, 38, 35, 0.5));
  border: 1px solid var(--line);
  border-radius: 2px;
  position: relative;
}
.cast-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 2px;
  background: radial-gradient(80% 50% at 100% 0%, rgba(125, 59, 46, 0.16), transparent 60%);
}
.cast-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1px;
  border: 1px solid var(--line);
  filter: saturate(0.7) contrast(1.02) brightness(0.86) blur(0.6px) sepia(0.16);
}
.cast-name {
  font-family: "Songti SC", "STSong", "Noto Serif SC", "SimSun", serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cream-pale);
  letter-spacing: 0.08em;
  padding-left: 5px;
  border-left: 2px solid var(--rust);
  margin-top: 2px;
}
.cast-role {
  font-size: 11px;
  color: var(--blue-grey-soft);
  letter-spacing: 0.05em;
  padding-left: 7px;
}
.synopsis-block {
  padding: 8px 0 2px;
  border-top: 1px solid var(--line);
}
.synopsis-heading {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--aged-cream);
  margin-bottom: 6px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.66;
  color: rgba(216, 208, 191, 0.76);
  margin-bottom: 7px;
  text-align: justify;
  padding-left: 9px;
  border-left: 1px solid var(--line);
}
.synopsis-para:last-child {
  margin-bottom: 0;
  color: rgba(216, 208, 191, 0.9);
  border-left-color: var(--rust);
}
.timeline-strip {
  padding: 12px 12px 14px;
  background:
    linear-gradient(180deg, rgba(28, 26, 24, 0.78), rgba(40, 38, 35, 0.62));
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: inset 0 8px 20px -18px #000, inset 0 -8px 20px -18px #000;
}
.timeline-heading {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--aged-cream);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.timeline-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}
.film-rail {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 16px 8px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--rust-dark) transparent;
  background:
    repeating-linear-gradient(90deg, rgba(216, 208, 191, 0.06) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #1f1d1b, #26231f);
  border-top: 2px solid #1a1816;
  border-bottom: 2px solid #1a1816;
  border-radius: 2px;
  position: relative;
}
.film-rail::before, .film-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(180deg, transparent 0 5px, rgba(216, 208, 191, 0.22) 5px 9px);
}
.film-rail::before { left: 0; }
.film-rail::after { right: 0; }
.film-node {
  flex: 0 0 auto;
  width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 6px 8px;
  text-align: center;
  border-right: 1px dashed rgba(216, 208, 191, 0.14);
  opacity: 0.6;
  filter: saturate(0.5) brightness(0.82);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}
.film-node:last-child {
  border-right: none;
}
.film-node.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
}
.keyhole {
  width: 20px;
  height: 30px;
  display: block;
  position: relative;
  background: var(--aged-cream);
  border-radius: 10px 10px 3px 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(28, 26, 24, 0.6);
}
.keyhole::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 7px;
  height: 9px;
  transform: translateX(-50%);
  background: #1a1816;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.film-node.is-active .keyhole {
  background: linear-gradient(180deg, var(--key-brass-lit), var(--key-brass));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 0 14px rgba(216, 167, 69, 0.5);
}
.node-timecode {
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(216, 208, 191, 0.82);
  letter-spacing: 0.04em;
}
.film-node.is-active .node-timecode {
  color: var(--key-brass-lit);
}
.node-label {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(216, 208, 191, 0.6);
  letter-spacing: 0.02em;
}
.episode-block {
  padding-top: 4px;
}
.episode-heading {
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--aged-cream);
  margin-bottom: 9px;
  padding-left: 9px;
  border-left: 3px solid var(--rust);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background:
    linear-gradient(200deg, rgba(85, 96, 107, 0.26), rgba(28, 26, 24, 0.72)),
    radial-gradient(90% 70% at 84% 100%, rgba(125, 59, 46, 0.2), transparent 60%);
  box-shadow: inset 0 0 0 1px rgba(216, 208, 191, 0.03), 0 2px 8px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.episode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(216, 208, 191, 0.035) 0 3px, transparent 3px 9px);
  mix-blend-mode: overlay;
}
.episode-number {
  font-family: "Songti SC", "STSong", "Noto Serif SC", "SimSun", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: rgba(216, 208, 191, 0.9);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
}
.episode-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--rust-bright);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(216, 208, 191, 0.7);
  text-align: justify;
}
.episode-duration {
  align-self: flex-start;
  margin-top: 3px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--blue-grey-soft);
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: rgba(28, 26, 24, 0.5);
}
.comment-block {
  padding: 12px 0 4px;
  border-top: 1px solid var(--line);
}
.comment-heading {
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--aged-cream);
  margin-bottom: 12px;
  padding-left: 9px;
  border-left: 3px solid var(--blue-grey);
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  align-items: start;
  padding: 4px 2px 10px;
}
.comment-card {
  position: relative;
  padding: 9px 10px 10px;
  margin: -6px 0 0 -4px;
  border: 1px solid rgba(216, 208, 191, 0.22);
  border-radius: 2px;
  background:
    linear-gradient(178deg, rgba(230, 224, 210, 0.94), rgba(216, 208, 191, 0.86));
  color: #2b2723;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.42);
  transform: rotate(-1.1deg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.comment-card:nth-child(2n) {
  transform: rotate(1.3deg);
  background: linear-gradient(178deg, rgba(222, 216, 200, 0.95), rgba(206, 199, 182, 0.88));
}
.comment-card:nth-child(3n) {
  transform: rotate(-0.6deg);
  background: linear-gradient(178deg, rgba(233, 226, 210, 0.95), rgba(219, 210, 190, 0.88));
}
.comment-card:nth-child(4n) {
  transform: rotate(1.7deg);
}
.comment-card:nth-child(5n) {
  transform: rotate(-1.6deg);
}
.comment-card:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.comment-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 34px;
  height: 10px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(125, 59, 46, 0.45);
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.comment-nickname {
  display: block;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--rust-dark);
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.55;
  color: #3a352f;
  text-align: justify;
}
.recommend-region {
  padding: 11px 12px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(40, 38, 35, 0.72), rgba(28, 26, 24, 0.62));
  box-shadow: inset 0 0 0 1px rgba(216, 208, 191, 0.03);
}
.region-heading {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--aged-cream);
  margin-bottom: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.region-heading::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 8px rgba(160, 74, 53, 0.6);
  flex: none;
}
.region-grid {
  display: grid;
  gap: 9px;
  align-items: start;
}
.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.recommend-root {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(64, 60, 54, 0.42), rgba(28, 26, 24, 0.5));
  transition: border-color 0.18s, transform 0.18s, background 0.18s;
  min-width: 0;
}
a.recommend-root {
  color: var(--aged-cream);
  text-decoration: none;
}
a.recommend-root:hover {
  border-color: var(--rust);
  background: linear-gradient(180deg, rgba(125, 59, 46, 0.24), rgba(28, 26, 24, 0.55));
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img, .recommend-pic {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 1px;
  border: 1px solid var(--line);
  background: #201e1c;
  filter: saturate(0.78) contrast(1.03) brightness(0.9) sepia(0.08);
}
.recommend-name {
  font-family: "Songti SC", "STSong", "Noto Serif SC", "SimSun", serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cream-pale);
  letter-spacing: 0.04em;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(216, 208, 191, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.region-one .region-heading::after, .region-two .region-heading::after, .region-three .region-heading::after, .region-four .region-heading::after {
  content: "";
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-grey-soft);
  box-shadow: 8px 0 0 var(--blue-grey-soft), 16px 0 0 var(--blue-grey-soft), 24px 0 0 var(--blue-grey-soft);
}
.region-two .region-heading::after {
  box-shadow: 8px 0 0 var(--blue-grey-soft), 16px 0 0 var(--blue-grey-soft);
}
.region-three .region-heading::after {
  box-shadow: 8px 0 0 var(--blue-grey-soft), 16px 0 0 var(--blue-grey-soft);
}
.region-one {
  border-left: 3px solid var(--rust-dark);
}
.region-two {
  border-left: 3px solid var(--blue-grey);
}
.region-three {
  border-left: 3px solid var(--rust);
}
.region-four {
  border-left: 3px solid var(--blue-grey-soft);
}
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: none;
}
.footer-rule {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--rust-dark) 12%, var(--rust) 50%, var(--rust-dark) 88%, transparent);
  box-shadow: 0 0 10px rgba(125, 59, 46, 0.5);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(216, 208, 191, 0.5);
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}
.footer-link {
  font-size: 11.5px;
  color: var(--blue-grey-soft);
  letter-spacing: 0.06em;
  text-decoration: none;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--blue-grey-soft);
  text-decoration: none;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--key-brass-lit);
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.friend-links-label {
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(216, 208, 191, 0.6);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-right: 6px;
  border-right: 1px solid var(--line);
}
.runtime-friend-link {
  font-size: 11px;
  color: rgba(216, 208, 191, 0.5);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link {
  color: rgba(216, 208, 191, 0.5);
  text-decoration: none;
}
a.runtime-friend-link:hover {
  color: var(--rust-bright);
  text-decoration: underline;
}
.data-player-action:hover {
  color: var(--cream-pale);
}
.click {
  cursor: pointer;
}
.player {
  width: 100%;
}
.player-progress {
  height: 3px;
  background: var(--rust);
}
.movie-overview {
  position: relative;
}
.is-theater .player-shell {
  box-shadow: 0 0 0 1px var(--key-brass), 0 0 26px rgba(184, 134, 59, 0.28);
}
body.is-light-off {
  background: #171613;
}
body.is-light-off .player-shell {
  box-shadow: 0 0 0 1px var(--rust), 0 0 30px rgba(125, 59, 46, 0.4);
}
.player-shell.is-light-off {
  background: #0c0b0a;
}
@media (max-width: 980px) {.movie-overview {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  }
.movie-title {
    font-size: 26px;
  }
.cast-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 760px) {.page-main {
    gap: 14px;
    padding: 12px 10px 4px;
  }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    max-width: 240px;
  }
.movie-title {
    font-size: 23px;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-list .detail-key, .detail-list .detail-value {
    border-right: 1px solid var(--line);
  }
.detail-list .detail-key:nth-last-of-type(1), .detail-list .detail-value:nth-last-of-type(1) {
    border-bottom: 1px solid var(--line);
  }
.detail-list .detail-value:nth-last-of-type(1) {
    border-bottom: none;
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cols-4, .cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 520px) {.site-header {
    gap: 8px;
    padding: 7px 10px;
  }
.brand {
    font-size: 16px;
  }
.category-strip {
    gap: 3px 5px;
  }
.runtime-category {
    font-size: 11px;
    padding: 3px 7px;
  }
.movie-title {
    font-size: 20px;
  }
.movie-tagline {
    font-size: 12.5px;
  }
.movie-seo {
    font-size: 12px;
  }
.movie-overview {
    padding: 11px 10px 13px;
  }
.poster-column {
    max-width: 190px;
  }
.cast-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cols-4, .cols-3 {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card {
    margin: 4px 0 0 0;
  }
.comment-card:nth-child(n) {
    transform: rotate(0deg);
  }
.film-node {
    width: 92px;
  }
.region-heading::after {
    transform: translateX(-6px);
  }
.friend-links-label {
    border-right: none;
    padding-right: 0;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition: none !important;
    animation: none !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}
