:root {
  --paper: #e8dcbe;
  --paper-deep: #d9c99f;
  --calendar-red: #b5342c;
  --verdict-white: #f4f1e8;
  --cool-white: #eef1ef;
  --cold-light: #cfd8d6;
  --ink: #17201f;
  --ink-soft: #2c3a38;
  --teal-gray: #24322f;
  --teal-mid: #34443f;
  --teal-dim: #55706a;
  --lamp-warm: #d9a05b;
  --lamp-glow: #f0c184;
  --grain: rgba(0, 0, 0, 0.045);
  --line: rgba(23, 32, 31, 0.22);
  --line-soft: rgba(23, 32, 31, 0.12);
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "SimHei", "Noto Sans SC", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: #1b2422;
  background-image:
    radial-gradient(circle at 18% 6%, rgba(207, 216, 214, 0.14), transparent 42%),
    radial-gradient(circle at 82% 96%, rgba(217, 160, 91, 0.16), transparent 46%),
    repeating-linear-gradient(0deg, var(--grain) 0 1px, transparent 1px 3px);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
h1, h2, h3, p, ul, ol, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #182220 0%, #1f2b28 100%);
  border-bottom: 1px solid rgba(207, 216, 214, 0.16);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4), 0 6px 18px rgba(0, 0, 0, 0.28);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}
a[data-contract="site-name"] {
  color: var(--verdict-white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-right: 14px;
  border-right: 1px solid rgba(207, 216, 214, 0.24);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(207, 216, 214, 0.28);
}
a[data-contract="site-name"]:hover {
  color: var(--lamp-glow);
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 300;
  white-space: nowrap;
  color: var(--cold-light);
  border: 1px solid rgba(207, 216, 214, 0.2);
  border-radius: 2px;
  background: rgba(238, 241, 239, 0.04);
}
a.runtime-category:hover {
  color: #1b2422;
  background: var(--cold-light);
  border-color: var(--cold-light);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink);
  padding-bottom: 5px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 2px;
  background: var(--calendar-red);
}
.movie-overview {
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(0deg, rgba(120, 96, 48, 0.05) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, #ece0c3 0%, #e2d4b0 58%, #dccca4 100%);
  border: 1px solid rgba(86, 66, 28, 0.28);
  border-radius: 3px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 232px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.poster-media {
  position: relative;
  align-self: start;
  background: #111817;
  border: 1px solid rgba(23, 32, 31, 0.5);
  padding: 4px;
  border-radius: 2px;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.94);
  display: block;
}
.poster-caption {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.5;
  color: #6a5636;
  letter-spacing: 0.04em;
  border-top: 1px dashed rgba(120, 96, 48, 0.4);
  padding-top: 4px;
}
.overview-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.movie-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.movie-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--calendar-red);
  letter-spacing: 0.04em;
  padding-left: 10px;
  border-left: 3px solid var(--calendar-red);
}
.movie-seo {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  text-align: justify;
}
.overview-player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #101614;
  border: 1px solid rgba(23, 32, 31, 0.6);
  border-radius: 2px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.overview-player-shell.is-theater {
  background: #050807;
  box-shadow: 0 0 0 1px rgba(217, 160, 91, 0.35), 0 14px 40px rgba(0, 0, 0, 0.6);
}
.overview-player-shell.is-lights-off {
  background: #000;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.9);
}
.overview-player-shell.is-lights-off .player-controls {
  opacity: 0.42;
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
  border-radius: 1px;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  transition: opacity 0.25s ease;
}
.player-btn {
  flex: 0 0 auto;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--cold-light);
  background: rgba(207, 216, 214, 0.08);
  border: 1px solid rgba(207, 216, 214, 0.24);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.player-btn:hover {
  background: rgba(217, 160, 91, 0.22);
  border-color: rgba(217, 160, 91, 0.55);
  color: var(--lamp-glow);
}
.player-btn.is-active {
  background: var(--lamp-warm);
  border-color: var(--lamp-warm);
  color: #1b2422;
  font-weight: 700;
}
.episode-status {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.status-item {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-soft);
  padding: 3px 10px;
  background: rgba(244, 241, 232, 0.7);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--teal-dim);
  border-radius: 1px;
  white-space: nowrap;
}
.cast {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
}
.cast-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px 4px 4px;
  background: rgba(244, 241, 232, 0.66);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}
.cast-avatar {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(207, 216, 214, 0.75), transparent 58%),
    linear-gradient(150deg, #43574f 0%, #22302c 100%);
  border: 1px solid rgba(23, 32, 31, 0.4);
  box-shadow: inset 0 0 0 2px rgba(232, 220, 190, 0.28);
}
.cast-name {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.synopsis {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.synopsis-text {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--ink-soft);
  text-align: justify;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 2px solid rgba(181, 52, 44, 0.35);
}
.synopsis-text:last-child {
  margin-bottom: 0;
  border-left-color: var(--lamp-warm);
}
.details {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0 18px;
  border-top: 1px solid var(--line-soft);
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(23, 32, 31, 0.18);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-dim);
}
.detail-value {
  flex: 1 1 auto;
  text-align: right;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink);
  min-width: 0;
  overflow-wrap: anywhere;
}
.timeline-section {
  background: linear-gradient(180deg, #22302c 0%, #1a2523 100%);
  border: 1px solid rgba(207, 216, 214, 0.14);
  border-radius: 3px;
  padding: 13px 14px 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.timeline-section .section-heading {
  color: var(--cold-light);
  border-bottom-color: rgba(207, 216, 214, 0.2);
}
.timeline-section .section-heading::before {
  background: var(--lamp-warm);
}
.timeline-track {
  position: relative;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-left: 2px solid rgba(207, 216, 214, 0.28);
  margin-left: 4px;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  padding: 3px 0 3px 4px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lamp-warm);
  box-shadow: 0 0 0 3px rgba(26, 37, 35, 1), 0 0 8px rgba(217, 160, 91, 0.7);
}
.timeline-timecode {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lamp-glow);
  border: 1px solid rgba(217, 160, 91, 0.45);
  border-radius: 1px;
  padding: 1px 7px;
  white-space: nowrap;
}
.timeline-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--cold-light);
  letter-spacing: 0.03em;
}
.episodes-section {
  background: linear-gradient(180deg, #efe6cd 0%, #e4d8b8 100%);
  border: 1px solid rgba(86, 66, 28, 0.24);
  border-radius: 3px;
  padding: 13px 14px 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 9px 11px;
  background: rgba(244, 241, 232, 0.72);
  border: 1px solid rgba(86, 66, 28, 0.2);
  border-left: 3px solid rgba(52, 68, 63, 0.55);
  border-radius: 2px;
  cursor: default;
  transition: background 0.2s ease, border-left-color 0.2s ease, box-shadow 0.2s ease;
}
.episode-card:hover {
  background: rgba(250, 248, 241, 0.95);
  border-left-color: var(--calendar-red);
  box-shadow: 0 4px 14px rgba(86, 66, 28, 0.2);
}
.episode-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--calendar-red);
  padding: 1px 6px;
  border: 1px solid rgba(181, 52, 44, 0.4);
  border-radius: 1px;
  white-space: nowrap;
}
.episode-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.4;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--ink-soft);
  text-align: justify;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.25s ease;
}
.episode-card:hover .episode-summary, .episode-card:focus-within .episode-summary {
  max-height: 220px;
  opacity: 1;
  margin-top: 3px;
  padding-top: 6px;
  border-top: 1px dashed rgba(86, 66, 28, 0.3);
}
.episode-duration {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--teal-dim);
  margin-top: auto;
  padding-top: 2px;
  white-space: nowrap;
}
.comments-section {
  background: linear-gradient(180deg, #eceff0 0%, #dfe6e6 100%);
  border: 1px solid rgba(52, 68, 63, 0.2);
  border-radius: 3px;
  padding: 13px 14px 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.comments-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}
.comment-card {
  align-self: start;
  width: 100%;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(52, 68, 63, 0.16);
  border-bottom: 2px solid rgba(52, 68, 63, 0.28);
  border-radius: 2px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.comment-card:nth-child(odd) {
  background: rgba(255, 255, 255, 0.9);
}
.comment-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(23, 32, 31, 0.16);
}
.comment-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
  text-align: justify;
}
.comment-nickname {
  margin-top: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--calendar-red);
}
.comment-nickname::before {
  content: "— ";
  color: var(--teal-dim);
  font-weight: 300;
}
.recommend-region {
  background: linear-gradient(180deg, #f2ead6 0%, #e7dcc0 100%);
  border: 1px solid rgba(86, 66, 28, 0.22);
  border-radius: 3px;
  padding: 12px 14px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.recommend-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(86, 66, 28, 0.2);
  border-radius: 2px;
  transition: background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
a.recommend-card:hover {
  background: #fffdf6;
  border-color: rgba(181, 52, 44, 0.5);
  box-shadow: 0 6px 16px rgba(86, 66, 28, 0.22);
}
.recommend-card[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 1px;
  filter: saturate(0.86) contrast(1.04);
  background: #22302c;
}
.recommend-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.4;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--teal-dim);
}
.site-footer {
  margin-top: 6px;
  background: linear-gradient(180deg, #1a2523 0%, #121a19 100%);
  border-top: 1px solid rgba(207, 216, 214, 0.16);
  padding: 16px;
  color: var(--cold-light);
}
.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto 10px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(207, 216, 214, 0.72);
  text-align: justify;
}
.footer-nav {
  max-width: 1180px;
  margin: 0 auto 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--lamp-glow);
  border-bottom: 1px solid rgba(217, 160, 91, 0.4);
  padding-bottom: 1px;
  white-space: nowrap;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.friend-links {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(207, 216, 214, 0.14);
}
.friend-links-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(207, 216, 214, 0.6);
  margin-right: 2px;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 12px;
  font-weight: 300;
  color: rgba(207, 216, 214, 0.82);
  text-decoration: none;
  padding: 1px 7px;
  border: 1px solid rgba(207, 216, 214, 0.18);
  border-radius: 1px;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: #1b2422;
  background: var(--cold-light);
  border-color: var(--cold-light);
}
@media (max-width: 900px) {.overview-hero {
    grid-template-columns: minmax(0, 196px) minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.movie-title {
    font-size: 24px;
  }}
@media (max-width: 680px) {body {
    font-size: 14.5px;
  }
.page-main {
    padding: 12px 11px 22px;
    gap: 16px;
  }
.header-inner {
    padding: 7px 11px;
    gap: 6px 12px;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
.poster-media {
    max-width: 220px;
  }
.movie-title {
    font-size: 22px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-summary {
    max-height: none;
    opacity: 1;
    margin-top: 3px;
    padding-top: 6px;
    border-top: 1px dashed rgba(86, 66, 28, 0.3);
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-row {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-track {
    padding-left: 16px;
  }
.timeline-node::before {
    left: -23px;
  }}
@media (max-width: 420px) {.recommend-row {
    grid-template-columns: minmax(0, 1fr);
  }
.player-btn {
    padding: 4px 8px;
    font-size: 11.5px;
  }
.movie-seo, .synopsis-text {
    text-align: left;
  }}

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}
