*, *::before, *::after { box-sizing: border-box; }
:root {
  --ink: #0b1512;
  --ink-2: #0f1d19;
  --ink-3: #13241f;
  --jade: #16302a;
  --jade-2: #1d3d34;
  --jade-line: rgba(94, 156, 134, 0.22);
  --tea: #c98a4b;
  --tea-2: #e0a862;
  --tea-deep: #8a5324;
  --tea-glow: rgba(224, 168, 98, 0.16);
  --amber: #f0c07a;
  --paper: #e8dfd0;
  --paper-dim: #b9b1a2;
  --paper-faint: #8b8578;
  --rule: rgba(201, 138, 75, 0.18);
  --gap: 14px;
  --gap-s: 8px;
  --pad: 16px;
}
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(120% 90% at 12% -5%, rgba(38, 84, 70, 0.5) 0%, rgba(11, 21, 18, 0) 55%),
    radial-gradient(90% 70% at 100% 8%, rgba(138, 83, 36, 0.28) 0%, rgba(11, 21, 18, 0) 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 45%, var(--ink) 100%);
  background-attachment: fixed;
  color: var(--paper);
  font-family: "Songti SC", "SimSun", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--tea-2); text-decoration: none; }
h1, h2, h3, p, ul, ol, dl, dd, figure, figcaption { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
.section-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--amber);
  padding: 3px 10px 4px 8px;
  margin-bottom: var(--gap-s);
  border-left: 3px solid var(--tea);
  display: inline-block;
  background:
    radial-gradient(80% 140% at 0% 50%, var(--tea-glow) 0%, rgba(224, 168, 98, 0) 70%);
  text-shadow: 0 0 12px rgba(224, 168, 98, 0.22);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(9, 18, 15, 0.98) 0%, rgba(9, 18, 15, 0.9) 100%);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px var(--pad);
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--tea-2);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(224, 168, 98, 0.28);
}
a[data-contract="site-name"]:hover { color: var(--amber); }
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  color: var(--paper-dim);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.16s, border-color 0.16s, background 0.16s;
}
a.runtime-category:hover {
  color: var(--tea-2);
  border-color: var(--jade-line);
  background: rgba(94, 156, 134, 0.1);
}
.header-search {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.search-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--paper-faint);
}
.search-input {
  width: 190px;
  padding: 5px 9px;
  font-size: 13px;
  background: rgba(19, 36, 31, 0.85);
  border: 1px solid var(--jade-line);
  border-radius: 2px;
  color: var(--paper);
  outline: none;
}
.search-input::placeholder { color: rgba(139, 133, 120, 0.7); }
.search-input:focus {
  border-color: var(--tea);
  box-shadow: 0 0 0 2px var(--tea-glow);
}
.search-button {
  padding: 5px 12px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: linear-gradient(180deg, var(--tea-2), var(--tea-deep));
  border-radius: 2px;
  transition: filter 0.16s;
}
.search-button:hover { filter: brightness(1.12); }
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad) 26px;
}
.movie-overview { padding-top: 14px; }
.overview-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 3px;
  min-height: 250px;
  padding: 30px 20px 26px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(11, 21, 18, 0.2) 0%, rgba(11, 21, 18, 0.82) 68%, rgba(11, 21, 18, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(224, 168, 98, 0.05) 0 1px, rgba(224, 168, 98, 0) 1px 46px),
    radial-gradient(70% 100% at 50% 120%, rgba(138, 83, 36, 0.45) 0%, rgba(11, 21, 18, 0) 70%),
    linear-gradient(160deg, var(--jade) 0%, var(--ink) 70%);
}
.hero-smoke {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70%;
  height: 78%;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(45% 60% at 50% 90%, rgba(224, 168, 98, 0.22) 0%, rgba(224, 168, 98, 0) 72%),
    radial-gradient(30% 50% at 34% 70%, rgba(94, 156, 134, 0.16) 0%, rgba(94, 156, 134, 0) 70%);
  filter: blur(3px);
}
.hero-lamps {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  background:
    radial-gradient(7px 7px at 8% 22%, rgba(240, 192, 122, 0.85) 0%, rgba(240, 192, 122, 0) 70%),
    radial-gradient(9px 9px at 22% 15%, rgba(240, 192, 122, 0.55) 0%, rgba(240, 192, 122, 0) 70%),
    radial-gradient(6px 6px at 78% 18%, rgba(240, 192, 122, 0.7) 0%, rgba(240, 192, 122, 0) 70%),
    radial-gradient(8px 8px at 92% 32%, rgba(240, 192, 122, 0.45) 0%, rgba(240, 192, 122, 0) 70%),
    radial-gradient(5px 5px at 62% 10%, rgba(240, 192, 122, 0.5) 0%, rgba(240, 192, 122, 0) 70%);
}
.hero-tea-mill {
  position: absolute;
  right: -40px;
  top: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.34;
  background:
    repeating-conic-gradient(from 0deg, rgba(224, 168, 98, 0.5) 0deg 3deg, rgba(224, 168, 98, 0) 3deg 16deg),
    radial-gradient(circle, rgba(11, 21, 18, 0) 52%, rgba(224, 168, 98, 0.28) 53%, rgba(224, 168, 98, 0) 56%);
  transform: rotate(12deg);
}
.hero-figures {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 64px;
  pointer-events: none;
}
.figure-shen-yanqing, .figure-lu-shiyan {
  position: relative;
  width: 96px;
  height: 176px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.figure-shen-yanqing::before, .figure-lu-shiyan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 13, 0) 0%, rgba(8, 16, 13, 0.92) 78%);
}
.figure-shen-yanqing::after, .figure-lu-shiyan::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(30% 22% at 50% 16%, rgba(11, 21, 18, 0.96) 0 66%, rgba(11, 21, 18, 0) 70%),
    radial-gradient(46% 60% at 50% 82%, rgba(11, 21, 18, 0.94) 0 68%, rgba(11, 21, 18, 0) 72%);
  filter: blur(0.6px);
}
.figure-shen-yanqing::after { transform: skewX(-2deg); }
.figure-lu-shiyan::after { transform: skewX(3deg) scale(1.04, 0.98); }
.figure-name {
  position: relative;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(232, 223, 208, 0.72);
  padding-bottom: 4px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}
.hero-tagline {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  font-size: clamp(17px, 3.2vw, 27px);
  letter-spacing: 0.34em;
  font-weight: 700;
  color: var(--amber);
  padding: 6px 0 2px;
  text-shadow: 0 0 22px rgba(224, 168, 98, 0.4), 0 2px 14px rgba(0, 0, 0, 0.9);
}
.overview-body {
  margin-top: var(--gap);
  display: grid;
  grid-template-columns: minmax(0, 232px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(19, 36, 31, 0.6) 0%, rgba(11, 21, 18, 0.35) 100%);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: var(--pad);
}
.poster-column { align-self: start; }
.poster-frame {
  position: relative;
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink-3);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 21, 18, 0) 55%, rgba(11, 21, 18, 0.55) 100%);
}
.overview-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-size: clamp(22px, 3.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--paper);
  text-shadow: 0 0 26px rgba(224, 168, 98, 0.28);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 6px;
}
.movie-tagline {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--tea-2);
}
.movie-seo {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--paper-dim);
  text-align: justify;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #060d0b;
  border: 1px solid var(--jade-line);
  border-radius: 3px;
  overflow: hidden;
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(19, 36, 31, 0.96), rgba(9, 18, 15, 0.98));
  border-top: 1px solid var(--jade-line);
}
.player-button {
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  color: var(--paper-dim);
  border: 1px solid var(--jade-line);
  border-radius: 2px;
  background: rgba(22, 48, 42, 0.5);
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.player-button:hover {
  color: var(--amber);
  border-color: var(--tea);
  background: rgba(138, 83, 36, 0.28);
}
.player-play {
  color: var(--ink);
  background: linear-gradient(180deg, var(--tea-2), var(--tea-deep));
  border-color: var(--tea-deep);
  font-weight: 700;
}
.player-play:hover { color: var(--ink); filter: brightness(1.1); }
.player-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--tea) 0%, var(--jade-2) 0%);
  background-color: var(--jade-2);
  border-radius: 2px;
  outline: none;
}
.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--tea-2);
  box-shadow: 0 0 8px rgba(224, 168, 98, 0.6);
}
.player-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--tea-2);
}
.player-volume {
  flex: 0 0 76px;
  width: 76px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--jade-2);
  border-radius: 2px;
  outline: none;
}
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper-dim);
}
.player-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--paper-dim);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px var(--tea), 0 14px 40px rgba(0, 0, 0, 0.7);
}
.player-shell.is-fullscreen {
  border-radius: 0;
  border-color: transparent;
}
.player-shell.is-fullscreen .player-video { height: calc(100vh - 44px); object-fit: contain; }
.player-shell.is-pip { outline: 1px solid var(--tea); }
body.is-lights-off .player-shell { box-shadow: 0 0 0 2px rgba(224, 168, 98, 0.5); }
body.is-lights-off .site-header, body.is-lights-off .timeline-section, body.is-lights-off .episodes-section, body.is-lights-off .comments-section, body.is-lights-off .recommend-band, body.is-lights-off .site-footer { opacity: 0.28; transition: opacity 0.3s; }
.player-shell .play .player-play, .player-shell .pause .player-play { font-weight: 700; }
.player-shell .mute .player-mute { color: var(--amber); }
.player-shell .speed .player-speed { color: var(--amber); }
.player-shell .volume .player-volume { background: var(--tea-deep); }
.player-shell .progress .player-progress { background-color: var(--tea-deep); }
.player-shell .theater { box-shadow: 0 0 0 1px var(--tea); }
.player-shell .light { color: var(--amber); }
.player-shell .pip { outline: 1px solid var(--tea); }
.player-shell .fullscreen { border-radius: 0; }
.player-shell .enterpictureinpicture, .player-shell .leavepictureinpicture { transition: outline 0.2s; }
.player-shell .timeupdate { transition: none; }
.player-shell .input { accent-color: var(--tea); }
.player-shell .fullscreenchange { transition: border-radius 0.2s; }
.player-shell .player { position: relative; }
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 2px;
  border-top: 1px solid var(--rule);
}
.status-item {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
  padding: 2px 9px;
  border: 1px solid var(--jade-line);
  border-radius: 2px;
  background: rgba(22, 48, 42, 0.45);
  white-space: nowrap;
}
.status-item:first-child {
  color: var(--amber);
  border-color: rgba(201, 138, 75, 0.45);
  background: rgba(138, 83, 36, 0.24);
}
.movie-details { border-top: 1px solid var(--rule); padding-top: 10px; }
.detail-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 5px 12px;
  align-items: baseline;
}
.detail-key {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--paper-faint);
  white-space: nowrap;
}
.detail-value {
  font-size: 13px;
  color: var(--paper);
  margin: 0;
  min-width: 0;
}
.movie-synopsis { border-top: 1px solid var(--rule); padding-top: 10px; }
.synopsis-paragraph {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--paper-dim);
  text-align: justify;
  text-indent: 2em;
  margin-bottom: 5px;
}
.synopsis-paragraph:last-child { margin-bottom: 0; }
.movie-cast { border-top: 1px solid var(--rule); padding-top: 10px; }
.cast-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 6px;
  align-items: start;
}
.cast-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 76px;
  padding: 6px;
  border: 1px solid var(--jade-line);
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22, 48, 42, 0.55), rgba(11, 21, 18, 0.85));
  transition: border-color 0.16s, transform 0.16s;
}
.cast-card:hover { border-color: var(--tea); transform: translateY(-2px); }
.cast-silhouette {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 62px;
  height: 62px;
  opacity: 0.4;
  background:
    radial-gradient(34% 30% at 50% 26%, rgba(224, 168, 98, 0.6) 0 62%, rgba(224, 168, 98, 0) 68%),
    radial-gradient(50% 52% at 50% 84%, rgba(201, 138, 75, 0.5) 0 62%, rgba(201, 138, 75, 0) 68%);
  filter: blur(0.4px);
}
.cast-name {
  position: relative;
  z-index: 2;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95);
}
.timeline-section {
  margin-top: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.timeline-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 6px 10px;
  border-left: 2px solid rgba(201, 138, 75, 0.4);
  padding-left: 12px;
}
.timeline-node {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 8px 5px 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(138, 83, 36, 0.22) 0%, rgba(19, 36, 31, 0.5) 60%);
  border-left: 3px solid var(--tea);
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--tea-2);
  box-shadow: 0 0 8px rgba(224, 168, 98, 0.7);
}
.timeline-timecode {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  white-space: nowrap;
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--paper-dim);
}
.episodes-section {
  margin-top: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 6px;
  align-items: start;
}
.episode-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 9px;
  border: 1px solid var(--jade-line);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(22, 48, 42, 0.5), rgba(11, 21, 18, 0.7));
  overflow: hidden;
  transition: border-color 0.18s, background 0.18s;
}
.episode-cell:hover {
  border-color: var(--tea);
  background: linear-gradient(180deg, rgba(138, 83, 36, 0.3), rgba(11, 21, 18, 0.85));
}
.episode-number {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--tea-2);
  white-space: nowrap;
}
.episode-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--paper);
}
.episode-duration {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--paper-faint);
}
.episode-summary {
  font-size: 12px;
  line-height: 1.55;
  color: var(--paper-dim);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.26s ease, opacity 0.2s ease, margin-top 0.2s ease;
}
.episode-cell:hover .episode-summary, .episode-cell:focus-within .episode-summary {
  max-height: 130px;
  opacity: 1;
  margin-top: 3px;
}
.comments-section {
  margin-top: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.comments-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.comments-short, .comments-long {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.comments-subtitle {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--tea-2);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rule);
}
.comment-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comment-card {
  padding: 7px 9px;
  border: 1px solid var(--jade-line);
  border-left: 3px solid rgba(201, 138, 75, 0.55);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(19, 36, 31, 0.7), rgba(11, 21, 18, 0.6));
}
.comments-long .comment-card:nth-child(2) { margin-left: 12px; }
.comments-long .comment-card:nth-child(3) { margin-left: 24px; }
.comments-short .comment-card:nth-child(2) { margin-right: 12px; }
.comments-short .comment-card:nth-child(3) { margin-right: 24px; }
.comment-nickname {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 2px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--paper-dim);
  text-align: justify;
}
.recommend-band {
  margin-top: 18px;
  border-top: 1px solid var(--rule);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.recommend-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--tea-2);
  padding-left: 8px;
  border-left: 3px solid var(--tea);
}
.recommend-band-1 .recommend-title { color: var(--amber); }
.recommend-band-2 {
  background: linear-gradient(90deg, rgba(22, 48, 42, 0.4) 0%, rgba(11, 21, 18, 0) 60%);
}
.recommend-band-3 {
  background: linear-gradient(90deg, rgba(138, 83, 36, 0.22) 0%, rgba(11, 21, 18, 0) 60%);
}
.recommend-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.recommend-track::-webkit-scrollbar { height: 6px; }
.recommend-track::-webkit-scrollbar-track { background: rgba(19, 36, 31, 0.6); }
.recommend-track::-webkit-scrollbar-thumb {
  background: rgba(201, 138, 75, 0.5);
  border-radius: 3px;
}
.recommend-item {
  flex: 0 0 186px;
  scroll-snap-align: start;
}
a.recommend-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 6px;
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--jade-line);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(22, 48, 42, 0.55), rgba(11, 21, 18, 0.8));
  transition: border-color 0.16s, transform 0.16s;
}
a.recommend-link:hover { border-color: var(--tea); transform: translateY(-2px); }
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  background: var(--ink-3);
}
.recommend-pic { display: block; }
.recommend-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--paper);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--paper-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(9, 18, 15, 0.9), rgba(6, 13, 11, 1));
  padding: 14px var(--pad) 20px;
}
.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto 8px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--paper-faint);
  text-align: justify;
}
.footer-nav {
  max-width: 1180px;
  margin: 0 auto 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--tea-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
.friend-links {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  padding-top: 8px;
  border-top: 1px dashed var(--rule);
}
.friend-links-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--paper-faint);
}
a.runtime-friend-link {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
  text-decoration: none;
  padding: 1px 6px;
  border: 1px solid transparent;
  border-radius: 2px;
}
a.runtime-friend-link:hover {
  color: var(--amber);
  border-color: var(--jade-line);
  background: rgba(94, 156, 134, 0.1);
}
@media (max-width: 900px) {.overview-body {
    grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
    gap: 14px;
  }
.detail-list { grid-template-columns: auto minmax(0, 1fr); }
.hero-figures { gap: 40px; }}
@media (max-width: 720px) {body { font-size: 14px; }
.header-inner { gap: 8px; padding: 7px 12px; }
.header-search { flex: 1 1 100%; }
.search-input { flex: 1 1 auto; width: auto; }
.overview-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
.poster-frame { max-width: 210px; }
.overview-hero { min-height: 200px; padding: 22px 14px 18px; }
.hero-figures { gap: 26px; }
.figure-shen-yanqing, .figure-lu-shiyan { width: 74px; height: 132px; }
.hero-tea-mill { width: 150px; height: 150px; right: -46px; top: -34px; }
.comments-columns { grid-template-columns: minmax(0, 1fr); gap: 12px; }
.comments-long .comment-card:nth-child(2), .comments-long .comment-card:nth-child(3), .comments-short .comment-card:nth-child(2), .comments-short .comment-card:nth-child(3) { margin-left: 0; margin-right: 0; }
.timeline-rail { grid-template-columns: minmax(0, 1fr); }
.player-progress { flex: 1 1 100%; order: 5; }
.recommend-item { flex: 0 0 156px; }}
@media (max-width: 480px) {.page-main { padding: 0 10px 20px; }
.episode-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.cast-strip { grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); }
.hero-tagline { letter-spacing: 0.2em; }
.poster-frame { max-width: 170px; }
.player-volume { flex: 0 0 58px; width: 58px; }
.recommend-item { flex: 0 0 138px; }}

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}
