*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body, h1, h2, h3, p, figure, figcaption, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --ink: #1b1e1d;
  --ink-soft: #3a3f3c;
  --ink-mute: #5c625d;
  --mist: #7c8a86;
  --slate: #4b5854;
  --blue-grey: #8fa3a1;
  --warm-brown: #6d4f36;
  --warm-brown-deep: #4a3423;
  --warm-amber: #c08a4e;
  --glow: #e8b877;
  --paper: #eceae4;
  --paper-deep: #e0ddd4;
  --card: #f2f0ea;
  --card-edge: #c9c5b8;
  --dark: #232724;
  --dark-2: #2c322e;
  --dark-3: #363d38;
  --line: #b7b4a6;
  --line-dash: #8d9a95;
  --title-font: "Songti SC", "STSong", "SimSun", "Noto Serif SC", "Source Han Serif SC", serif;
  --body-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Heiti SC", system-ui, -apple-system, sans-serif;
}
html {
  background: var(--dark);
}
body {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  background:
    linear-gradient(180deg, #2a2f2b 0%, #232724 40%, #1e2220 100%);
  min-height: 100vh;
  letter-spacing: 0.01em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  padding: 8px clamp(10px, 3vw, 32px);
  background: linear-gradient(180deg, rgba(28, 32, 30, 0.97) 0%, rgba(31, 36, 33, 0.92) 100%);
  border-bottom: 1px solid #3c443f;
  backdrop-filter: blur(6px);
}
.site-brand, a[data-contract="site-name"] {
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--glow);
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.site-brand:hover {
  color: #f5d3a0;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 4px;
  min-width: 0;
  flex: 1 1 240px;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12.5px;
  line-height: 1.3;
  color: #c9d3ce;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #4d5851;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover {
  color: var(--glow);
  border-color: var(--warm-amber);
  background: rgba(192, 138, 78, 0.14);
}
.page-main {
  display: block;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(10px, 3vw, 30px) clamp(20px, 4vw, 40px);
}
.block-title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--warm-brown-deep);
  padding-left: 10px;
  border-left: 4px solid var(--warm-amber);
  line-height: 1.2;
  margin-bottom: 10px;
}
.movie-overview {
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(232, 184, 119, 0.16) 0%, rgba(232, 184, 119, 0) 46%),
    linear-gradient(165deg, #39413c 0%, #2b312d 55%, #23282 5 100%);
  border: 1px solid #454e48;
  border-radius: 3px;
  margin: 14px 0 22px;
  padding: clamp(14px, 2.6vw, 28px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 6px 20px rgba(0, 0, 0, 0.35);
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(190px, 268px) minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 30px);
  align-items: start;
}
.poster-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
}
.poster-frame {
  position: relative;
  margin: 0;
  border: 1px solid #57615a;
  background: #1c201d;
  padding: 6px;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
.poster-image, img[data-contract="main-poster"] {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 1px;
  background: linear-gradient(160deg, #3b433e, #23282 5);
}
.poster-caption {
  display: block;
  margin-top: 6px;
  padding: 5px 2px 1px;
  font-size: 11.5px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #b9c2bc;
  border-top: 1px dashed #4e574f;
}
.overview-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.status-chip {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11.5px;
  line-height: 1.35;
  color: #e9dcc4;
  background: rgba(109, 79, 54, 0.5);
  border: 1px solid #7a5b3c;
  border-radius: 2px;
  white-space: nowrap;
}
.status-chip:nth-child(3) {
  color: #f4d9ab;
  background: rgba(192, 138, 78, 0.22);
  border-color: var(--warm-amber);
}
.overview-lead {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}
.movie-title {
  font-family: var(--title-font);
  font-size: clamp(23px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #f0ead9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.movie-tagline {
  font-family: var(--title-font);
  font-size: clamp(13px, 1.5vw, 15.5px);
  line-height: 1.5;
  color: var(--glow);
  letter-spacing: 0.05em;
  padding-left: 11px;
  border-left: 2px solid var(--warm-brown);
}
.movie-seo {
  font-size: 13px;
  line-height: 1.6;
  color: #b6beb8;
  max-width: 62ch;
}
.player-shell {
  position: relative;
  margin-top: 4px;
  width: 100%;
  min-width: 0;
  background: #101312;
  border: 1px solid #4a544d;
  border-radius: 3px;
  padding: 8px;
  transition: max-width 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.player-video, video[data-contract="player"] {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0c0e0d;
  border-radius: 2px;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.ctrl-btn {
  padding: 4px 9px;
  font-size: 12px;
  line-height: 1.35;
  color: #cfd7d1;
  background: #2f3733;
  border: 1px solid #4d5852;
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.ctrl-btn:hover {
  color: #f7e6c8;
  border-color: var(--warm-amber);
  background: #3a423c;
}
.ctrl-btn.is-playing, .ctrl-btn.play.is-playing, .ctrl-btn.is-active, .ctrl-btn.theater.is-active, .ctrl-btn.light.is-active {
  color: #201a12;
  background: var(--warm-amber);
  border-color: #e0a95f;
}
.ctrl-btn.is-muted, .ctrl-btn.mute.is-muted, .ctrl-btn.is-low, .ctrl-btn.volume.is-low {
  color: #ffd9a3;
  border-color: #a3752f;
  background: #4a3a24;
}
.ctrl-btn.is-fast, .ctrl-btn.speed.is-fast {
  color: #cfe8dd;
  border-color: #6d8f80;
  background: #2c3a34;
}
.player-shell.is-theater {
  max-width: 100%;
  background: #050706;
  box-shadow: 0 0 0 1px #6b5a3c inset, 0 10px 30px rgba(0, 0, 0, 0.6);
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  opacity: 0.55;
}
.cast-block {
  margin-bottom: 22px;
  padding: 14px clamp(10px, 2vw, 18px);
  background: linear-gradient(180deg, #2f3632 0%, #2a302c 100%);
  border: 1px solid #434c46;
  border-radius: 3px;
}
.cast-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 9px;
  row-gap: 2px;
  align-items: start;
  padding: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid #414a44;
  border-radius: 2px;
  transition: border-color 0.15s, background 0.15s;
}
.cast-card:hover {
  border-color: var(--warm-brown);
  background: rgba(192, 138, 78, 0.1);
}
.cast-avatar {
  grid-row: 1 / span 2;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, #8a9a94 0%, #5d6b65 55%, #3b443f 100%);
  border: 1px solid #5c6862;
  box-shadow: inset 0 0 0 2px rgba(35, 39, 36, 0.7);
}
.cast-name {
  align-self: end;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ece5d5;
  line-height: 1.2;
}
.cast-role {
  grid-column: 2;
  font-size: 11.5px;
  color: var(--glow);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.cast-line {
  grid-column: 1 / -1;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px dashed #4b544e;
  font-size: 12px;
  line-height: 1.5;
  color: #b3bbb5;
}
.synopsis-block {
  margin-bottom: 22px;
  padding: 14px clamp(12px, 2.2vw, 22px);
  background: linear-gradient(180deg, #f0eee7 0%, #e8e5dc 100%);
  border: 1px solid var(--card-edge);
  border-radius: 3px;
}
.synopsis-body {
  columns: 2;
  column-gap: 26px;
  column-rule: 1px solid #d3cfc2;
}
.synopsis-para {
  break-inside: avoid;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.62;
  color: #43483f;
  text-align: justify;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.details-block {
  margin-bottom: 22px;
  padding: 14px clamp(12px, 2.2vw, 22px);
  background: linear-gradient(180deg, #333a35 0%, #2b312c 100%);
  border: 1px solid #454e48;
  border-radius: 3px;
}
.details-block .block-title {
  color: #eadfc9;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 1px;
  background: #454e48;
  border: 1px solid #454e48;
  border-radius: 2px;
  overflow: hidden;
}
.detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 10px;
  background: #2e342f;
}
.detail-item dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue-grey);
  text-transform: uppercase;
}
.detail-item dd {
  font-size: 13px;
  line-height: 1.4;
  color: #e6e1d3;
}
.timeline-block {
  margin-bottom: 22px;
  padding: 14px 0 14px clamp(12px, 2.2vw, 22px);
  background: linear-gradient(180deg, #2c332e 0%, #262c27 100%);
  border: 1px solid #434c46;
  border-radius: 3px;
}
.timeline-block .block-title {
  color: #eadfc9;
  margin-right: clamp(12px, 2.2vw, 22px);
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px clamp(12px, 2.2vw, 22px) 10px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--warm-brown) #2a302c;
}
.timeline-scroll::-webkit-scrollbar {
  height: 7px;
}
.timeline-scroll::-webkit-scrollbar-track {
  background: #2a302c;
}
.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--warm-brown);
  border-radius: 4px;
}
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: 0 6px;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 172px;
  padding: 0 8px 0 0;
  text-align: left;
}
.timeline-node::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--glow);
  border: 2px solid var(--warm-brown-deep);
  box-shadow: 0 0 0 3px rgba(232, 184, 119, 0.14);
}
.timeline-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 17px;
  right: 0;
  height: 0;
  border-top: 2px dashed var(--line-dash);
  opacity: 0.75;
}
.node-time {
  display: block;
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--glow);
  margin-bottom: 3px;
}
.node-label {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #b5bdb7;
  padding-right: 8px;
}
.episodes-block {
  margin-bottom: 22px;
  padding: 14px clamp(12px, 2.2vw, 22px);
  background: linear-gradient(180deg, #f0eee7 0%, #e7e4db 100%);
  border: 1px solid var(--card-edge);
  border-radius: 3px;
}
.episodes-meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin: -4px 0 10px;
  padding-left: 14px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  background: #faf8f3;
  border: 1px solid #d2cec1;
  border-left: 3px solid var(--warm-brown);
  border-radius: 2px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.episode-card:hover {
  background: #fffdf8;
  border-left-color: var(--warm-amber);
  transform: translateY(-1px);
}
.episode-title {
  font-family: var(--title-font);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #2f332e;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.5;
  color: #5a5f56;
  flex: 1 1 auto;
}
.episode-duration {
  align-self: flex-start;
  margin-top: 2px;
  padding: 1px 6px;
  font-size: 10.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #7a5b3c;
  background: #ece5d6;
  border: 1px solid #d8c9ad;
  border-radius: 2px;
}
.comments-block {
  margin-bottom: 22px;
  padding: 14px clamp(12px, 2.2vw, 22px);
  background: linear-gradient(180deg, #2f3632 0%, #29302b 100%);
  border: 1px solid #434c46;
  border-radius: 3px;
}
.comments-block .block-title {
  color: #eadfc9;
}
.comments-masonry {
  columns: 2;
  column-gap: 10px;
}
.comment-card {
  break-inside: avoid;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 2px;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #414a44;
  border-radius: 2px;
}
.comment-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: #58635b;
}
.comment-avatar {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #95a49d 0%, #5f6d67 60%, #39423d 100%);
  border: 1px solid #5c6862;
}
.comment-nickname {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--glow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-text {
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.5;
  color: #bcc4be;
}
.recommend-region {
  margin-bottom: 20px;
  padding: 12px clamp(10px, 2vw, 16px);
  background: linear-gradient(180deg, #f0eee7 0%, #e6e3da 100%);
  border: 1px solid var(--card-edge);
  border-radius: 3px;
}
.recommend-region:last-of-type {
  margin-bottom: 6px;
}
.recommend-title {
  font-family: var(--title-font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--warm-brown-deep);
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid #cfcabc;
}
.recommend-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 7px;
  background: #faf8f3;
  border: 1px solid #d3cec1;
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
a.recommend-item:hover {
  border-color: var(--warm-amber);
  box-shadow: 0 3px 10px rgba(74, 52, 35, 0.16);
  transform: translateY(-1px);
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1px;
  background: linear-gradient(160deg, #cdc8ba, #b3ada0);
}
a.recommend-item [data-runtime="name"] {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  color: #2f332e;
}
a.recommend-item [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.45;
  color: #666b61;
}
.site-footer {
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px clamp(12px, 3vw, 30px) 28px;
  border-top: 1px solid #3c443f;
  background: linear-gradient(180deg, #232824 0%, #1c201d 100%);
  color: #96a09a;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: #8b968f;
  margin-bottom: 12px;
  max-width: 90ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 12px;
}
a.footer-link, a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  color: #c9d3ce;
  text-decoration: none;
  border-bottom: 1px dashed #5a655e;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
a.footer-link:hover, a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--glow);
  border-bottom-color: var(--warm-amber);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 12px;
}
.friend-links-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #6f7a74;
}
a.runtime-friend-link {
  font-size: 12px;
  color: #9aa79f;
  text-decoration: none;
  border-bottom: 1px dotted #4d5851;
  transition: color 0.15s, border-color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--glow);
  border-bottom-color: var(--warm-amber);
}
@media (max-width: 1024px) {.overview-hero {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.recommend-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.overview-hero {
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
    gap: 16px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.comments-masonry {
    columns: 2;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-carousel {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }}
@media (max-width: 640px) {body {
    font-size: 13.5px;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    max-width: 240px;
  }
.poster-frame {
    max-width: 240px;
  }
.movie-title {
    font-size: 24px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-masonry {
    columns: 1;
  }
.cast-carousel {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
.details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 480px) {.page-main {
    padding-left: 8px;
    padding-right: 8px;
  }
.site-header {
    padding: 7px 8px;
  }
.movie-overview {
    padding: 12px 10px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-column {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-carousel {
    grid-template-columns: minmax(0, 1fr);
  }
.details-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-node {
    width: 148px;
  }
.movie-title {
    font-size: 21px;
  }
.ctrl-btn {
    flex: 1 1 auto;
    text-align: center;
  }}

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}
