* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: #0a0a0f;
  color: #d4cfc4;
  font-family: "Times New Roman", Times, "Songti SC", "SimSun", serif;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 2rem;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 170, 80, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.brand-link {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d4af37;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  white-space: nowrap;
}
.brand-link:hover { color: #f0dfa8; }
.categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}
.categories-nav .runtime-category {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.95rem;
  color: #d4cfc4;
  border: 1px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.categories-nav .runtime-category:hover {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
}
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}
.movie-overview-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(200, 170, 80, 0.2);
  background: linear-gradient(170deg, rgba(15, 15, 22, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%);
}
.poster-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.poster-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 24px rgba(212, 175, 55, 0.08);
}
.main-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.85) saturate(1.1);
}
.player-shell {
  width: 100%;
  min-width: 480px;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}
.player-video { display: block; background: #000; }
.player-video.theater-mode {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100vw;
  height: 100vh;
  background: #000;
}
.player-video.lights-off { filter: brightness(0.6) saturate(0.9); }
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.4rem 0.5rem;
  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.player-controls button {
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  color: #d4cfc4;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.2s;
}
.player-controls button:hover {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.4);
}
.info-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.movie-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #f0e6d0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.04em;
}
.movie-tagline {
  font-size: 1.05rem;
  font-style: italic;
  color: #d4af37;
  letter-spacing: 0.1em;
  border-left: 3px solid #d4af37;
  padding-left: 0.75rem;
}
.section-subhead {
  font-size: 1rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 0.3rem;
  display: inline-block;
}
.cast-module, .synopsis-module, .episode-status-module, .details-module {
  width: 100%;
}
.actor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
}
.actor-list li {
  font-size: 0.95rem;
  color: #c8c2b4;
  position: relative;
}
.actor-list li::before {
  content: "·";
  color: #d4af37;
  margin-right: 0.4rem;
}
.synopsis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
}
.synopsis-text {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.synopsis-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
  color: #c8c2b4;
}
.synopsis-visual-accent {
  position: relative;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.15) 0%, rgba(80, 20, 20, 0.3) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
}
.synopsis-visual-accent::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}
.episode-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}
.episode-meta-row span {
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 2px;
  color: #d4cfc4;
  background: rgba(212, 175, 55, 0.05);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem 1.5rem;
}
.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.detail-item dt {
  font-size: 0.75rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.detail-item dd {
  font-size: 0.95rem;
  color: #d4cfc4;
}
.timeline-section {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(200, 170, 80, 0.15);
  position: relative;
}
.section-heading-light {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0e6d0;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}
.section-heading-light::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin-top: 0.4rem;
}
.timeline-horizontal {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 0.5rem;
}
.timeline-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37 10%, #d4af37 90%, transparent);
  opacity: 0.6;
}
.timeline-item {
  position: relative;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4af37;
  border: 2px solid #0a0a0f;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}
.timecode {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d4af37;
  font-family: "Courier New", monospace;
  letter-spacing: 0.05em;
}
.timeline-label {
  font-size: 0.9rem;
  color: #c8c2b4;
  line-height: 1.4;
}
.episodes-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(200, 170, 80, 0.15);
}
.episode-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.episode-card {
  padding: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(15, 15, 22, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.episode-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}
.episode-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.episode-title {
  font-size: 1.1rem;
  color: #f0e6d0;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.episode-summary {
  font-size: 0.9rem;
  color: #c8c2b4;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.episode-duration {
  font-size: 0.8rem;
  color: #a89a7a;
  font-style: italic;
}
.cast-grid-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(200, 170, 80, 0.15);
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.cast-card {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(200, 170, 80, 0.15);
  background: linear-gradient(180deg, rgba(15, 15, 22, 0.9), rgba(10, 10, 15, 0.95));
  transition: all 0.2s;
  align-self: start;
}
.cast-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.1);
}
.cast-avatar {
  width: 90px;
  height: 120px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(160deg, #2a2a35 0%, #1a1a22 50%, #3a2a1a 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(80, 40, 20, 0.4));
}
.cast-card h3 {
  font-size: 1.1rem;
  color: #f0e6d0;
  margin-bottom: 0.25rem;
}
.cast-role {
  font-size: 0.85rem;
  color: #d4af37;
  font-style: italic;
}
.comments-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(200, 170, 80, 0.15);
}
.comments-masonry {
  column-count: 3;
  column-gap: 1rem;
}
.comment-card {
  break-inside: avoid;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(15, 15, 22, 0.7);
  border-left: 2px solid #d4af37;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: background 0.2s;
}
.comment-card:hover {
  background: rgba(20, 20, 30, 0.9);
}
.comment-nickname {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.comment-text {
  font-size: 0.9rem;
  color: #c8c2b4;
  line-height: 1.5;
}
.recommendation-region {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(200, 170, 80, 0.15);
}
.recommendation-region:last-of-type {
  border-bottom: 1px solid rgba(200, 170, 80, 0.15);
}
.recommendation-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f0e6d0;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}
.recommendation-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin-top: 0.3rem;
}
.recommendation-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.4) transparent;
  align-items: stretch;
}
.recommendation-scroll::-webkit-scrollbar { height: 6px; }
.recommendation-scroll::-webkit-scrollbar-track { background: transparent; }
.recommendation-scroll::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 3px;
}
.rec-card {
  flex: 0 0 auto;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem;
  background: rgba(15, 15, 22, 0.7);
  border: 1px solid rgba(200, 170, 80, 0.15);
  transition: all 0.2s;
  align-self: flex-start;
}
.rec-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}
.rec-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.rec-card span[data-runtime="name"] {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0e6d0;
  line-height: 1.3;
}
.rec-card span[data-runtime="blurb"] {
  font-size: 0.8rem;
  color: #a89a7a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  padding: 2rem 1.5rem 3rem;
  background: rgba(8, 8, 12, 0.9);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.footer-disclaimer {
  max-width: 800px;
  font-size: 0.8rem;
  color: #8a8378;
  line-height: 1.5;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
}
.friend-links-label {
  font-size: 0.85rem;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-right: 0.5rem;
}
.runtime-friend-link {
  font-size: 0.85rem;
  color: #c8c2b4;
  transition: color 0.2s;
}
.runtime-friend-link:hover { color: #d4af37; }
.footer-policy-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.footer-policy-links a {
  font-size: 0.85rem;
  color: #a89a7a;
  transition: color 0.2s;
}
.footer-policy-links a:hover { color: #d4af37; }
@media (max-width: 1024px) {.movie-overview-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
.poster-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }
.player-shell {
    min-width: 480px;
    max-width: 720px;
    margin: 0 auto;
  }
.player-shell, .player-shell * {
    min-width: 0;
  }
.player-shell .player-video {
    width: 100%;
  }
.comments-masonry {
    column-count: 2;
  }
.info-panel {
    align-items: stretch;
  }}
@media (max-width: 768px) {.site-header {
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
.categories-nav {
    justify-content: center;
  }
.main-content {
    padding: 0 0.75rem 2rem;
  }
.movie-overview-block {
    padding: 1rem 0 2rem;
  }
.player-shell {
    min-width: 480px;
  }
.timeline-horizontal {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
.timeline-horizontal::before {
    display: none;
  }
.timeline-item::before {
    left: 0;
  }
.episode-card-grid {
    grid-template-columns: 1fr;
  }
.cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.comments-masonry {
    column-count: 1;
  }
.synopsis-grid {
    grid-template-columns: 1fr;
  }
.synopsis-visual-accent {
    min-height: 80px;
  }
.details-list {
    grid-template-columns: 1fr 1fr;
  }
.rec-card {
    width: 160px;
  }
.rec-card img {
    height: 160px;
  }}
@media (max-width: 520px) {html { font-size: 14px; }
.movie-title {
    font-size: 1.5rem;
  }
.player-shell {
    min-width: 480px;
  }
.main-content {
    padding: 0 0.5rem 1.5rem;
    overflow-x: hidden;
  }
.movie-overview-block {
    overflow-x: hidden;
  }
.cast-grid {
    grid-template-columns: 1fr;
  }
.details-list {
    grid-template-columns: 1fr;
  }
.footer-policy-links {
    flex-direction: column;
    gap: 0.5rem;
  }
.rec-card {
    width: 140px;
  }
.rec-card img {
    height: 140px;
  }}
.player .theater-mode {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #000;
}
.player .lights-off {
  filter: brightness(0.5) saturate(0.8) !important;
}
.click {
  cursor: pointer;
}
.keydown {
  outline: 1px solid #d4af37;
}
.player-shell:has(.player-video) {
  min-width: 480px;
}
@media (max-width: 480px) {body {
    overflow-x: auto;
  }
.player-shell {
    min-width: 480px;
    max-width: none;
  }
.poster-wrapper {
    max-width: 300px;
  }
.rec-card {
    width: 160px;
  }}

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}
