:root {
  --ink: #1c1410;
  --wood-deep: #2a1a12;
  --wood: #3a251a;
  --wood-soft: #4a3225;
  --moss: #26332b;
  --moss-deep: #1a241e;
  --pear: #f2eee6;
  --pear-dim: #cfc8ba;
  --pear-faint: rgba(242, 238, 230, 0.18);
  --pear-line: rgba(242, 238, 230, 0.28);
  --ember: #b4552d;
  --ember-soft: #8a3f22;
  --rule: rgba(242, 238, 230, 0.14);
  --serif: "Songti SC", "SimSun", "STSong", "Noto Serif CJK SC", serif;
  --sans: "Heiti SC", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(1200px 600px at 18% -10%, rgba(74, 50, 37, 0.55), transparent 60%),
    linear-gradient(180deg, #1a110c 0%, #201510 40%, #191410 100%);
  color: var(--pear-dim);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(115deg, rgba(242, 238, 230, 0.016) 0 1px, transparent 1px 7px);
  z-index: 0;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--pear-dim);
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--pear);
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(20, 13, 9, 0.96), rgba(20, 13, 9, 0.82));
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--pear);
  text-decoration: none;
  padding-right: 16px;
  border-right: 1px solid var(--pear-line);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: #fff;
}
.categories-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--pear-dim);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 1px;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
a.runtime-category:hover {
  color: var(--pear);
  border-color: var(--pear-line);
  background: rgba(242, 238, 230, 0.05);
}
.page-main {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px 26px;
  display: block;
}
.section-label {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--pear);
  margin-bottom: 8px;
  padding-left: 12px;
  position: relative;
  text-transform: none;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background: var(--ember);
  transform: rotate(45deg);
}
.movie-overview {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 0 24px;
  padding: 20px 0 16px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.poster-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--wood-deep);
  border: 1px solid var(--pear-line);
  grid-row: 1 / span 2;
}
.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(180, 85, 45, 0.22), transparent 45%),
    linear-gradient(0deg, rgba(20, 13, 9, 0.72), transparent 55%);
  pointer-events: none;
}
.poster-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.92);
}
.overview-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.movie-title {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: var(--pear);
  text-shadow: 0 0 22px rgba(180, 85, 45, 0.28);
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.24em;
  color: var(--pear);
  padding: 7px 14px 7px 16px;
  border-left: 2px solid var(--ember);
  background: linear-gradient(90deg, rgba(180, 85, 45, 0.18), transparent 78%);
  align-self: flex-start;
  margin: 4px 0 8px;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.72;
  color: rgba(207, 200, 186, 0.78);
  text-align: justify;
  max-width: 62ch;
}
.cast-strip {
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
}
.cast-item {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pear-dim);
  padding: 3px 10px;
  background: rgba(38, 51, 43, 0.6);
  border: 1px solid rgba(242, 238, 230, 0.12);
  border-radius: 1px;
  white-space: nowrap;
}
.cast-item:first-child {
  color: var(--pear);
  border-color: var(--pear-line);
  background: rgba(74, 50, 37, 0.85);
}
.episode-status {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.status-current {
  color: var(--pear);
  padding: 3px 11px;
  background: var(--ember-soft);
  border-radius: 1px;
}
.status-total {
  color: var(--pear-dim);
  padding: 3px 11px;
  border: 1px solid var(--pear-line);
  border-radius: 1px;
}
.synopsis-block {
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.78;
  color: rgba(207, 200, 186, 0.8);
  text-align: justify;
  margin-bottom: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(242, 238, 230, 0.08);
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.details-panel {
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}
.details-list {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid rgba(242, 238, 230, 0.07);
}
.detail-key {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(207, 200, 186, 0.55);
  padding: 5px 10px 5px 4px;
  border-bottom: 1px solid rgba(242, 238, 230, 0.06);
  font-family: var(--serif);
}
.detail-value {
  font-size: 12.5px;
  color: var(--pear-dim);
  padding: 5px 12px 5px 0;
  border-bottom: 1px solid rgba(242, 238, 230, 0.06);
}
.player-shell {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin-top: 14px;
  background: #0d0907;
  border: 1px solid rgba(242, 238, 230, 0.16);
  position: relative;
}
.player-shell video {
  display: block;
  background: #000;
  filter: saturate(0.92) contrast(1.04);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 7px 9px;
  background: linear-gradient(180deg, rgba(38, 51, 43, 0.72), rgba(26, 36, 30, 0.92));
  border-top: 1px solid var(--rule);
}
.ctrl-btn {
  background: transparent;
  border: 1px solid rgba(242, 238, 230, 0.22);
  color: var(--pear-dim);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 1px;
  cursor: pointer;
  transition: color 0.16s, border-color 0.16s, background 0.16s;
  white-space: nowrap;
}
.ctrl-btn:hover {
  color: var(--pear);
  border-color: var(--pear-line);
  background: rgba(242, 238, 230, 0.06);
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 120px;
  height: 3px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(242, 238, 230, 0.18);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ember);
  border: 1px solid var(--pear);
}
.ctrl-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 1px solid var(--pear);
  border-radius: 50%;
  background: var(--ember);
}
.ctrl-volume {
  flex: 0 0 84px;
  width: 84px;
  height: 3px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(242, 238, 230, 0.18);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pear);
}
.ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--pear);
}
.ctrl-speed {
  background: rgba(20, 13, 9, 0.7);
  border: 1px solid rgba(242, 238, 230, 0.22);
  color: var(--pear-dim);
  font-size: 11.5px;
  padding: 4px 6px;
  border-radius: 1px;
  cursor: pointer;
}
.play.is-playing, button.is-playing {
  color: var(--pear);
  border-color: var(--ember);
  background: rgba(180, 85, 45, 0.24);
}
.ctrl-btn.is-active {
  color: var(--pear);
  border-color: var(--pear-line);
  background: rgba(242, 238, 230, 0.08);
}
.ctrl-btn.is-muted {
  color: var(--ember);
  border-color: var(--ember-soft);
}
.player-shell.is-theater {
  border-color: var(--ember-soft);
  box-shadow: 0 0 0 1px rgba(180, 85, 45, 0.3), 0 12px 40px rgba(0, 0, 0, 0.6);
}
body.is-lights-off .page-main > :not(.movie-overview) {
  opacity: 0.35;
  transition: opacity 0.3s;
}
body.is-lights-off .player-shell {
  box-shadow: 0 0 0 1px var(--ember), 0 0 60px rgba(180, 85, 45, 0.25);
}
.timeline-bar {
  padding: 12px 0 12px;
  border-bottom: 1px solid var(--rule);
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--pear-line);
  position: relative;
}
.timeline-node {
  position: relative;
  padding: 14px 10px 4px 0;
  border-right: 1px solid rgba(242, 238, 230, 0.09);
  min-width: 0;
}
.timeline-node:last-child {
  border-right: none;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--wood-soft);
  border: 1px solid var(--pear-line);
  transform: rotate(45deg);
}
.timeline-node:nth-child(5)::before, .timeline-node:nth-child(6)::before {
  background: var(--ember);
  border-color: var(--ember);
}
.timeline-time {
  display: block;
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--pear);
  margin-bottom: 3px;
}
.timeline-label {
  display: block;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(207, 200, 186, 0.68);
}
.episodes-section {
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--rule);
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242, 238, 230, 0.1);
  border: 1px solid rgba(242, 238, 230, 0.1);
}
.episode-card {
  position: relative;
  background: linear-gradient(180deg, rgba(38, 51, 43, 0.5), rgba(26, 26, 20, 0.72));
  padding: 9px 12px 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  transition: background 0.18s;
}
.episode-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ember-soft);
  opacity: 0;
  transition: opacity 0.18s;
}
.episode-card:hover {
  background: linear-gradient(180deg, rgba(74, 50, 37, 0.72), rgba(38, 30, 22, 0.86));
}
.episode-card:hover::before {
  opacity: 1;
}
.episode-title {
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: var(--pear);
  line-height: 1.35;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.62;
  color: rgba(207, 200, 186, 0.7);
}
.episode-duration {
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--pear);
  padding: 1px 7px;
  border: 1px solid var(--pear-line);
  border-radius: 1px;
  background: rgba(20, 13, 9, 0.5);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s, max-height 0.2s, margin 0.2s;
}
.episode-card:hover .episode-duration, .episode-card:focus-within .episode-duration {
  opacity: 1;
  max-height: 32px;
  margin-top: 2px;
}
.comments-section {
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.comments-waterfall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  align-items: start;
}
.comment-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.comment-col:last-child {
  padding-top: 22px;
}
.comment-card {
  background: linear-gradient(160deg, rgba(38, 51, 43, 0.62), rgba(26, 22, 17, 0.82));
  border: 1px solid rgba(242, 238, 230, 0.1);
  border-left: 2px solid rgba(242, 238, 230, 0.22);
  padding: 9px 12px;
  min-width: 0;
}
.comment-nick {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ember);
  margin-bottom: 4px;
}
.comment-text {
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(242, 238, 230, 0.86);
  text-align: justify;
}
.rec-region {
  padding: 12px 0 10px;
  border-bottom: 1px solid var(--rule);
}
.rec-region:last-of-type {
  border-bottom: none;
}
.rec-title {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--pear);
  text-align: right;
  padding-right: 6px;
  margin-bottom: 8px;
  border-right: 2px solid var(--ember);
}
.rec-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.rec-region-2 .rec-row, .rec-region-3 .rec-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-decoration: none;
  color: var(--pear-dim);
  background: rgba(20, 13, 9, 0.42);
  border: 1px solid rgba(242, 238, 230, 0.09);
  padding: 5px;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}
a.rec-card:hover {
  border-color: var(--pear-line);
  background: rgba(74, 50, 37, 0.6);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.9);
}
a.rec-card [data-runtime="name"] {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--pear);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.rec-card [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(207, 200, 186, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 18px 30px;
  border-top: 1px solid var(--pear-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(207, 200, 186, 0.5);
  max-width: 92ch;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(242, 238, 230, 0.08);
}
.friend-links-label {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--pear);
  padding-right: 8px;
  border-right: 1px solid var(--pear-line);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: rgba(207, 200, 186, 0.6);
  text-decoration: none;
  padding: 1px 2px;
  transition: color 0.16s;
}
a.runtime-friend-link:hover {
  color: var(--pear);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  padding-top: 4px;
}
a[data-contract="footer-home"] {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--pear-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}
a[data-contract="footer-home"]:hover {
  color: var(--pear);
  border-bottom-color: var(--ember);
}
a[data-contract="footer-sitemap"] {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--pear-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--pear);
  border-bottom-color: var(--ember);
}
.footer-link {
  white-space: nowrap;
}
@media (max-width: 1000px) {.movie-overview {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 0 18px;
  }
.details-list {
    grid-template-columns: max-content minmax(0, 1fr);
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-node:nth-child(3n) {
    border-right: none;
  }
.timeline-node {
    border-bottom: 1px solid rgba(242, 238, 230, 0.07);
  }
.rec-row, .rec-region-2 .rec-row, .rec-region-3 .rec-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.header-inner {
    padding: 7px 12px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    font-size: 16px;
    padding-right: 10px;
  }
.page-main, .site-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px 0;
    padding-top: 14px;
  }
.poster-shell {
    grid-row: auto;
    width: 62%;
    max-width: 230px;
  }
.movie-title {
    font-size: 21px;
  }
.movie-tagline {
    font-size: 13.5px;
    letter-spacing: 0.18em;
  }
.details-list {
    grid-template-columns: max-content minmax(0, 1fr);
  }
.player-shell {
    margin-top: 10px;
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-node:nth-child(3n) {
    border-right: 1px solid rgba(242, 238, 230, 0.09);
  }
.timeline-node:nth-child(2n) {
    border-right: none;
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-duration {
    opacity: 1;
    max-height: 32px;
    margin-top: 2px;
  }
.comments-waterfall {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-col:last-child {
    padding-top: 0;
  }
.rec-row, .rec-region-2 .rec-row, .rec-region-3 .rec-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-title {
    text-align: left;
    border-right: none;
    border-left: 2px solid var(--ember);
    padding-left: 8px;
    padding-right: 0;
  }}
@media (max-width: 420px) {.poster-shell {
    width: 72%;
  }
.movie-title {
    font-size: 19px;
  }
.ctrl-btn {
    font-size: 11px;
    padding: 3px 7px;
  }
.ctrl-volume {
    flex-basis: 64px;
    width: 64px;
  }
.rec-row, .rec-region-2 .rec-row, .rec-region-3 .rec-row {
    grid-template-columns: minmax(0, 1fr);
  }
[data-runtime="recommendation"] img {
    aspect-ratio: 16 / 9;
  }}

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}
