*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: #1c2220;
  color: #c7cfc9;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button, input {
  font: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  background-color: rgba(20, 25, 23, 0.94);
  border-bottom: 1px solid #2c3431;
  backdrop-filter: blur(6px);
}
.site-header__brand {
  flex: 0 0 auto;
}
a[data-contract="site-name"] {
  display: inline-block;
  font-family: "Songti SC", "Noto Serif SC", "SimSun", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d6b4a4;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(180, 60, 45, 0.35);
}
a[data-contract="site-name"]:hover {
  color: #e5c3ae;
}
.site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 6px;
  max-width: 100%;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
  color: #93a49a;
  text-decoration: none;
  border: 1px solid #333d38;
  border-radius: 2px;
  background-color: #212826;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
a.runtime-category:hover {
  color: #e0c8b8;
  border-color: #6c3a2f;
  background-color: #2a211f;
}
.page-main {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 18px 18px 34px;
  max-width: 1180px;
  margin: 0 auto;
}
.movie-overview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  grid-template-areas:
    "poster headline"
    "poster details"
    "synopsis synopsis"
    "status cast";
  column-gap: 22px;
  row-gap: 18px;
  align-items: start;
  padding: 20px 20px 22px;
  background-color: #232a27;
  border: 1px solid #313a35;
  border-radius: 3px;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 12% 0%, rgba(120, 40, 32, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.movie-overview > * {
  position: relative;
  z-index: 1;
}
.overview-poster {
  grid-area: poster;
  align-self: start;
  width: 100%;
  border: 1px solid #39433d;
  background-color: #171c1a;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
.overview-poster__image {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.06) sepia(0.16);
}
.overview-headline {
  grid-area: headline;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2f3833;
}
.overview-headline__title {
  font-family: "Songti SC", "Noto Serif SC", "SimSun", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #e2e8e2;
  text-shadow: 0 0 18px rgba(150, 45, 36, 0.28);
}
.overview-headline__tagline {
  font-size: 13px;
  color: #8d9c93;
  letter-spacing: 0.04em;
}
.overview-details {
  grid-area: details;
  align-self: start;
}
.section-heading {
  font-family: "Songti SC", "Noto Serif SC", "SimSun", serif;
  font-size: 17px;
  letter-spacing: 0.18em;
  color: #b9c4bc;
  padding-left: 10px;
  border-left: 3px solid #7d2f26;
  margin-bottom: 12px;
}
.section-heading--narrow {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #9daaa1;
  border-left-width: 2px;
  border-left-color: #5e3128;
  margin-bottom: 9px;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.detail-list__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted #333d37;
}
.detail-list__term {
  flex: 0 0 auto;
  font-size: 12px;
  color: #78877e;
  letter-spacing: 0.08em;
}
.detail-list__value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  color: #c3ccc5;
}
.overview-synopsis {
  grid-area: synopsis;
  padding-top: 16px;
  border-top: 1px solid #2f3833;
}
.synopsis-body {
  column-count: 2;
  column-gap: 30px;
  column-rule: 1px solid #2d3631;
}
.synopsis-body__para {
  font-size: 13px;
  line-height: 1.85;
  color: #aeb9b1;
  text-indent: 2em;
  margin-bottom: 9px;
  break-inside: avoid;
}
.overview-status {
  grid-area: status;
  align-self: start;
}
.episode-status__count {
  font-size: 13px;
  color: #9daaa1;
  letter-spacing: 0.05em;
}
.episode-status__total, .episode-status__current {
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: 18px;
  color: #cf8b74;
  padding: 0 2px;
}
.overview-cast {
  grid-area: cast;
  min-width: 0;
}
.cast-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.cast-card__media {
  position: relative;
  margin: 0;
  border: 1px solid #39433d;
  background-color: #171c1a;
  overflow: hidden;
}
.cast-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(0.72) contrast(1.15) brightness(0.86);
  transform: scale(1.16) rotate(1.5deg);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.cast-card:hover .cast-card__image {
  filter: grayscale(0.28) contrast(1.1) brightness(0.98);
  transform: scale(1.04) rotate(0deg);
}
.cast-card__role {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1px 6px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: #e6cfc2;
  background-color: rgba(94, 34, 27, 0.86);
}
.cast-card__name {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #b6c1b9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.watch-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.watch-block__player-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  background-color: #0e1211;
  border: 1px solid #333d37;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.watch-block__player-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(130% 110% at 50% 50%, transparent 52%, rgba(0, 0, 0, 0.5));
  mix-blend-mode: multiply;
}
.watch-block__player-wrap video {
  display: block;
  width: 100%;
  background-color: #0a0d0c;
}
.watch-block__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background-color: #212826;
  border: 1px solid #2f3833;
}
.control-btn {
  flex: 0 0 auto;
  padding: 4px 11px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #a7b3ab;
  background-color: #1a201e;
  border: 1px solid #38423c;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.control-btn:hover {
  color: #e0c8b8;
  border-color: #6c3a2f;
}
.control-btn.is-active {
  color: #f0d9cb;
  background-color: #43201b;
  border-color: #8b3a2c;
  box-shadow: 0 0 0 1px rgba(160, 60, 45, 0.4) inset;
}
.control-range {
  flex: 1 1 120px;
  min-width: 90px;
  height: 16px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.control-range::-webkit-slider-runnable-track {
  height: 3px;
  background-color: #333d37;
  border-radius: 2px;
}
.control-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  margin-top: -3.5px;
  border-radius: 50%;
  background-color: #c06a52;
  border: none;
}
.control-range::-moz-range-track {
  height: 3px;
  background-color: #333d37;
  border-radius: 2px;
}
.control-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background-color: #c06a52;
}
.timeline-section {
  padding-top: 4px;
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  padding-top: 30px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #3a443e;
}
.timeline-track::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 32%;
  height: 3px;
  background: linear-gradient(90deg, #8d2f24, rgba(141, 47, 36, 0.15));
  box-shadow: 0 0 10px rgba(170, 55, 40, 0.5);
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 8px 0 0;
  min-width: 0;
}
.timeline-node__frame {
  position: absolute;
  top: -23px;
  left: 0;
  width: 11px;
  height: 13px;
  border: 1px solid #6d7a71;
  background-color: #1c2220;
}
.timeline-node__frame::before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #46514a;
}
.timeline-node__time {
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #cf8b74;
}
.timeline-node__label {
  font-size: 11.5px;
  line-height: 1.55;
  color: #98a49b;
}
.timeline-node:first-child .timeline-node__frame {
  border-color: #a8433２;
  border-color: #a84332;
}
.timeline-node:first-child .timeline-node__frame::before {
  background-color: #c05a45;
}
.timeline-node:first-child .timeline-node__time {
  color: #e2a48b;
}
.episodes-section {
  padding-top: 4px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "number duration"
    "title title"
    "summary summary";
  gap: 2px 12px;
  align-items: start;
  padding: 10px 12px 11px;
  background-color: #222927;
  border: 1px solid #2e3733;
  border-left: 2px solid #3d4741;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.episode-card:hover {
  background-color: #262e2b;
  border-left-color: #8d2f24;
}
.episode-card__number {
  grid-area: number;
  font-family: "Songti SC", "Noto Serif SC", serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: #8d9c93;
}
.episode-card__duration {
  grid-area: duration;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #77857c;
}
.episode-card__title {
  grid-area: title;
  font-family: "Songti SC", "Noto Serif SC", "SimSun", serif;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  color: #ccd5ce;
}
.episode-card__summary {
  grid-area: summary;
  font-size: 12px;
  line-height: 1.65;
  color: #8f9c93;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comments-section {
  padding-top: 4px;
}
.comment-reel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 20px;
  margin-left: 6px;
  padding-left: 16px;
  border-left: 1px solid #3a443e;
}
.comment-slip {
  position: relative;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 7px 0 8px;
  border-bottom: 1px solid #2b342f;
}
.comment-slip__mark {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border: 1px solid #7d2f26;
  background-color: #2a1c19;
  transform: rotate(45deg);
}
.comment-slip__body {
  min-width: 0;
}
.comment-slip__nick {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #cf8b74;
  margin-bottom: 2px;
}
.comment-slip__text {
  font-size: 12px;
  line-height: 1.7;
  color: #9aa79e;
}
.rec-region {
  padding-top: 4px;
}
.rec-region--1 {
  border-top: 1px solid #2d3631;
  padding-top: 16px;
}
.rec-grid {
  display: grid;
  gap: 10px;
  align-items: start;
}
.rec-grid--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.rec-grid--tight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rec-grid--wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.rec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 6px;
  background-color: #202724;
  border: 1px solid #2b342f;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
a.rec-item {
  color: #a7b3ab;
  text-decoration: none;
}
a.rec-item:hover {
  color: #d6e0d8;
  background-color: #262e2b;
  border-color: #6c3a2f;
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.9);
}
.rec-grid--wide [data-runtime="recommendation"] img {
  aspect-ratio: 3 / 4;
}
.rec-item__name {
  font-family: "Songti SC", "Noto Serif SC", "SimSun", serif;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #c2ccc4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rec-item__blurb {
  font-size: 11px;
  line-height: 1.55;
  color: #7f8c83;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 6px;
  padding: 18px 18px 26px;
  background-color: #171c1a;
  border-top: 1px solid #2b342f;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 22px;
}
.footer__links {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #8d9c93;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #d6b4a4;
  border-bottom-color: #6c3a2f;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 12px;
  flex: 1 1 320px;
  min-width: 0;
}
.friend-links__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #6d7a71;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: #7f8c83;
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: #c06a52;
  text-decoration: underline;
}
.footer__disclaimer {
  flex: 1 1 100%;
  font-size: 11px;
  line-height: 1.7;
  color: #5e6a62;
  padding-top: 10px;
  border-top: 1px dotted #262e2a;
}
.watch-block.is-theater {
  width: 100%;
  max-width: none;
}
.watch-block.is-theater .watch-block__player-wrap {
  border-color: #6c3a2f;
  box-shadow: 0 0 0 1px rgba(140, 50, 38, 0.4), 0 18px 44px rgba(0, 0, 0, 0.7);
}
body.lights-off {
  background-color: #0b0e0d;
}
body.lights-off .page-main {
  filter: brightness(0.82);
}
body.lights-off .movie-overview, body.lights-off .watch-block {
  filter: brightness(1.12);
}
.player.is-playing, .is-playing .control-btn[data-player-action="play"] {
  color: #e6cfc2;
}
.is-active.control-btn, button.is-active {
  color: #f0d9cb;
  background-color: #43201b;
  border-color: #8b3a2c;
}
.is-muted .control-btn[data-player-action="mute"] {
  color: #cf8b74;
  border-color: #6c3a2f;
}
@media (max-width: 900px) {.movie-overview {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    column-gap: 18px;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.synopsis-body {
    column-count: 1;
  }
.timeline-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 26px;
    padding-top: 30px;
  }
.timeline-track::before {
    display: none;
  }
.timeline-track::after {
    display: none;
  }
.timeline-node__frame {
    top: -22px;
  }
.comment-reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-grid--dense, .rec-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-grid--tight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 640px) {.site-header {
    flex-wrap: wrap;
    padding: 8px 12px;
  }
.site-header__nav {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
.category-strip {
    justify-content: flex-start;
  }
.page-main {
    gap: 20px;
    padding: 12px 12px 26px;
  }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "headline"
      "details"
      "synopsis"
      "status"
      "cast";
    padding: 14px;
    row-gap: 14px;
  }
.overview-poster {
    max-width: 210px;
  }
.overview-headline__title {
    font-size: 23px;
  }
.cast-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-reel {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-grid--dense, .rec-grid--tight, .rec-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.watch-block__controls {
    gap: 5px;
  }
.control-range {
    flex: 1 1 100%;
  }}
@media (max-width: 380px) {.cast-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-grid--dense, .rec-grid--tight, .rec-grid--wide {
    grid-template-columns: minmax(0, 1fr);
  }}

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}
