:root {
  --sand: #c9b189;
  --sand-deep: #a8926a;
  --sand-pale: #e4d9c3;
  --indigo: #4a5a72;
  --indigo-deep: #2b3547;
  --ink: #1a1610;
  --ink-soft: #2e2820;
  --paper: #d8cbb0;
  --paper-dim: #c4b596;
  --line: rgba(74, 90, 114, 0.35);
  --line-sand: rgba(200, 177, 137, 0.4);
  --title-font: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", serif;
  --body-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: #20201c;
  background-image:
    linear-gradient(178deg, rgba(201, 177, 137, 0.06) 0%, rgba(26, 22, 16, 0.5) 60%),
    repeating-linear-gradient(92deg, rgba(0, 0, 0, 0.06) 0 2px, rgba(0, 0, 0, 0) 2px 5px);
  color: var(--sand-pale);
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3 {
  font-family: var(--title-font);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
button, input {
  font-family: inherit;
  font-size: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(26, 22, 16, 0.92);
  border-bottom: 1px solid var(--line-sand);
  backdrop-filter: blur(3px);
}
.header-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
}
a[data-contract="site-name"].site-brand {
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sand);
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}
a[data-contract="site-name"].site-brand:hover, a[data-contract="site-name"].site-brand:focus {
  color: var(--sand-pale);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.5;
  padding: 3px 9px;
  color: var(--sand-deep);
  text-decoration: none;
  border: 1px solid rgba(168, 146, 106, 0.35);
  border-radius: 2px;
  background: rgba(74, 90, 114, 0.16);
}
a.runtime-category:hover, a.runtime-category:focus {
  color: var(--sand-pale);
  border-color: var(--sand);
  background: rgba(74, 90, 114, 0.4);
  text-decoration: none;
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.panel-title {
  font-size: 16px;
  color: var(--sand);
  letter-spacing: 0.16em;
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line-sand);
}
.player-panel {
  padding-top: 18px;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #12100c;
  border: 1px solid rgba(168, 146, 106, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(26, 22, 16, 0.96), rgba(18, 16, 12, 0.99));
  border-top: 1px solid rgba(168, 146, 106, 0.28);
}
.player-btn {
  flex: 0 0 auto;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--sand-deep);
  background: rgba(74, 90, 114, 0.22);
  border: 1px solid rgba(168, 146, 106, 0.3);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.player-btn:hover, .player-btn:focus {
  color: var(--sand-pale);
  background: rgba(74, 90, 114, 0.5);
}
.player-btn.is-active {
  color: var(--ink);
  background: var(--sand-deep);
  border-color: var(--sand-pale);
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(168, 146, 106, 0.28);
  border-radius: 2px;
  cursor: pointer;
}
.player-progress {
  flex: 1 1 180px;
  min-width: 120px;
}
.player-volume {
  flex: 0 1 90px;
  min-width: 64px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--ink);
}
.player-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--ink);
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  opacity: 0.35;
}
.player-shell.is-theater {
  border-color: var(--sand);
}
.movie-overview {
  position: relative;
  display: block;
  margin-top: 4px;
  padding: 20px 18px 22px;
  background:
    linear-gradient(180deg, rgba(216, 203, 176, 0.94), rgba(196, 181, 150, 0.9));
  color: var(--ink);
  border: 1px solid rgba(74, 90, 114, 0.4);
  box-shadow: inset 0 0 90px rgba(74, 90, 114, 0.12), 0 12px 28px rgba(0, 0, 0, 0.45);
}
.overview-head {
  max-width: 62ch;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(74, 90, 114, 0.3);
}
.movie-title {
  font-size: 30px;
  letter-spacing: 0.1em;
  color: var(--indigo-deep);
  margin-bottom: 6px;
}
.movie-tagline {
  font-family: var(--title-font);
  font-size: 15px;
  color: var(--indigo);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.movie-seo {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  grid-template-areas:
    "poster synopsis"
    "poster cast"
    "poster status"
    "poster details";
  gap: 16px 22px;
  align-items: start;
}
.overview-poster {
  grid-area: poster;
  justify-self: start;
  width: 100%;
  max-width: 260px;
  align-self: start;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(43, 53, 71, 0.5);
  filter: saturate(0.85) contrast(1.05);
  box-shadow: 0 8px 20px rgba(26, 22, 16, 0.4);
}
.synopsis-panel {
  grid-area: synopsis;
}
.cast-panel {
  grid-area: cast;
}
.episode-status-panel {
  grid-area: status;
}
.details-panel {
  grid-area: details;
}
.synopsis-panel .panel-title, .cast-panel .panel-title, .episode-status-panel .panel-title, .details-panel .panel-title {
  color: var(--indigo-deep);
  border-bottom-color: rgba(74, 90, 114, 0.35);
}
.synopsis-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 8px;
}
.cast-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(74, 90, 114, 0.55), rgba(43, 53, 71, 0.75));
  border: 1px solid rgba(43, 53, 71, 0.55);
  min-width: 0;
}
.cast-card::before {
  content: "";
  display: block;
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(135deg, rgba(201, 177, 137, 0.05) 0 6px, rgba(0, 0, 0, 0) 6px 12px),
    linear-gradient(160deg, rgba(216, 203, 176, 0.18), rgba(26, 22, 16, 0.35));
}
.cast-name {
  display: block;
  padding: 3px 4px 4px;
  font-size: 11.5px;
  line-height: 1.3;
  text-align: center;
  color: var(--sand-pale);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.status-line {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 2px 0;
}
.status-line + .status-line {
  border-top: 1px dotted rgba(74, 90, 114, 0.35);
  margin-top: 2px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0 16px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(74, 90, 114, 0.18);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  min-width: 4.5em;
  font-size: 12.5px;
  color: var(--indigo);
  letter-spacing: 0.08em;
}
.detail-value {
  flex: 1 1 auto;
  font-size: 13px;
  color: var(--ink-soft);
  min-width: 0;
  overflow-wrap: anywhere;
}
.timeline-panel {
  padding: 4px 0 0;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 14px;
  padding: 14px 0 4px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 177, 137, 0.15), rgba(200, 177, 137, 0.7) 12%, rgba(200, 177, 137, 0.7) 88%, rgba(200, 177, 137, 0.15));
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 0 0 0 10px;
  min-width: 0;
}
.timeline-node:nth-child(even) {
  padding-top: 26px;
  padding-left: 16px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 2px rgba(26, 22, 16, 0.9);
}
.timeline-node:nth-child(even)::before {
  top: 54px;
}
.timeline-time {
  font-family: var(--title-font);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--sand);
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--paper-dim);
  border-top: 1px solid var(--line);
  padding-top: 3px;
  overflow-wrap: anywhere;
}
.episode-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 780px;
}
.episode-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "num title dur"
    ".   sum   sum";
  align-items: baseline;
  gap: 2px 10px;
  padding: 8px 4px 9px;
  border-bottom: 1px solid rgba(200, 177, 137, 0.22);
  min-width: 0;
}
.episode-number {
  grid-area: num;
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--sand-deep);
  min-width: 1.6em;
  text-align: right;
}
.episode-title {
  grid-area: title;
  font-size: 14.5px;
  color: var(--sand-pale);
  letter-spacing: 0.06em;
  min-width: 0;
}
.episode-duration {
  grid-area: dur;
  font-size: 11.5px;
  color: var(--indigo);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.episode-summary {
  grid-area: sum;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--paper-dim);
  padding-left: 2.6em;
  margin-top: 2px;
  overflow-wrap: anywhere;
}
.episode-item:hover {
  background: rgba(74, 90, 114, 0.14);
}
.comment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  align-items: start;
}
.comment-item {
  padding: 8px 2px 9px;
  border-bottom: 1px solid var(--line-sand);
  min-width: 0;
}
.comment-nick {
  font-family: var(--title-font);
  font-size: 13px;
  color: var(--sand);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.comment-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--paper-dim);
  overflow-wrap: anywhere;
}
.recommend-region {
  display: block;
}
.recommend-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: 3px solid var(--sand-deep);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  align-items: start;
}
.recommend-item {
  min-width: 0;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 6px;
  background: rgba(26, 22, 16, 0.55);
  border: 1px solid rgba(168, 146, 106, 0.28);
  color: var(--sand-pale);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
a[data-runtime="recommendation"]:hover, a[data-runtime="recommendation"]:focus {
  border-color: var(--sand);
  background: rgba(74, 90, 114, 0.28);
  color: var(--sand-pale);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  background: #12100c;
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sand);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--paper-dim);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.site-footer {
  margin-top: 14px;
  padding: 22px 16px 30px;
  background: rgba(18, 16, 12, 0.96);
  border-top: 1px solid var(--line-sand);
  color: var(--paper-dim);
  font-size: 12.5px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 1180px;
  margin: 0 auto 12px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 0.06em;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus {
  color: var(--sand-pale);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  max-width: 1180px;
  margin: 0 auto 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 177, 137, 0.2);
}
.friend-links-label {
  font-family: var(--title-font);
  font-size: 12px;
  color: var(--indigo);
  letter-spacing: 0.14em;
  padding-right: 4px;
  flex: 0 0 auto;
}
a.runtime-friend-link {
  color: var(--sand-deep);
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus {
  color: var(--sand-pale);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 177, 137, 0.2);
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(196, 181, 150, 0.7);
}
@media (max-width: 900px) {.overview-body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "synopsis"
      "cast"
      "status"
      "details";
  }
.overview-poster {
    max-width: 210px;
  }
.movie-title {
    font-size: 25px;
  }}
@media (max-width: 720px) {.comment-list {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }
.timeline-list {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
.timeline-list::before {
    top: 30px;
  }}
@media (max-width: 560px) {body {
    font-size: 14px;
  }
.page-main {
    padding: 0 12px 30px;
    gap: 20px;
  }
.movie-overview {
    padding: 15px 13px 17px;
  }
.movie-title {
    font-size: 21px;
  }
.overview-poster {
    max-width: 168px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-grid {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  }
.timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-node, .timeline-node:nth-child(even) {
    padding-top: 22px;
    padding-left: 12px;
  }
.timeline-node::before, .timeline-node:nth-child(even)::before {
    top: 50px;
  }
.episode-item {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "num title"
      ".   dur"
      ".   sum";
  }
.episode-duration {
    justify-self: start;
    margin-top: 2px;
  }
.episode-summary {
    padding-left: 0;
  }
.recommend-grid {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  }
.player-controls {
    gap: 5px 6px;
  }
.player-btn {
    font-size: 11.5px;
    padding: 3px 8px;
  }}
@media (max-width: 400px) {.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-node, .timeline-node:nth-child(even) {
    padding-top: 0;
  }
.timeline-node::before, .timeline-node:nth-child(even)::before {
    top: 28px;
  }}

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}
