:root {
  --ink: #1b1614;
  --ink-soft: #3a2f2a;
  --night: #10161f;
  --night-2: #17202c;
  --night-3: #1e2a38;
  --soy: #4a2f1e;
  --soy-deep: #2e1c10;
  --soy-light: #6b452a;
  --amber: #f2b13d;
  --amber-hot: #ffd070;
  --amber-glow: rgba(242, 177, 61, 0.35);
  --scallion: #7fa650;
  --scallion-deep: #4f7030;
  --paper: #f4e9d4;
  --paper-dim: #cbb999;
  --line: rgba(242, 177, 61, 0.28);
  --line-strong: #f2b13d;
  --radius: 10px;
  --radius-sm: 7px;
  --border: 2px solid rgba(242, 177, 61, 0.45);
  --shadow: 0 3px 0 rgba(0, 0, 0, 0.45);
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1200px 500px at 15% -5%, rgba(242, 177, 61, 0.10), transparent 60%),
    radial-gradient(900px 480px at 92% 4%, rgba(36, 86, 140, 0.22), transparent 62%),
    linear-gradient(180deg, #0c1119 0%, #10161f 42%, #0e131b 100%);
  background-attachment: fixed;
  color: var(--paper);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, p, dl, dd, dt, figure, ol, ul {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: var(--amber);
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--amber);
  color: var(--soy-deep);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(13, 19, 27, 0.97), rgba(13, 19, 27, 0.88));
  border-bottom: 2px solid rgba(242, 177, 61, 0.30);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5), 0 10px 24px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}
.header-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", "Songti SC", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--amber-hot);
  text-decoration: none;
  text-shadow: 0 0 14px var(--amber-glow);
  white-space: nowrap;
  padding: 2px 0;
  border-bottom: 2px dashed transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
a[data-contract="site-name"]:hover {
  color: #fff2d0;
  border-bottom-color: var(--amber);
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1 1 auto;
}
.runtime-category, a.runtime-category {
  display: inline-block;
  padding: 3px 11px;
  border: 2px solid rgba(242, 177, 61, 0.42);
  border-radius: 999px;
  background: rgba(74, 47, 30, 0.55);
  color: var(--paper-dim);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.runtime-category:hover, a.runtime-category:hover {
  background: var(--amber);
  border-color: var(--amber-hot);
  color: var(--soy-deep);
  transform: translateY(-1px);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.movie-overview {
  background:
    linear-gradient(160deg, rgba(30, 42, 56, 0.92) 0%, rgba(20, 28, 38, 0.94) 55%, rgba(26, 20, 16, 0.94) 100%);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 220px at 8% 0%, rgba(242, 177, 61, 0.14), transparent 70%);
  pointer-events: none;
}
.overview-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 2fr);
  gap: 14px;
  align-items: start;
}
.poster-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}
.poster-frame {
  position: relative;
  border: 2px solid rgba(242, 177, 61, 0.55);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--soy-deep);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.5), 0 0 22px rgba(242, 177, 61, 0.12);
}
.poster-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}
.poster-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 8px 6px;
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber-hot);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(14, 10, 6, 0.92));
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}
.title-block {
  position: relative;
  padding: 9px 12px 9px 15px;
  border-left: 4px solid var(--amber);
  background: linear-gradient(90deg, rgba(74, 47, 30, 0.55), rgba(74, 47, 30, 0));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.hero-slogan {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", "Songti SC", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--scallion);
  margin-bottom: 2px;
}
.movie-title {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", "Songti SC", serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff6e0;
  text-shadow: 0 0 18px rgba(242, 177, 61, 0.35), 0 2px 0 rgba(0, 0, 0, 0.5);
}
.movie-tagline {
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--paper-dim);
  letter-spacing: 0.05em;
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: none;
  border: 2px solid rgba(242, 177, 61, 0.45);
  border-radius: var(--radius-sm);
  background: #05080d;
  overflow: hidden;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.55), 0 0 26px rgba(24, 70, 120, 0.30);
}
.player-shell.is-theater {
  border-color: var(--amber-hot);
  box-shadow: 0 0 0 2px rgba(242, 177, 61, 0.35), 0 0 40px rgba(242, 177, 61, 0.35);
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
}
.player-video.is-light {
  filter: brightness(1.12) contrast(1.04);
}
.player-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(23, 32, 44, 0.95), rgba(12, 17, 24, 0.98));
  border-top: 2px solid rgba(242, 177, 61, 0.30);
}
.player-button {
  appearance: none;
  border: 2px solid rgba(242, 177, 61, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(74, 47, 30, 0.7);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.player-button:hover {
  background: var(--soy-light);
  border-color: var(--amber);
  color: #fff6e0;
}
.player-button.is-active, .player-button:active {
  background: var(--amber);
  border-color: var(--amber-hot);
  color: var(--soy-deep);
  transform: translateY(1px);
}
.player-progress, .player-volume {
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber) 0%, rgba(242, 177, 61, 0.20) 0%, rgba(242, 177, 61, 0.20) 100%);
  outline: none;
  cursor: pointer;
  border: 1px solid rgba(242, 177, 61, 0.30);
}
.player-progress {
  flex: 1 1 140px;
  min-width: 90px;
}
.player-volume {
  flex: 0 1 104px;
  min-width: 70px;
}
.player-progress::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber-hot);
  border: 2px solid var(--soy-deep);
  box-shadow: 0 0 8px var(--amber-glow);
  cursor: pointer;
}
.player-progress::-moz-range-thumb, .player-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber-hot);
  border: 2px solid var(--soy-deep);
  cursor: pointer;
}
.player-progress::-moz-range-track, .player-volume::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(242, 177, 61, 0.20);
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
  padding: 9px 11px;
  border: 2px solid rgba(242, 177, 61, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(12, 17, 24, 0.55);
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  border-bottom: 1px dashed rgba(242, 177, 61, 0.18);
  padding-bottom: 3px;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--scallion);
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  color: var(--paper);
  overflow-wrap: break-word;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 2px solid rgba(242, 177, 61, 0.45);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(74, 47, 30, 0.75), rgba(30, 42, 56, 0.65));
  box-shadow: inset 0 0 18px rgba(242, 177, 61, 0.10);
}
.status-score {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--amber-hot);
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px var(--amber-glow);
  padding-right: 10px;
  border-right: 2px dashed rgba(242, 177, 61, 0.40);
}
.status-episodes {
  font-size: 13px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.03em;
}
.status-note {
  font-size: 12px;
  color: var(--paper-dim);
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(127, 166, 80, 0.20);
  border: 1px solid rgba(127, 166, 80, 0.55);
}
.cast-strip {
  border-top: 2px dashed rgba(242, 177, 61, 0.25);
  padding-top: 9px;
}
.cast-heading {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 7px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cast-item {
  flex: 1 1 84px;
  max-width: 118px;
  min-width: 76px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border: 2px solid rgba(242, 177, 61, 0.32);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--soy-deep);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.cast-item:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
}
.cast-avatar {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(242, 177, 61, 0.55) 0 22%, transparent 23%),
    radial-gradient(circle at 50% 96%, rgba(242, 177, 61, 0.42) 0 40%, transparent 41%),
    linear-gradient(160deg, #35414f, #1d2733 70%);
  position: relative;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 6px, transparent 6px 12px);
  mix-blend-mode: screen;
}
.cast-name {
  display: block;
  padding: 3px 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(46, 28, 16, 0.95), rgba(20, 14, 9, 0.98));
  border-top: 1px solid rgba(242, 177, 61, 0.28);
}
.synopsis-panel {
  position: relative;
  margin-top: 14px;
  padding: 12px 13px 13px;
  border: 2px solid rgba(242, 177, 61, 0.30);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.72), rgba(20, 15, 11, 0.72));
}
.synopsis-heading {
  display: inline-block;
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber-hot);
  padding-right: 12px;
  margin-bottom: 7px;
  border-bottom: 2px solid rgba(242, 177, 61, 0.45);
}
.synopsis-lead {
  font-size: 13.5px;
  line-height: 1.75;
  color: #fdf1d8;
  padding: 8px 10px;
  border-left: 4px solid var(--scallion);
  background: linear-gradient(90deg, rgba(127, 166, 80, 0.14), transparent 85%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 8px;
}
.synopsis-body {
  column-count: 2;
  column-gap: 20px;
  column-rule: 1px dashed rgba(242, 177, 61, 0.22);
}
.synopsis-paragraph {
  font-size: 12.8px;
  line-height: 1.72;
  color: var(--paper-dim);
  text-align: justify;
  margin-bottom: 7px;
  break-inside: avoid;
}
.synopsis-paragraph:first-child::first-letter {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  padding-right: 3px;
}
.section-heading {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber-hot);
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 9px;
  border-bottom: 3px solid rgba(242, 177, 61, 0.55);
  text-shadow: 0 0 14px var(--amber-glow);
}
.timeline-section {
  border: 2px solid rgba(242, 177, 61, 0.30);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 32, 44, 0.80), rgba(14, 19, 27, 0.85));
  padding: 12px 13px 14px;
  box-shadow: var(--shadow);
}
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--soy-light) transparent;
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--soy-light);
  border-radius: 999px;
}
.timeline-node {
  position: relative;
  flex: 1 0 152px;
  min-width: 132px;
  padding: 0 12px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--soy-deep);
  box-shadow: 0 0 10px var(--amber-glow);
  z-index: 2;
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 11px;
  right: -2px;
  border-top: 2px dashed rgba(242, 177, 61, 0.45);
  z-index: 1;
}
.timeline-node:last-child::after {
  display: none;
}
.timeline-time {
  display: block;
  padding-left: 16px;
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber-hot);
  white-space: nowrap;
}
.timeline-label {
  display: block;
  padding-top: 5px;
  font-size: 11.8px;
  line-height: 1.5;
  color: var(--paper-dim);
  border-top: 1px solid rgba(242, 177, 61, 0.16);
}
.episodes-section {
  border: 2px solid rgba(242, 177, 61, 0.30);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 27, 37, 0.85), rgba(13, 18, 25, 0.88));
  padding: 12px 13px 14px;
  box-shadow: var(--shadow);
}
.episodes-meta {
  display: inline-block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--scallion);
  padding: 2px 10px;
  border: 1px solid rgba(127, 166, 80, 0.55);
  border-radius: 999px;
  background: rgba(127, 166, 80, 0.14);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  row-gap: 2px;
  align-items: start;
  padding: 8px 10px 8px 9px;
  border: 2px solid rgba(242, 177, 61, 0.30);
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, rgba(74, 47, 30, 0.48), rgba(16, 23, 32, 0.72));
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.40);
  transition: border-color 0.16s ease, transform 0.16s ease, background 0.16s ease;
  cursor: pointer;
  overflow: hidden;
}
.episode-card:hover {
  border-color: var(--amber);
  background: linear-gradient(150deg, rgba(107, 69, 42, 0.62), rgba(20, 28, 38, 0.80));
  transform: translateY(-1px);
}
.episode-number {
  grid-row: 1 / span 2;
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 30px;
  line-height: 0.92;
  font-weight: 700;
  color: rgba(242, 177, 61, 0.85);
  text-shadow: 0 0 12px rgba(242, 177, 61, 0.28);
  min-width: 34px;
  text-align: center;
  padding-top: 2px;
}
.episode-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff4dc;
  line-height: 1.35;
  align-self: center;
}
.episode-summary {
  font-size: 11.8px;
  line-height: 1.5;
  color: var(--paper-dim);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.16s ease;
}
.episode-card:hover .episode-summary {
  -webkit-line-clamp: 4;
  color: var(--paper);
}
.episode-duration {
  position: absolute;
  top: 6px;
  right: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--soy-deep);
  background: rgba(242, 177, 61, 0.85);
  border-radius: 999px;
  padding: 1px 7px;
}
.comments-section {
  border: 2px solid rgba(242, 177, 61, 0.30);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 24, 33, 0.85), rgba(12, 17, 24, 0.88));
  padding: 12px 13px 14px;
  box-shadow: var(--shadow);
}
.comment-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comment-bubble {
  position: relative;
  padding: 8px 11px 9px;
  border: 2px solid rgba(242, 177, 61, 0.32);
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(32, 44, 58, 0.85), rgba(22, 17, 13, 0.85));
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.42);
}
.comment-bubble::before {
  content: "";
  position: absolute;
  left: 15px;
  bottom: -8px;
  width: 12px;
  height: 12px;
  background: inherit;
  border-right: 2px solid rgba(242, 177, 61, 0.32);
  border-bottom: 2px solid rgba(242, 177, 61, 0.32);
  transform: rotate(45deg);
  border-radius: 0 0 3px 0;
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.comment-avatar {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(242, 177, 61, 0.55);
  background:
    radial-gradient(circle at 50% 36%, rgba(242, 177, 61, 0.60) 0 24%, transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(127, 166, 80, 0.55) 0 42%, transparent 43%),
    linear-gradient(160deg, #3a4a5c, #1b2530);
  box-shadow: 0 0 10px rgba(242, 177, 61, 0.20);
}
.comment-nickname {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--amber-hot);
}
.comment-text {
  font-size: 12.8px;
  line-height: 1.68;
  color: var(--paper-dim);
}
.recommend-region {
  border: 2px solid rgba(242, 177, 61, 0.30);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 25, 35, 0.85), rgba(12, 17, 24, 0.88));
  padding: 12px 13px 14px;
  box-shadow: var(--shadow);
}
.recommend-heading {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--amber);
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 9px;
  border-bottom: 2px dashed rgba(242, 177, 61, 0.40);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border: 2px solid rgba(242, 177, 61, 0.30);
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(74, 47, 30, 0.42), rgba(15, 21, 29, 0.78));
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.42);
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
a.recommend-item:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.45), 0 0 18px rgba(242, 177, 61, 0.20);
}
[data-runtime="recommendation"] img, .recommend-pic {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(242, 177, 61, 0.28);
  background: #141a22;
}
.recommend-name {
  font-size: 12.8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff4dc;
  line-height: 1.35;
}
.recommend-blurb {
  font-size: 11.6px;
  line-height: 1.5;
  color: var(--paper-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 22px;
  border-top: 3px solid rgba(242, 177, 61, 0.35);
  background:
    linear-gradient(180deg, rgba(12, 17, 24, 0.96), rgba(9, 12, 17, 0.99));
  box-shadow: inset 0 6px 18px rgba(0, 0, 0, 0.45);
}
.footer-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 16px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 14px 20px;
  align-items: start;
}
.footer-disclaimer {
  grid-column: 1 / -1;
  font-size: 11.8px;
  line-height: 1.7;
  color: #8e9aa8;
  padding: 9px 11px;
  border: 1px dashed rgba(242, 177, 61, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(20, 28, 38, 0.45);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 12px;
  border: 2px solid rgba(242, 177, 61, 0.42);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
a[data-contract="footer-home"] {
  color: var(--amber-hot);
  background: rgba(74, 47, 30, 0.55);
}
a[data-contract="footer-sitemap"] {
  color: var(--scallion);
  background: rgba(127, 166, 80, 0.14);
}
a[data-contract="footer-home"]:hover {
  background: var(--amber);
  border-color: var(--amber-hot);
  color: var(--soy-deep);
}
a[data-contract="footer-sitemap"]:hover {
  background: var(--scallion-deep);
  border-color: var(--scallion);
  color: #f2ffd8;
}
.friend-links {
  grid-column: 2;
  grid-row: 2;
  border-left: 2px dashed rgba(242, 177, 61, 0.22);
  padding-left: 16px;
}
.friend-links-heading {
  font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 8px;
}
.friend-links-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 14px;
}
a.runtime-friend-link {
  display: block;
  font-size: 12px;
  color: #9fb0c2;
  text-decoration: none;
  padding: 1px 0 1px 12px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
a.runtime-friend-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: rgba(242, 177, 61, 0.55);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
a.runtime-friend-link:hover {
  color: var(--amber-hot);
  padding-left: 15px;
}
a.runtime-friend-link:hover::before {
  background: var(--amber-hot);
  box-shadow: 0 0 8px var(--amber-glow);
}
.player-shell.click, .player-shell .click {
  cursor: pointer;
}
.player-video.is-playing {
  filter: brightness(1.04);
}
.player-video.is-muted, .player-shell.is-muted {
  opacity: 0.96;
}
.player-button.is-active {
  background: var(--amber);
  border-color: var(--amber-hot);
  color: var(--soy-deep);
}
@media (max-width: 980px) {.overview-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
.poster-frame {
    flex: 0 0 190px;
    max-width: 190px;
  }
.poster-column::after {
    content: "姐妹并肩站在便利店后厨，深夜的暖黄灯光与冷蓝夜色在砧板上交界。";
    flex: 1 1 auto;
    font-family: "STKaiti", "Kaiti SC", "KaiTi", serif;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.06em;
    color: var(--paper-dim);
    padding: 10px 12px;
    border-left: 3px solid rgba(242, 177, 61, 0.45);
    background: linear-gradient(90deg, rgba(74, 47, 30, 0.35), transparent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }
.synopsis-body {
    column-count: 1;
  }}
@media (max-width: 760px) {.header-shell {
    gap: 9px;
    padding: 8px 12px;
  }
a[data-contract="site-name"] {
    font-size: 18px;
  }
.page-main {
    padding: 12px 12px 26px;
    gap: 16px;
  }
.movie-overview {
    padding: 11px;
  }
.movie-title {
    font-size: 24px;
  }
.hero-slogan {
    font-size: 13.5px;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-summary {
    -webkit-line-clamp: 2;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.footer-shell {
    grid-template-columns: minmax(0, 1fr);
    padding: 14px 12px 20px;
  }
.friend-links {
    grid-column: 1;
    grid-row: auto;
    border-left: none;
    border-top: 2px dashed rgba(242, 177, 61, 0.22);
    padding-left: 0;
    padding-top: 10px;
  }
.player-controls {
    gap: 5px;
    padding: 6px;
  }
.player-button {
    font-size: 11.5px;
    padding: 3px 8px;
  }
.player-progress {
    flex: 1 1 100%;
    order: -1;
  }}
@media (max-width: 520px) {.poster-column {
    flex-direction: column;
  }
.poster-frame {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
.poster-column::after {
    display: none;
  }
.cast-item {
    flex: 1 1 72px;
    min-width: 64px;
    max-width: none;
  }
.movie-title {
    font-size: 21px;
  }
.status-score {
    font-size: 17px;
    border-right: none;
    padding-right: 0;
  }
.timeline-node {
    flex: 0 0 138px;
    min-width: 122px;
  }
.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.friend-links-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-number {
    font-size: 25px;
    min-width: 28px;
  }}
@media (max-width: 380px) {.player-controls {
    gap: 4px;
  }
.player-button {
    font-size: 11px;
    padding: 3px 6px;
    border-width: 1px;
  }
.comment-bubble {
    padding: 7px 9px 8px;
  }}
@media (prefers-reduced-motion: reduce) {*, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !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}
