*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body {
  background: #05070d;
  color: #c4c9d4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
.site-header {
  background: rgba(5, 7, 13, 0.96);
  border-bottom: 1px solid #1a2030;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(4px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.2rem;
  max-width: 1440px;
  margin: 0 auto;
}
.site-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #e8ebf2;
  text-decoration: none;
  text-transform: uppercase;
  transform: skewX(-4deg);
  white-space: nowrap;
}
.site-logo:hover { color: #b4ff39; }
.categories-nav {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 2px;
}
.categories-nav a {
  color: #8b93a7;
  text-decoration: none;
  font-size: 0.82rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid #1e2638;
  background: rgba(20, 26, 40, 0.6);
  white-space: nowrap;
  transition: all 0.2s;
}
.categories-nav a:hover {
  color: #b4ff39;
  border-color: #b4ff39;
  background: rgba(180, 255, 57, 0.08);
}
.main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.2rem 2rem;
}
.section-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e8ebf2;
  text-transform: uppercase;
  transform: skewX(-6deg);
  padding-left: 0.6rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid #b4ff39;
  display: inline-block;
}
.hero-poster {
  position: relative;
  margin: 0 -1.2rem 2rem;
  padding: 0 1.2rem 1.5rem;
  background: linear-gradient(180deg, #05070d 0%, #0a0e18 100%);
  border-bottom: 1px solid #1a2030;
}
.poster-media-shell {
  position: relative;
  max-width: 480px;
  margin: 0 auto 1rem;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid #1e2638;
  background: #000;
}
.main-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1) brightness(0.8);
}
.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,13,0.1) 0%, rgba(5,7,13,0.4) 60%, rgba(5,7,13,0.7) 100%);
  mix-blend-mode: multiply;
}
.title-tagline-block {
  text-align: center;
  margin-bottom: 1.5rem;
}
.movie-title {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #f0f2f7;
  transform: skewX(-4deg);
  line-height: 1.3;
  text-shadow: 0 0 12px rgba(180, 255, 57, 0.3), 0 2px 4px rgba(0,0,0,0.8);
}
.movie-tagline {
  font-size: 0.9rem;
  color: #8b93a7;
  margin-top: 0.4rem;
  letter-spacing: 0.12em;
}
.movie-info-panel {
  background: #0d1119;
  border: 1px solid #1a2030;
  border-radius: 0;
  padding: 1.2rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
.movie-info-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b4ff39, transparent);
  opacity: 0.4;
}
.details-list {
  display: grid;
  gap: 0.35rem;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid #161c2a;
  font-size: 0.85rem;
}
.detail-term {
  color: #6b7488;
  flex-shrink: 0;
}
.detail-value {
  color: #c4c9d4;
  text-align: right;
}
.score-row .score-value {
  color: #b4ff39;
  font-weight: 800;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(180, 255, 57, 0.4);
}
.synopsis-paragraphs {
  display: grid;
  gap: 0.7rem;
}
.synopsis-text {
  font-size: 0.83rem;
  line-height: 1.7;
  color: #a0a8b8;
  text-align: justify;
}
.cast-card-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.5rem;
}
.cast-card {
  background: #121826;
  border: 1px solid #1e2638;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cast-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: #b4ff39;
  opacity: 0.3;
  transform: skewX(-20deg);
}
.cast-name {
  font-weight: 800;
  color: #e8ebf2;
  font-size: 0.9rem;
}
.cast-role {
  font-size: 0.75rem;
  color: #6b7488;
}
.status-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.3rem 0;
}
.status-total {
  font-size: 0.9rem;
  color: #8b93a7;
}
.total-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #b4ff39;
  margin: 0 0.1rem;
  text-shadow: 0 0 10px rgba(180, 255, 57, 0.4);
}
.status-current {
  font-size: 0.85rem;
  color: #c4c9d4;
  background: rgba(180, 255, 57, 0.05);
  border: 1px solid rgba(180, 255, 57, 0.2);
  padding: 0.2rem 0.6rem;
}
.current-num {
  color: #b4ff39;
  font-weight: 800;
}
.player-shell {
  background: #000;
  border: 1px solid #1e2638;
  position: relative;
  margin-top: 0.5rem;
}
.player-shell video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.4rem 0.5rem;
  background: #121826;
  border-top: 1px solid #1e2638;
}
.player-controls button {
  font-size: 0.75rem;
  color: #8b93a7;
  padding: 0.3rem 0.6rem;
  border: 1px solid #1e2638;
  background: #0d1119;
  transition: all 0.15s;
}
.player-controls button:hover {
  color: #b4ff39;
  border-color: rgba(180, 255, 57, 0.5);
}
.player-shell video.theater-mode {
  position: fixed;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  border-radius: 0;
}
.player-shell video.lights-off {
  filter: brightness(0.3) contrast(1.2);
}
.timeline-section {
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}
.timeline-scroll-container {
  overflow-x: auto;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #1a2030;
}
.timeline-track {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  padding: 0.5rem 0.2rem;
}
.timeline-node {
  position: relative;
  min-width: 180px;
  max-width: 220px;
  padding: 0.8rem 0.6rem 0.9rem;
  background: #0d1119;
  border: 1px solid #1e2638;
  border-top: 2px solid #b4ff39;
  flex-shrink: 0;
}
.timeline-node::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #b4ff39;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #b4ff39; }
  50% { opacity: 0.3; box-shadow: 0 0 2px #b4ff39; }
}
.node-timecode {
  display: block;
  font-size: 0.7rem;
  color: #b4ff39;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.node-label {
  font-size: 0.78rem;
  color: #a0a8b8;
  line-height: 1.4;
}
.episodes-section {
  margin-bottom: 2rem;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.episode-item {
  background: #0d1119;
  border: 1px solid #1a2030;
  display: flex;
  gap: 0.7rem;
  padding: 0.6rem 0.7rem;
  transition: border-color 0.2s;
}
.episode-item:hover {
  border-color: rgba(180, 255, 57, 0.4);
}
.episode-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1e2638;
  min-width: 2rem;
  text-align: center;
  border-right: 2px solid #1a2030;
  padding-right: 0.5rem;
  line-height: 1.2;
}
.episode-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.episode-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #e8ebf2;
  letter-spacing: 0.02em;
}
.episode-duration {
  font-size: 0.7rem;
  color: #6b7488;
}
.episode-summary {
  font-size: 0.78rem;
  color: #8b93a7;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.comments-section {
  margin-bottom: 2rem;
}
.comments-waterfall {
  columns: 2;
  column-gap: 0.6rem;
}
.comment-card {
  break-inside: avoid;
  background: #0d1119;
  border: 1px solid #1a2030;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.6rem;
  position: relative;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.01) 0px,
    rgba(255,255,255,0.01) 2px,
    transparent 2px,
    transparent 4px
  );
}
.comment-nickname {
  font-size: 0.8rem;
  font-weight: 800;
  color: #b4ff39;
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}
.comment-text {
  font-size: 0.8rem;
  color: #a0a8b8;
  line-height: 1.5;
}
.recommendation-region {
  margin-bottom: 2.2rem;
  position: relative;
}
.recommendation-region + .recommendation-region {
  border-top: 3px solid #1a2030;
  padding-top: 1.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.recommendation-region + .recommendation-region::before {
  content: "";
  position: absolute;
  top: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b4ff39 0%, #1a2030 40%, transparent 100%);
}
.recommendation-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #e8ebf2;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #b4ff39;
  transform: skewX(-4deg);
}
.recommendation-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: #0d1119;
  border: 1px solid #1a2030;
  padding: 0.5rem;
  color: #a0a8b8;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
a[data-runtime="recommendation"]:hover {
  border-color: rgba(180, 255, 57, 0.6);
  transform: translateY(-2px);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border: 1px solid #1e2638;
}
a[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 0.85rem;
  font-weight: 800;
  color: #e8ebf2;
  line-height: 1.3;
}
a[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 0.75rem;
  color: #6b7488;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  background: #080b12;
  border-top: 1px solid #1a2030;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 1.2rem 2rem;
  display: grid;
  gap: 1.2rem;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: #6b7488;
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  gap: 1rem;
}
.footer-link {
  font-size: 0.8rem;
  color: #8b93a7;
  text-decoration: none;
  padding: 0.2rem 0;
}
.footer-link:hover {
  color: #b4ff39;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.8rem;
}
.friend-links-label {
  font-size: 0.75rem;
  color: #6b7488;
  font-weight: 700;
  margin-right: 0.4rem;
}
.runtime-friend-link {
  font-size: 0.75rem;
  color: #8b93a7;
  text-decoration: none;
  border: 1px solid #1a2030;
  padding: 0.15rem 0.5rem;
  background: #0d1119;
}
.runtime-friend-link:hover {
  color: #b4ff39;
  border-color: rgba(180, 255, 57, 0.4);
}
a[data-contract="site-name"] { color: #e8ebf2; }
a[data-contract="site-name"]:hover { color: #b4ff39; }
a.runtime-category { color: #8b93a7; }
a.runtime-category:hover { color: #b4ff39; }
a[data-runtime="recommendation"] { color: #a0a8b8; }
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover { color: #b4ff39; }
a.runtime-friend-link { color: #8b93a7; }
a.runtime-friend-link:hover { color: #b4ff39; }
@media (max-width: 900px) {.episode-list {
    grid-template-columns: 1fr;
  }
.comments-waterfall {
    columns: 1;
  }
.movie-info-panel {
    grid-template-columns: 1fr;
  }}
@media (max-width: 700px) {html { font-size: 13px; }
.header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
.categories-nav {
    width: 100%;
  }
.main-content {
    padding: 0 0.8rem 1.5rem;
  }
.hero-poster {
    margin: 0 -0.8rem 1.5rem;
    padding: 0 0.8rem 1rem;
  }
.movie-title {
    font-size: 1.3rem;
  }
.poster-media-shell {
    max-width: 320px;
  }
.cast-card-scroll {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
.timeline-node {
    min-width: 150px;
  }
.recommendation-row {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }}
@media (max-width: 480px) {.episode-item {
    flex-direction: column;
  }
.episode-number {
    border-right: none;
    border-bottom: 1px solid #1a2030;
    padding-right: 0;
    padding-bottom: 0.2rem;
    text-align: left;
  }
.recommendation-row {
    grid-template-columns: 1fr 1fr;
  }
.player-controls {
    gap: 0.15rem;
  }
.player-controls button {
    padding: 0.25rem 0.4rem;
    font-size: 0.7rem;
  }}
.player.click { cursor: pointer; }
.player.play video { outline: 2px solid rgba(180,255,57,0.3); }
.player.fullscreen video { object-fit: contain; }
.player.mute video { filter: saturate(0.6); }
.player.speed video { transition: filter 0.3s; }
.player.pip video { border: 1px solid rgba(180,255,57,0.4); }
.player.progress { color: #b4ff39; }
.player.volume { color: #b4ff39; }
.player.light video { filter: brightness(0.4) contrast(1.3); }
.player.theater video { position: fixed; inset: 0; z-index: 300; background: #000; }
.player.lights-off video { filter: brightness(0.25) contrast(1.2); }
.player.theater-mode video { position: fixed; left: 0; right: 0; top: 50%; transform: translateY(-50%); z-index: 200; border-radius: 0; }
.player.lights-off video { filter: brightness(0.3) contrast(1.2); }
.player-shell {
  min-width: 480px;
}
@media (max-width: 520px) {.player-shell {
    min-width: 0;
    width: 100%;
  }}
video[style*="aspect-ratio"] {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

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}
