*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body, h1, h2, h3, p, ul, ol, li {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --ink: #1b1a17;
  --slate: #2b2f33;
  --slate-2: #353b40;
  --slate-3: #454c52;
  --silt: #6d5a45;
  --ochre: #8a6a44;
  --ochre-dark: #5c452c;
  --dirty-white: #e6e0d4;
  --warm-white: #f2ece0;
  --dark-red: #7c2b25;
  --dark-red-2: #9c3a2e;
  --paper: #d9cfb8;
  --mud: #2a241d;
  --line: #4a4a44;
  --radius: 2px;
  --gap-tight: 0.5rem;
  --gap: 0.75rem;
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif SC", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", sans-serif;
}
html {
  background: var(--mud);
}
body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--dirty-white);
  background:
    radial-gradient(140% 90% at 50% -10%, #3a3f43 0%, #2a2c2e 45%, #201d19 100%),
    linear-gradient(180deg, #2b2c2e 0%, #26241f 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}
body.is-lights-off::before {
  opacity: 0.12;
}
body.is-lights-off .page-main {
  filter: brightness(0.55) contrast(1.08);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  flex-wrap: wrap;
  padding: 0.4rem 0.9rem;
  background: rgba(24, 23, 20, 0.92);
  border-bottom: 1px solid #3a3a34;
  backdrop-filter: blur(6px);
}
.site-brand {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--dirty-white);
  padding: 0.15rem 0;
  text-shadow: 0 1px 0 #000;
}
a[data-contract="site-name"] {
  color: var(--dirty-white);
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--dark-red-2);
  text-decoration: none;
}
.category-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 0.16rem 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #cfc7b8;
  background: #33332e;
  border: 1px solid #4a4a42;
  border-radius: var(--radius);
}
a.runtime-category {
  color: #cfc7b8;
  text-decoration: none;
}
a.runtime-category:hover {
  color: var(--warm-white);
  background: var(--ochre-dark);
  border-color: var(--ochre);
}
.page-main {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.9rem 1.4rem;
}
.movie-overview {
  position: relative;
  padding: 1.6rem 0 0.2rem;
}
.overview-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--gap);
  align-items: start;
}
.poster-wrap {
  position: relative;
  width: 100%;
  max-width: 210px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #3c372e;
  background: #1d1b17;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
}
.poster-wrap img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.9);
}
.overview-lead {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.movie-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.15;
  color: var(--warm-white);
  text-shadow: 0 2px 0 #000, 0 0 24px rgba(0, 0, 0, 0.6);
}
.movie-tagline {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #b3a894;
  letter-spacing: 0.05em;
  border-left: 2px solid var(--dark-red);
  padding-left: 0.55rem;
}
.player-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  margin-top: 0.2rem;
  border: 1px solid #3a3a34;
  border-radius: var(--radius);
  background: #0d0c0a;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.player-wrap video {
  display: block;
  width: 100%;
  background: #000;
  filter: saturate(0.85) contrast(1.04);
}
.player-wrap.is-theater {
  position: relative;
  z-index: 40;
  box-shadow: 0 0 0 1px var(--ochre-dark), 0 14px 40px rgba(0, 0, 0, 0.8);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.35rem 0.4rem;
  background: linear-gradient(180deg, #26241f, #1b1a17);
  border-top: 1px solid #38362f;
}
.player-controls button {
  flex: 0 0 auto;
  padding: 0.22rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: #c9c0ae;
  background: #302e28;
  border: 1px solid #45423a;
  border-radius: var(--radius);
  transition: background 0.12s linear, color 0.12s linear;
}
.player-controls button:hover {
  color: var(--warm-white);
  background: var(--ochre-dark);
  border-color: var(--ochre);
}
.player-controls button.is-active, .player-controls button.play, .player-controls button.pause, .player-controls button.mute, .player-controls button.progress, .player-controls button.speed, .player-controls button.pip, .player-controls button.fullscreen, .player-controls button.theater, .player-controls button.light, .player-controls button.volume {
  color: var(--warm-white);
  background: var(--dark-red);
  border-color: var(--dark-red-2);
}
.player-controls button.boolean, .player-controls button.click, .player-controls button.data-player-action {
  color: var(--warm-white);
}
.detail-strip {
  margin-top: 1rem;
  padding: 0.6rem 0.7rem;
  background: linear-gradient(180deg, #2c2a24, #26241f);
  border: 1px solid #3c3830;
  border-radius: var(--radius);
  border-left: 3px solid var(--ochre-dark);
}
.detail-heading {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #a89b84;
  margin-bottom: 0.4rem;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.18rem 1rem;
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.12rem 0;
  font-size: 0.76rem;
  border-bottom: 1px dashed #3a362e;
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  color: #8d8474;
  letter-spacing: 0.08em;
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  color: #ddd5c4;
  text-align: right;
  word-break: break-word;
}
.section-heading {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--dirty-white);
  margin-top: 1.3rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid #3a382f;
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 2.6rem;
  height: 2px;
  background: var(--dark-red);
}
.synopsis-block {
  margin-top: 0.2rem;
}
.synopsis-paragraph {
  font-size: 0.8rem;
  line-height: 1.62;
  color: #c6bdab;
  margin-bottom: 0.4rem;
  text-align: justify;
  letter-spacing: 0.01em;
}
.synopsis-paragraph:first-of-type {
  color: #d8d0bd;
}
.episode-status {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 0.7rem;
  background: #292721;
  border: 1px solid #3a362e;
  border-radius: var(--radius);
}
.status-heading {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #a89b84;
  margin-bottom: 0.15rem;
}
.status-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.76rem;
  border-bottom: 1px dashed #3a362e;
  padding: 0.1rem 0;
}
.status-line:last-child {
  border-bottom: 0;
}
.status-label {
  color: #8d8474;
  letter-spacing: 0.1em;
}
.status-value {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--dark-red-2);
  letter-spacing: 0.06em;
}
.cast-block {
  margin-top: 0.2rem;
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: flex-start;
}
.cast-card {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.55rem 0.28rem 0.3rem;
  background: #2b2923;
  border: 1px solid #3c3830;
  border-radius: var(--radius);
  min-width: 0;
}
.cast-avatar {
  flex: 0 0 auto;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #6b6252 0%, #464034 55%, #2c2822 100%);
  border: 1px solid #4d473a;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
}
.cast-name {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: #d3cab8;
  white-space: nowrap;
}
.timeline-block {
  margin-top: 0.2rem;
}
.timeline-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.12rem 1.1rem;
  border-top: 1px solid #34322b;
}
.timeline-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.26rem 0;
  border-bottom: 1px dashed #35332c;
  min-width: 0;
}
.timeline-code {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ochre);
  min-width: 3.1em;
}
.timeline-label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.78rem;
  color: #c8bfad;
  letter-spacing: 0.02em;
}
.episodes-block {
  margin-top: 0.2rem;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  align-items: start;
}
.episode-cell {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.42rem 0.55rem;
  background: #282621;
  border: 1px solid #37342d;
  border-radius: var(--radius);
  min-width: 0;
}
.episode-title {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e2dac8;
  line-height: 1.3;
}
.episode-summary {
  font-size: 0.72rem;
  line-height: 1.5;
  color: #a89f8d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  align-self: flex-start;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #b6a07a;
  padding: 0.05rem 0.32rem;
  border: 1px solid #4a4133;
  border-radius: var(--radius);
  background: #2f2b23;
}
.comments-block {
  margin-top: 0.2rem;
  padding: 0.7rem 0.6rem 0.9rem;
  background: linear-gradient(180deg, #322f28 0%, #2a2721 100%);
  border: 1px solid #3d382f;
  border-radius: var(--radius);
}
.comments-block .section-heading {
  margin-top: 0;
  color: #e8e1d0;
  border-bottom-color: #4a4438;
}
.comment-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: start;
}
.comment-note {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0.6rem;
  background: var(--paper);
  color: #2b2620;
  border-radius: 1px;
  border-left: 3px solid var(--dark-red);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  min-width: 0;
}
.comment-note:nth-child(1) { transform: rotate(-0.9deg); }
.comment-note:nth-child(2) { transform: rotate(1.1deg); }
.comment-note:nth-child(3) { transform: rotate(-0.5deg); }
.comment-note:nth-child(4) { transform: rotate(1.4deg); }
.comment-note:nth-child(5) { transform: rotate(-1.2deg); }
.comment-note:nth-child(6) { transform: rotate(0.7deg); }
.comment-nickname {
  font-family: var(--serif);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark-red);
}
.comment-text {
  font-size: 0.76rem;
  line-height: 1.55;
  color: #332c24;
  letter-spacing: 0.01em;
}
.recommend-strip {
  margin-top: 0.9rem;
  padding: 0.5rem 0 0.6rem;
  border-top: 1px solid #3a382f;
}
.recommend-heading {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c9bfa9;
  margin-bottom: 0.4rem;
}
.recommend-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: #4d473a #26241f;
  -webkit-overflow-scrolling: touch;
}
.recommend-track::-webkit-scrollbar {
  height: 6px;
}
.recommend-track::-webkit-scrollbar-track {
  background: #26241f;
}
.recommend-track::-webkit-scrollbar-thumb {
  background: #4d473a;
  border-radius: 0;
}
.recommend-item {
  flex: 0 0 168px;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.35rem;
  background: #272520;
  border: 1px solid #37342d;
  border-radius: var(--radius);
  min-width: 0;
  transition: border-color 0.14s linear, background 0.14s linear;
}
a.recommend-item {
  color: #c8bfad;
  text-decoration: none;
}
a.recommend-item:hover {
  background: #2f2c25;
  border-color: var(--ochre-dark);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  background: #14130f;
  filter: saturate(0.7) contrast(1.06) brightness(0.92);
}
.recommend-name {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ded6c4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 0.68rem;
  line-height: 1.45;
  color: #948b79;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 1.2rem;
  padding: 0.9rem 0.9rem 1.3rem;
  background: #1d1b17;
  border-top: 1px solid #3a372f;
}
.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto 0.6rem;
  font-size: 0.68rem;
  line-height: 1.55;
  color: #7e7768;
  letter-spacing: 0.02em;
}
.footer-nav {
  max-width: 1180px;
  margin: 0 auto 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.footer-link {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}
a[data-contract="footer-home"] {
  color: #b6a98f;
  text-decoration: none;
}
a[data-contract="footer-home"]:hover {
  color: var(--warm-white);
  text-decoration: underline;
}
a[data-contract="footer-sitemap"] {
  color: #b6a98f;
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--dark-red-2);
  text-decoration: underline;
}
.friend-links {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px dashed #35322a;
}
.friend-links-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: #6f685a;
}
.runtime-friend-link {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}
a.runtime-friend-link {
  color: #8f8674;
  text-decoration: none;
}
a.runtime-friend-link:hover {
  color: var(--ochre);
  text-decoration: underline;
}
@media (min-width: 700px) {body {
    font-size: 15px;
  }
.page-main {
    padding: 0 1.4rem 1.8rem;
  }
.overview-stage {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 1.1rem;
  }
.poster-wrap {
    max-width: 210px;
  }
.detail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
.timeline-ledger {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.recommend-item {
    flex-basis: 186px;
  }}
@media (min-width: 1024px) {.page-main {
    padding: 0 1.8rem 2.2rem;
  }
.overview-stage {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 1.4rem;
  }
.poster-wrap {
    max-width: 230px;
  }
.movie-overview {
    padding-top: 2.2rem;
  }
.detail-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.comment-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.recommend-item {
    flex-basis: 200px;
  }
.recommend-heading {
    font-size: 0.84rem;
  }}
@media (max-width: 480px) {.site-header {
    padding: 0.35rem 0.6rem;
  }
.site-brand {
    font-size: 0.95rem;
  }
.page-main {
    padding: 0 0.6rem 1.2rem;
  }
.poster-wrap {
    max-width: 168px;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-ledger {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-wall {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-note:nth-child(n) {
    transform: rotate(0deg);
  }
.recommend-item {
    flex-basis: 150px;
  }}
@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}
