*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Heiti SC", sans-serif;
  background: #1a1f18;
  color: #d8d4c8;
  line-height: 1.5;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(90, 110, 70, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(120, 100, 50, 0.1) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(0,0,0,0.1) 20px 21px),
    repeating-linear-gradient(-45deg, transparent 0 20px, rgba(0,0,0,0.1) 20px 21px);
  min-height: 100vh;
}
a { color: #c9a84c; text-decoration: none; }
a:hover { text-decoration: underline; }
img, video { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(20, 24, 18, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #5a6e46;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
a[data-contract="site-name"] {
  color: #e8c96a;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: italic;
  white-space: nowrap;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(200, 170, 80, 0.4);
}
a[data-contract="site-name"]:hover {
  color: #f0d880;
  text-decoration: none;
}
.categories-nav {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #5a6e46 transparent;
  padding-bottom: 0.25rem;
  flex: 1;
  justify-content: flex-end;
}
a.runtime-category {
  color: #b8b0a0;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border: 1px solid #3a4432;
  border-radius: 2px;
  background: rgba(40, 48, 36, 0.6);
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.08em;
}
a.runtime-category:hover {
  color: #e8c96a;
  border-color: #c9a84c;
  background: rgba(60, 70, 50, 0.8);
  text-decoration: none;
}
.page-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.movie-overview-shell {
  background: linear-gradient(135deg, #1e241b 0%, #252d20 100%);
  border: 1px solid #3a4432;
  border-radius: 4px;
  margin: 2rem 0;
  overflow: visible;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero-poster-block {
  position: relative;
  border-bottom: 1px solid #3a4432;
}
.hero-media-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.4fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
}
.hero-poster-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  border: 2px solid #5a6e46;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.player-wide-wrap {
  min-width: 480px;
  background: #141814;
  border: 1px solid #3a4432;
  border-radius: 2px;
  overflow: hidden;
}
.player-wide-wrap video {
  background: #000;
  border-bottom: 1px solid #3a4432;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(180deg, #2a3025 0%, #1c2119 100%);
  flex-wrap: wrap;
}
.player-btn {
  background: #3a4432;
  color: #d8d4c8;
  border: 1px solid #5a6e46;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.player-btn:hover { background: #5a6e46; color: #f0e8d0; }
.player-btn.active { background: #c9a84c; color: #1a1f18; border-color: #c9a84c; }
.player-progress, .player-volume {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #5a6e46;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.player-progress { flex: 1; min-width: 80px; }
.player-volume { width: 70px; }
.player-progress::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #c9a84c;
  border-radius: 50%;
  border: 2px solid #1a1f18;
}
.hero-title-group {
  position: relative;
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid #3a4432;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 24, 18, 0.95) 100%);
}
.movie-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  font-style: italic;
  color: #e8c96a;
  text-shadow: 2px 2px 0 #1a1f18, 4px 4px 12px rgba(0,0,0,0.8);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.movie-tagline {
  font-size: 1.1rem;
  color: #b8b0a0;
  font-weight: 600;
  letter-spacing: 0.15em;
  border-left: 3px solid #c9a84c;
  padding-left: 0.75rem;
  font-style: italic;
}
.info-panels-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: #3a4432;
  border: 1px solid #3a4432;
  margin: 0;
}
.info-panels-grid > * {
  background: #1e241b;
  padding: 1.25rem 1.5rem;
}
.synopsis-panel { grid-column: span 4; }
.cast-panel { grid-column: span 3; }
.episode-status-panel { grid-column: span 2; }
.details-panel { grid-column: span 3; }
.panel-heading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9a84c;
  border-bottom: 2px solid #5a6e46;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
}
.panel-heading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #e8c96a;
}
.synopsis-text-group p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #c8c4b8;
  text-align: justify;
}
.synopsis-text-group p:last-child { margin-bottom: 0; }
.actor-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.actor-chip {
  background: linear-gradient(135deg, #2a3025 0%, #1c2119 100%);
  border: 1px solid #5a6e46;
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #d8d4c8;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.2s;
}
.actor-chip:hover {
  background: #3a4432;
  color: #e8c96a;
  border-color: #c9a84c;
}
.status-meta-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.status-label {
  font-size: 0.8rem;
  color: #8a8a7a;
  text-transform: uppercase;
}
.status-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: #e8c96a;
  font-style: italic;
}
.status-divider {
  color: #5a6e46;
  font-size: 1.2rem;
  margin: 0 0.25rem;
}
.episode-progress-bar {
  height: 6px;
  background: #141814;
  border: 1px solid #3a4432;
  border-radius: 1px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #5a6e46, #c9a84c);
  border-radius: 1px;
}
.episode-note {
  font-size: 0.85rem;
  color: #b8b0a0;
  font-weight: 600;
}
.details-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-bottom: 1px dotted #3a4432;
  padding-bottom: 0.3rem;
}
.detail-item dt {
  color: #8a8a7a;
  font-weight: 500;
}
.detail-item dd {
  color: #d8d4c8;
  font-weight: 600;
  text-align: right;
}
.timeline-section {
  margin: 3rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #3a4432;
  border-bottom: 1px solid #3a4432;
}
.section-title {
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  color: #e8c96a;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-title::before, .section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5a6e46, transparent);
}
.timeline-scroll-wrap {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #c9a84c #1a1f18;
}
.timeline-track {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
  padding: 0.5rem 0;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 180px;
  padding: 1rem;
  background: linear-gradient(135deg, #252d20 0%, #1a1f18 100%);
  border: 1px solid #3a4432;
  border-left: 3px solid #c9a84c;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -6px;
  width: 10px;
  height: 10px;
  background: #e8c96a;
  transform: rotate(45deg);
  border: 1px solid #5a6e46;
}
.timecode {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.timeline-label {
  font-size: 0.9rem;
  color: #d8d4c8;
  font-weight: 500;
}
.episodes-section {
  margin: 2rem 0;
}
.episode-accordion-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.episode-item {
  background: linear-gradient(135deg, #252d20 0%, #1c2119 100%);
  border: 1px solid #3a4432;
  padding: 1rem 1.25rem;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.episode-item:hover {
  border-color: #c9a84c;
  box-shadow: 0 0 12px rgba(200, 170, 80, 0.2);
}
.episode-number-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8c96a;
  margin-bottom: 0.5rem;
  font-style: italic;
  border-left: 3px solid #5a6e46;
  padding-left: 0.75rem;
}
.episode-summary {
  font-size: 0.85rem;
  color: #c8c4b8;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-item:hover .episode-summary {
  -webkit-line-clamp: unset;
}
.episode-duration {
  font-size: 0.75rem;
  color: #8a8a7a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  border: 1px solid #3a4432;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}
.comments-section {
  margin: 3rem 0;
}
.comments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.comment-card {
  background: linear-gradient(135deg, #252d20 0%, #1c2119 100%);
  border: 1px solid #3a4432;
  padding: 1rem 1.25rem;
  border-radius: 2px;
  border-left: 3px solid #5a6e46;
}
.commenter {
  display: block;
  font-weight: 700;
  color: #c9a84c;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: italic;
}
.comment-text {
  font-size: 0.9rem;
  color: #d8d4c8;
}
.recommendation-region {
  margin: 2.5rem 0;
}
.recommendation-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.recommendation-region:nth-of-type(2) .recommendation-row {
  grid-template-columns: repeat(4, 1fr);
}
.recommendation-region:nth-of-type(3) .recommendation-row {
  grid-template-columns: repeat(3, 1fr);
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(135deg, #252d20 0%, #1c2119 100%);
  border: 1px solid #3a4432;
  padding: 0.75rem;
  color: #d8d4c8;
  text-decoration: none;
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
a.rec-card:hover {
  border-color: #c9a84c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  color: #e8c96a;
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid #3a4432;
  background: #141814;
}
[data-runtime="name"] {
  font-weight: 700;
  font-size: 0.9rem;
  color: #e8c96a;
  font-style: italic;
}
[data-runtime="blurb"] {
  font-size: 0.75rem;
  color: #8a8a7a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  background: #141814;
  border-top: 2px solid #5a6e46;
  padding: 2rem 1.5rem 2.5rem;
  margin-top: 3rem;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #8a8a7a;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #2a3025;
}
.friend-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9a84c;
  margin-right: 0.5rem;
  font-style: italic;
}
a.runtime-friend-link {
  font-size: 0.8rem;
  color: #b8b0a0;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border: 1px solid #2a3025;
  border-radius: 2px;
  transition: all 0.2s;
}
a.runtime-friend-link:hover {
  color: #e8c96a;
  border-color: #5a6e46;
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.85rem;
  color: #8a8a7a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #e8c96a;
  text-decoration: underline;
}
body.lights-off .hero-media-wrapper, body.lights-off .hero-title-group, body.lights-off .info-panels-grid {
  filter: brightness(0.6);
}
body.lights-off .site-header {
  background: rgba(10, 12, 8, 0.97);
}
.player.theater-mode ~ *, .player.theater-mode {
  max-width: 100%;
  width: 100%;
}
video.theater-mode {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw !important;
  height: auto;
  z-index: 999;
  background: #000;
}
body.lights-off {
  background: #0a0c08;
}
@media (max-width: 1200px) {.hero-media-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
.player-wide-wrap {
    min-width: 480px;
    width: 100%;
  }
.info-panels-grid {
    grid-template-columns: repeat(6, 1fr);
  }
.synopsis-panel { grid-column: span 3; }
.cast-panel { grid-column: span 3; }
.episode-status-panel { grid-column: span 2; }
.details-panel { grid-column: span 4; }
.recommendation-row {
    grid-template-columns: repeat(3, 1fr);
  }
.recommendation-region:nth-of-type(2) .recommendation-row {
    grid-template-columns: repeat(2, 1fr);
  }
.recommendation-region:nth-of-type(3) .recommendation-row {
    grid-template-columns: repeat(1, 1fr);
  }
.episode-accordion-list {
    grid-template-columns: repeat(2, 1fr);
  }}
@media (max-width: 768px) {.page-main {
    padding: 0 0.75rem 2rem;
  }
.site-header {
    padding: 0.5rem 0.75rem;
    gap: 0.75rem;
  }
.brand-link {
    font-size: 1rem;
  }
.hero-media-wrapper {
    padding: 0.75rem;
    gap: 1rem;
  }
.player-wide-wrap {
    min-width: 480px;
  }
.hero-title-group {
    padding: 0 0.75rem 0.75rem;
  }
.movie-title {
    font-size: 1.4rem;
  }
.info-panels-grid {
    grid-template-columns: 1fr;
  }
.info-panels-grid > * {
    grid-column: span 1 !important;
    padding: 1rem;
  }
.timeline-item {
    min-width: 150px;
  }
.episode-accordion-list {
    grid-template-columns: 1fr;
  }
.comments-grid {
    grid-template-columns: 1fr;
  }
.recommendation-row, .recommendation-region:nth-of-type(2) .recommendation-row, .recommendation-region:nth-of-type(3) .recommendation-row {
    grid-template-columns: 1fr;
  }
.actor-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
.player-controls {
    gap: 0.35rem;
  }
.player-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }
.player-progress {
    order: 10;
    flex-basis: 100%;
  }
.player-volume {
    width: 50px;
  }
.friend-links {
    gap: 0.4rem 0.75rem;
  }}
@media (max-width: 480px) {.player-wide-wrap {
    min-width: 480px;
  }
.hero-media-wrapper {
    overflow-x: auto;
  }
.categories-nav {
    overflow-x: auto;
  }
.section-title {
    font-size: 1.1rem;
  }
.timeline-track {
    gap: 0.75rem;
  }
.timeline-item {
    min-width: 130px;
    padding: 0.75rem;
  }
.actor-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.comment-card {
    padding: 0.75rem;
  }
a.rec-card {
    padding: 0.5rem;
  }
.footer-disclaimer {
    font-size: 0.7rem;
  }}
@media (max-width: 360px) {.player-controls {
    flex-direction: column;
    align-items: stretch;
  }
.player-progress {
    width: 100%;
  }
.player-volume {
    width: 100%;
  }
.hero-media-wrapper {
    padding: 0.5rem;
  }}

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}
