*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: #e8e6df;
  background-image:
    linear-gradient(180deg, #ecebe4 0%, #e2e0d8 100%),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.55), transparent 55%);
  color: #2c333c;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "Source Han Sans SC", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(232, 230, 223, 0.94);
  border-bottom: 1px solid #c8c6bd;
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
}
.site-brand, a[data-contract="site-name"] {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #232a33;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid #d9bf58;
  padding-bottom: 1px;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus {
  color: #4a5560;
  border-bottom-color: #8a96a3;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  justify-content: flex-end;
  min-width: 0;
}
.runtime-category, a.runtime-category {
  color: #4d5a66;
  text-decoration: none;
  font-size: 12.5px;
  line-height: 1.4;
  white-space: nowrap;
  padding: 2px 7px;
  border: 1px solid #c5c9c9;
  border-radius: 3px;
  background-color: #f2f1ea;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.runtime-category:hover, .runtime-category:focus, a.runtime-category:hover, a.runtime-category:focus {
  color: #232a33;
  border-color: #d9bf58;
  background-color: #fbf6e2;
}
.page-main {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 26px;
}
.section-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #3b4550;
  text-transform: none;
  padding-bottom: 4px;
  margin-bottom: 8px;
  border-bottom: 1px solid #c3c1b8;
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 2px;
  background-color: #d9bf58;
}
.movie-overview {
  display: block;
  margin-bottom: 20px;
}
.overview-stage {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  grid-template-areas:
    "poster body";
  gap: 18px;
  align-items: start;
  background-color: #f1efe7;
  border: 1px solid #cbc8be;
  border-top: 3px solid #2f3b47;
  border-radius: 3px;
  padding: 16px;
  background-image: linear-gradient(180deg, #f4f2ec 0%, #e9e7de 100%);
}
.poster-column {
  grid-area: poster;
  align-self: start;
  width: 100%;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background-color: #d7d5cc;
  border: 1px solid #b9b6ab;
  border-radius: 2px;
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(200deg, rgba(255, 255, 255, 0.22) 0%, rgba(47, 59, 71, 0.26) 100%);
  pointer-events: none;
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}
.overview-body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.title-block {
  border-bottom: 1px solid #c6c3b9;
  padding-bottom: 8px;
}
.movie-title {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #202832;
  line-height: 1.2;
}
.movie-tagline {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #6e5f2e;
  letter-spacing: 0.06em;
  border-left: 2px solid #d9bf58;
  padding-left: 8px;
}
.synopsis-block {
  display: block;
}
.synopsis-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.synopsis-text {
  font-size: 13px;
  line-height: 1.72;
  color: #3d4650;
  font-weight: 400;
  text-align: justify;
  text-indent: 2em;
}
.cast-block {
  display: block;
}
.cast-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 10px;
  align-items: start;
}
.cast-member {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  padding: 6px 6px 7px;
  border-left: 2px solid #cdd2d4;
  background-color: rgba(255, 255, 255, 0.42);
  border-radius: 0 2px 2px 0;
}
.cast-avatar {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background-color: #ccd2d6;
  background-image:
    linear-gradient(160deg, #b9c2c9 0%, #98a4ad 100%),
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.5), transparent 62%);
  border: 1px solid #a7b0b7;
}
.cast-name {
  font-size: 13px;
  font-weight: 700;
  color: #26303a;
  line-height: 1.3;
}
.cast-role {
  font-size: 11px;
  color: #6b7681;
  line-height: 1.35;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 5px 8px;
  background-color: #e3e6e6;
  border-left: 3px solid #2f3b47;
  border-radius: 0 2px 2px 0;
}
.status-total {
  font-size: 12.5px;
  font-weight: 700;
  color: #2f3b47;
  letter-spacing: 0.06em;
}
.status-current {
  font-size: 12.5px;
  font-weight: 400;
  color: #6e5f2e;
  letter-spacing: 0.04em;
}
.details-block {
  display: block;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  border-top: 1px solid #d2cfc6;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dotted #cfccc3;
}
.detail-key {
  flex: 0 0 62px;
  font-size: 12px;
  color: #7a838c;
  letter-spacing: 0.08em;
}
.detail-value {
  font-size: 12.5px;
  color: #2c333c;
  font-weight: 400;
  min-width: 0;
}
.player-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #b9b6ab;
  border-radius: 3px;
  background-color: #232a31;
  padding: 8px;
}
.player-wrapper {
  width: 100%;
  max-width: none;
  background-color: #10151a;
  border-radius: 2px;
  overflow: hidden;
}
.player-wrapper video, .player-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #10151a;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.control-button {
  flex: 0 0 auto;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #dfe4e6;
  background-color: #333e48;
  border: 1px solid #4a5762;
  border-radius: 2px;
  padding: 4px 9px;
  line-height: 1.5;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.control-button:hover, .control-button:focus {
  background-color: #445260;
  border-color: #6c7a86;
  color: #ffffff;
}
.control-button.is-active {
  background-color: #d9bf58;
  border-color: #d9bf58;
  color: #232a31;
}
.control-progress {
  flex: 1 1 160px;
  min-width: 120px;
  height: 5px;
  accent-color: #d9bf58;
  background-color: #4a5762;
  border-radius: 2px;
  cursor: pointer;
}
.control-volume {
  flex: 0 1 90px;
  min-width: 64px;
  height: 5px;
  accent-color: #9aa7ae;
  cursor: pointer;
}
.control-speed {
  flex: 0 0 auto;
  font-size: 11.5px;
  color: #dfe4e6;
  background-color: #333e48;
  border: 1px solid #4a5762;
  border-radius: 2px;
  padding: 3px 6px;
}
.player-panel.is-theater {
  background-color: #10151a;
  border-color: #d9bf58;
}
.player-panel.is-lights-off {
  background-color: #05080b;
}
.player-panel.is-lights-off .player-wrapper {
  background-color: #000000;
}
.timeline-section {
  display: block;
  margin-bottom: 20px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 8px;
  align-items: start;
  padding: 12px 10px 10px;
  background-color: #2b3742;
  background-image: linear-gradient(180deg, #33414e 0%, #26313b 100%);
  border-radius: 3px;
  border: 1px solid #1e2830;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 17px;
  height: 1px;
  background-color: #6e7c88;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 12px;
  padding-right: 4px;
  min-width: 0;
}
.timeline-dot {
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f0e6b8;
  box-shadow: 0 0 0 3px rgba(217, 191, 88, 0.22);
}
.timeline-timecode {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #d9bf58;
  padding-left: 14px;
}
.timeline-label {
  font-size: 11.5px;
  line-height: 1.5;
  color: #c7d0d6;
  font-weight: 400;
  padding-left: 14px;
}
.episodes-section {
  display: block;
  margin-bottom: 20px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 14px;
  align-items: start;
}
.episode-cell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "num title dur"
    "sum sum sum";
  gap: 2px 8px;
  align-items: baseline;
  padding: 7px 9px;
  border: 1px solid #cbc8be;
  border-left: 3px solid #7d8a94;
  border-radius: 0 2px 2px 0;
  background-color: #f2f0e9;
  transition: border-left-color 0.15s ease, background-color 0.15s ease;
}
.episode-cell:hover {
  border-left-color: #d9bf58;
  background-color: #f5f3ea;
}
.episode-number {
  grid-area: num;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #4d5a66;
  white-space: nowrap;
}
.episode-title {
  grid-area: title;
  font-size: 13.5px;
  font-weight: 700;
  color: #232a33;
  line-height: 1.35;
  min-width: 0;
}
.episode-duration {
  grid-area: dur;
  font-size: 10.5px;
  color: #8a9299;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.episode-summary {
  grid-area: sum;
  font-size: 12px;
  line-height: 1.6;
  color: #4a545f;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comments-section {
  display: block;
  margin-bottom: 20px;
  padding: 0 14px;
}
.comments-stagger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 8px;
  align-items: start;
}
.comment-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 10px;
  background-color: #f6f4ec;
  border: 1px solid #d5d2c8;
  border-radius: 2px;
  position: relative;
}
.comment-note::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 12px;
  width: 26px;
  height: 3px;
  background-color: #d9bf58;
}
.comment-note-left {
  grid-column: 1;
  margin-right: 14px;
  border-left: 3px solid #a9b3bb;
}
.comment-note-right {
  grid-column: 2;
  margin-left: 14px;
  margin-top: 12px;
  border-right: 3px solid #a9b3bb;
}
.comment-text {
  font-size: 12px;
  line-height: 1.72;
  color: #3d4650;
  font-weight: 400;
}
.comment-nickname {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: #7c6a33;
  align-self: flex-end;
}
.recommend-region {
  display: block;
  margin-bottom: 20px;
}
.recommend-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #2f3b47;
  padding-bottom: 4px;
  margin-bottom: 8px;
  border-bottom: 1px solid #c3c1b8;
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 14px;
  align-items: start;
}
.recommend-item, a.recommend-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "thumb name"
    "thumb blurb";
  gap: 2px 8px;
  align-items: start;
  padding: 5px 6px;
  border: 1px solid #cfccc3;
  border-radius: 2px;
  background-color: #f2f0e9;
  color: #2c333c;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.recommend-item:hover, .recommend-item:focus, a.recommend-item:hover, a.recommend-item:focus {
  border-color: #d9bf58;
  background-color: #f7f5ec;
}
[data-runtime="recommendation"] {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 2px 8px;
  align-items: start;
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  background-color: #d7d5cc;
  border: 1px solid #c0bdb3;
}
.recommend-thumb {
  grid-area: thumb;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background-color: #d7d5cc;
  border: 1px solid #c0bdb3;
}
.recommend-name {
  grid-area: name;
  font-size: 12.5px;
  font-weight: 700;
  color: #232a33;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  grid-area: blurb;
  font-size: 11px;
  line-height: 1.5;
  color: #6b7681;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 26px;
  border-top: 1px solid #c3c1b8;
  background-color: #e2e0d8;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 10px;
}
.footer-link, a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #3b4550;
  text-decoration: none;
  border-bottom: 1px solid #b3b7b7;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-home"]:focus, a[data-contract="footer-sitemap"]:focus, .footer-link:hover, .footer-link:focus {
  color: #7c6a33;
  border-bottom-color: #d9bf58;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 12px;
  margin-bottom: 10px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #7a838c;
  white-space: nowrap;
}
.runtime-friend-link, a.runtime-friend-link {
  font-size: 11.5px;
  color: #4d5a66;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px dotted #b0b4b4;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus {
  color: #7c6a33;
  border-bottom-color: #d9bf58;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: #858d94;
  max-width: 900px;
}
@media (max-width: 960px) {.overview-stage {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 14px;
  }
.cast-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 12px;
  }
.timeline-track::before {
    display: none;
  }
.timeline-node {
    padding-top: 10px;
  }
.timeline-dot {
    top: 10px;
  }
.recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 8px 12px;
  }
.category-bar {
    justify-content: flex-start;
  }
.page-main {
    padding: 12px 12px 20px;
  }
.overview-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "body";
    gap: 12px;
    padding: 12px;
  }
.poster-column {
    max-width: 210px;
  }
.movie-title {
    font-size: 22px;
  }
.cast-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-section {
    padding: 0 8px;
  }
.comments-stagger {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    row-gap: 8px;
  }
.comment-note-left, .comment-note-right {
    grid-column: 1;
    margin-left: 0;
    margin-right: 0;
  }
.comment-note-right {
    margin-top: 0;
    margin-left: 18px;
  }
.recommend-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 420px) {.cast-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: minmax(0, 1fr);
  }
.control-progress {
    flex: 1 1 100%;
    min-width: 0;
  }
.comment-note-right {
    margin-left: 0;
  }}

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}
