*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, figure, dl, dd, dt, ol, ul {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
}
:root {
  --ink: #0d1412;
  --ink-2: #121b18;
  --ink-3: #17211d;
  --panel: #1b2621;
  --panel-2: #202c26;
  --line: rgba(150, 168, 148, 0.16);
  --fog: #9fb0a4;
  --fog-dim: #6f8277;
  --bone: #e6e2d4;
  --bone-dim: #c2bfae;
  --moss: #3f5747;
  --moss-lit: #5b7a60;
  --ochre: #b08a4a;
  --ochre-dim: #8a6c3a;
  --slate: #4a6373;
  --ember: #e2813a;
  --ember-soft: #f0a35c;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --gap-tight: 10px;
  --gap: 14px;
  --gap-wide: 20px;
  
}
body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Heiti SC", system-ui, -apple-system, sans-serif;
  background-color: var(--ink);
  background-image:
    radial-gradient(1200px 620px at 82% -8%, rgba(74, 99, 115, 0.28), transparent 62%),
    radial-gradient(900px 520px at 4% 8%, rgba(63, 87, 71, 0.26), transparent 60%),
    radial-gradient(1000px 700px at 50% 118%, rgba(176, 138, 74, 0.13), transparent 64%);
  background-attachment: fixed;
  color: var(--bone);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  background-size: 140px 140px;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 9999;
}
.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-wrap: wrap;
  padding: 12px clamp(14px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(13, 20, 18, 0.96), rgba(13, 20, 18, 0.72) 70%, rgba(13, 20, 18, 0));
  border-bottom: 1px solid var(--line);
}
.site-brand {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--bone);
  text-decoration: none;
  text-transform: uppercase;
  padding: 2px 0;
  border-bottom: 3px solid var(--ember);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.site-brand:hover, .site-brand:focus-visible {
  color: var(--ember-soft);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-left: auto;
  min-width: 0;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  text-decoration: none;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(63, 87, 71, 0.22);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.runtime-category:hover, .runtime-category:focus-visible {
  color: var(--ink);
  background: var(--ember-soft);
  border-color: var(--ember-soft);
}
.page-main {
  position: relative;
  z-index: 2;
  width: min(1180px, 100% - 2 * clamp(12px, 3vw, 40px));
  margin: 0 auto;
  padding: clamp(14px, 2.4vw, 26px) 0 clamp(26px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.2vw, 24px);
}
.movie-overview {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding: clamp(14px, 2vw, 22px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(32, 44, 38, 0.96), rgba(18, 27, 24, 0.97)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px -30px #000, inset 0 1px 0 rgba(230, 226, 212, 0.05);
}
.movie-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--grain);
  background-size: 140px 140px;
  opacity: 0.045;
  pointer-events: none;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  grid-template-areas: "poster copy";
  gap: clamp(14px, 2.2vw, 26px);
  align-items: start;
}
.poster-frame {
  grid-area: poster;
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(176, 138, 74, 0.34);
  background: var(--ink-2);
  box-shadow: 0 16px 34px -20px #000;
  transform: rotate(-0.7deg);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.05) brightness(0.94);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(226, 129, 58, 0.12), transparent 42%, rgba(13, 20, 18, 0.5));
  pointer-events: none;
}
.hero-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  min-width: 0;
}
.movie-title {
  font-size: clamp(26px, 4.4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--bone);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.45), 0 0 34px rgba(226, 129, 58, 0.16);
}
.movie-tagline {
  font-size: clamp(13px, 1.6vw, 15.5px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ember-soft);
  padding-left: 10px;
  border-left: 3px solid var(--ember);
  line-height: 1.35;
}
.movie-seo {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--fog);
  max-width: 62ch;
}
.player-shell {
  position: relative;
  margin-top: 4px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(150, 168, 148, 0.2);
  background: #05090a;
  box-shadow: 0 22px 44px -28px #000;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.player-video {
  display: block;
  width: 100%;
  background: #05090a;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(23, 33, 29, 0.94), rgba(13, 20, 18, 0.98));
  border-top: 1px solid var(--line);
}
.player-btn {
  flex: 0 0 auto;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  background: rgba(63, 87, 71, 0.3);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.player-btn:hover, .player-btn:focus-visible {
  color: var(--bone);
  background: rgba(226, 129, 58, 0.24);
  border-color: rgba(226, 129, 58, 0.55);
}
.player-btn.is-active, .player-btn.is-playing {
  color: var(--ink);
  background: var(--ember-soft);
  border-color: var(--ember-soft);
}
.player-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 5px;
  margin: 0 2px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(150, 168, 148, 0.24);
  border-radius: 999px;
  cursor: pointer;
}
.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ember);
  border: 2px solid var(--ink);
}
.player-progress::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ember);
}
.player-volume {
  flex: 0 1 88px;
  min-width: 58px;
  height: 5px;
  margin: 0 2px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(150, 168, 148, 0.24);
  border-radius: 999px;
  cursor: pointer;
}
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--moss-lit);
  border: 2px solid var(--ink);
}
.player-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--moss-lit);
}
.player-shell.is-theater {
  border-color: rgba(226, 129, 58, 0.6);
  box-shadow: 0 0 0 1px rgba(226, 129, 58, 0.35), 0 30px 60px -30px #000;
}
.player-shell.is-lights-off .player-video {
  filter: brightness(0.45) saturate(0.7);
}
.details-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 6px clamp(10px, 1.6vw, 20px);
}
.details-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  padding: 3px 0 3px 10px;
  border-left: 2px solid rgba(176, 138, 74, 0.4);
}
.details-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--fog-dim);
  text-transform: uppercase;
}
.details-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--bone);
  line-height: 1.35;
}
.synopsis-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 78ch;
}
.section-heading {
  position: relative;
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--bone);
  padding-left: 14px;
  line-height: 1.25;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--ember), var(--ochre-dim));
}
.synopsis-para {
  font-size: 13.8px;
  line-height: 1.78;
  color: var(--fog);
  text-indent: 2em;
}
.synopsis-para:first-of-type {
  color: var(--bone-dim);
}
.episode-status {
  display: flex;
  align-items: center;
  gap: var(--gap-tight);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(63, 87, 71, 0.4), rgba(63, 87, 71, 0.08));
  border: 1px dashed rgba(176, 138, 74, 0.42);
}
.status-line {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ochre);
}
.cast-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cast-list {
  display: flex;
  gap: var(--gap-tight);
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.cast-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 96px;
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(63, 87, 71, 0.5), rgba(32, 44, 38, 0.7));
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.cast-card:nth-child(even) {
  transform: translateY(4px) rotate(0.5deg);
}
.cast-card:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 129, 58, 0.5);
}
.cast-name {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--bone);
  white-space: nowrap;
}
.timeline-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  padding: clamp(14px, 1.8vw, 20px);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(23, 33, 29, 0.9), rgba(18, 27, 24, 0.72));
  border: 1px solid var(--line);
}
.timeline-track {
  position: relative;
  display: flex;
  gap: var(--gap-tight);
  overflow-x: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(226, 129, 58, 0.6), rgba(176, 138, 74, 0.24) 60%, transparent);
  pointer-events: none;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 168px;
  padding: 9px 12px 11px;
  border-radius: var(--radius-sm);
  background: rgba(13, 20, 18, 0.72);
  border: 1px solid var(--line);
  border-top: 3px solid var(--moss-lit);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.timeline-node:nth-child(odd) {
  transform: translateY(3px);
}
.timeline-node:nth-child(3n) {
  border-top-color: var(--ochre);
}
.timeline-timecode {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ember-soft);
}
.timeline-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--bone-dim);
}
.episodes-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-tight);
  align-items: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 13px 13px;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(32, 44, 38, 0.86), rgba(18, 27, 24, 0.94));
  border: 1px solid var(--line);
  border-left: 3px solid rgba(91, 122, 96, 0.7);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.episode-card:nth-child(3n + 2) {
  transform: translateY(5px) rotate(-0.3deg);
}
.episode-card:nth-child(odd) {
  border-left-color: rgba(176, 138, 74, 0.7);
}
.episode-card:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 129, 58, 0.45);
  background: linear-gradient(165deg, rgba(41, 55, 47, 0.92), rgba(20, 30, 26, 0.96));
}
.episode-number {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--ochre);
  padding: 2px 8px;
  border-radius: 999px;
}
.episode-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--bone);
}
.episode-summary {
  font-size: 12.6px;
  line-height: 1.62;
  color: var(--fog);
}
.episode-duration {
  margin-top: auto;
  padding-top: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ember-soft);
  border-top: 1px solid var(--line);
}
.comments-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-tight);
  align-items: start;
}
.comment-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) 3px;
  background: linear-gradient(160deg, rgba(63, 87, 71, 0.34), rgba(23, 33, 29, 0.9));
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px -18px #000;
}
.comment-note:nth-child(2n) {
  transform: rotate(0.5deg);
  background: linear-gradient(160deg, rgba(74, 99, 115, 0.32), rgba(23, 33, 29, 0.9));
}
.comment-note:nth-child(3n) {
  transform: rotate(-0.6deg);
  background: linear-gradient(160deg, rgba(176, 138, 74, 0.22), rgba(23, 33, 29, 0.9));
}
.comment-nickname {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ember-soft);
}
.comment-text {
  font-size: 13.2px;
  line-height: 1.66;
  color: var(--bone-dim);
}
.recommend-region {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-tight);
  align-items: start;
}
.recommend-card {
  min-width: 0;
}
.recommend-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 10px;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(32, 44, 38, 0.82), rgba(18, 27, 24, 0.94));
  border: 1px solid var(--line);
  color: var(--bone-dim);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.recommend-card:nth-child(even) .recommend-link {
  transform: translateY(4px);
}
.recommend-link:hover, .recommend-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(226, 129, 58, 0.5);
  color: var(--bone);
}
.recommend-link[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  filter: saturate(0.85) brightness(0.95);
}
.recommend-name {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--bone);
}
.recommend-blurb {
  font-size: 12.4px;
  line-height: 1.6;
  color: var(--fog);
}
.site-footer {
  position: relative;
  z-index: 2;
  width: min(1180px, 100% - 2 * clamp(12px, 3vw, 40px));
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px) 0 clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  border-top: 1px solid var(--line);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}
.footer-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  text-decoration: none;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-link[data-contract="footer-home"] {
  color: var(--ember-soft);
}
.footer-link[data-contract="footer-sitemap"] {
  color: var(--fog);
}
.footer-link:hover, .footer-link:focus-visible {
  color: var(--bone);
  border-bottom-color: var(--ember);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.friend-links-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--fog-dim);
  padding-right: 6px;
  border-right: 1px solid var(--line);
}
.runtime-friend-link {
  font-size: 12.4px;
  font-weight: 600;
  color: var(--fog);
  text-decoration: none;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(63, 87, 71, 0.24);
  border: 1px solid transparent;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.runtime-friend-link:hover, .runtime-friend-link:focus-visible {
  color: var(--ink);
  background: var(--ochre);
  border-color: var(--ochre);
}
.footer-disclaimer {
  font-size: 11.6px;
  line-height: 1.7;
  color: var(--fog-dim);
  max-width: 88ch;
}
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--ember-soft);
  outline-offset: 2px;
}
@media (max-width: 900px) {.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "copy";
  }
.poster-frame {
    max-width: 260px;
    transform: none;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-card:nth-child(3n + 2) {
    transform: none;
  }}
@media (max-width: 640px) {body {
    font-size: 14px;
  }
.site-header {
    gap: 8px;
  }
.category-nav {
    margin-left: 0;
    width: 100%;
  }
.movie-title {
    font-size: clamp(22px, 7.4vw, 30px);
  }
.details-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-card:nth-child(even) .recommend-link {
    transform: none;
  }
.player-progress {
    flex: 1 1 100%;
  }}
@media (max-width: 400px) {.details-list {
    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}
