*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: #d8e0e8;
  background-color: #0e1319;
  background-image: radial-gradient(circle at 25% 10%, rgba(60, 80, 110, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 75% 90%, rgba(120, 30, 40, 0.08) 0%, transparent 50%),
                    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0px, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 3px);
  min-height: 100vh;
  letter-spacing: 0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, rgba(14, 19, 25, 0.95) 0%, rgba(14, 19, 25, 0.85) 80%, transparent 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(150, 170, 190, 0.1);
}
.site-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #c8d6e5;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.site-brand:hover {
  color: #a33b3b;
}
nav[data-contract="categories"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}
.runtime-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #9fb2c4;
  background: rgba(30, 40, 55, 0.7);
  border: 1px solid rgba(120, 150, 180, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.runtime-category:hover {
  color: #e8eef4;
  border-color: rgba(160, 180, 200, 0.5);
  background: rgba(40, 55, 75, 0.8);
}
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.movie-overview {
  background: linear-gradient(160deg, rgba(20, 28, 38, 0.75) 0%, rgba(14, 19, 25, 0.85) 100%);
  border: 1px solid rgba(130, 155, 180, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.hero-teaser {
  margin-bottom: 1.5rem;
  border-left: 4px solid #a33b3b;
  padding-left: 1rem;
}
.hero-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #e8eef4;
  margin-bottom: 0.3rem;
}
.hero-tagline {
  font-size: 0.9rem;
  color: #8ba1b5;
  font-style: italic;
  letter-spacing: 0.05em;
}
.media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 2fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.poster-wrapper {
  width: 100%;
  max-width: 300px;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  filter: saturate(0.85) contrast(1.05);
  border: 1px solid rgba(150, 170, 200, 0.15);
}
.player-wrapper {
  width: 100%;
  background: #0a0e12;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(130, 155, 180, 0.2);
  position: relative;
}
.player-wrapper video {
  display: block;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: rgba(10, 14, 18, 0.9);
  border-top: 1px solid rgba(130, 155, 180, 0.15);
}
.player-controls button {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #9fb2c4;
  background: rgba(30, 40, 55, 0.85);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  transition: all 0.15s ease;
  border: 1px solid rgba(120, 150, 180, 0.2);
}
.player-controls button:hover {
  color: #e8eef4;
  background: rgba(50, 70, 95, 0.9);
  border-color: rgba(160, 180, 200, 0.4);
}
.player-wrapper.theater-mode {
  position: fixed;
  inset: 0;
  z-index: 200;
  border-radius: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.player-wrapper.theater-mode video {
  max-height: 80vh;
  margin: auto;
}
.player-wrapper.theater-mode .player-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 14, 18, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(130, 155, 180, 0.3);
}
.player-wrapper.light-off::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99;
  pointer-events: none;
}
.synopsis-group {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(130, 155, 180, 0.1);
  border-bottom: 1px solid rgba(130, 155, 180, 0.1);
}
.section-heading {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8d6e5;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 0.8rem;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 1.2em;
  background: #a33b3b;
  border-radius: 2px;
}
.synopsis-para {
  font-size: 0.85rem;
  color: #9fb2c4;
  margin-bottom: 0.6rem;
  line-height: 1.8;
  max-width: 72ch;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.cast-block {
  margin: 1.5rem 0;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.7rem;
}
.cast-card {
  background: rgba(25, 35, 50, 0.6);
  border: 1px solid rgba(120, 150, 180, 0.12);
  border-radius: 6px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  transition: all 0.2s ease;
}
.cast-card:hover {
  background: rgba(35, 50, 70, 0.8);
  border-color: rgba(160, 180, 200, 0.3);
}
.cast-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #b8c8d8;
  letter-spacing: 0.06em;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
  padding: 0.8rem 1rem;
  background: rgba(163, 59, 59, 0.1);
  border: 1px solid rgba(163, 59, 59, 0.2);
  border-radius: 6px;
}
.episode-count, .current-episode {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #d8a0a0;
}
.current-episode {
  color: #e8c4c4;
  background: rgba(163, 59, 59, 0.25);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}
.details-block {
  margin: 1.5rem 0 0;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.4rem 1.5rem;
}
.details-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(130, 155, 180, 0.08);
  font-size: 0.8rem;
}
.detail-term {
  color: #6b829a;
  font-weight: 500;
  white-space: nowrap;
}
.detail-value {
  color: #b8c8d8;
  font-weight: 600;
  text-align: right;
}
.timeline-section {
  background: linear-gradient(180deg, rgba(20, 28, 38, 0.5) 0%, rgba(14, 19, 25, 0.3) 100%);
  border: 1px solid rgba(130, 155, 180, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  position: relative;
  padding-top: 1.2rem;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(163, 59, 59, 0.6) 0%, rgba(80, 110, 140, 0.3) 100%);
  border-radius: 2px;
}
.timeline-item {
  background: rgba(20, 28, 38, 0.85);
  border: 1px solid rgba(120, 150, 180, 0.15);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  position: relative;
  transition: all 0.2s ease;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a33b3b;
  border: 2px solid #0e1319;
  box-shadow: 0 0 8px rgba(163, 59, 59, 0.4);
}
.timeline-item:hover {
  border-color: rgba(180, 200, 220, 0.4);
  transform: translateY(-2px);
}
.timecode {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #a33b3b;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.label {
  font-size: 0.8rem;
  color: #b8c8d8;
  font-weight: 500;
}
.episodes-section, .comments-section {
  background: linear-gradient(180deg, rgba(20, 28, 38, 0.5) 0%, rgba(14, 19, 25, 0.3) 100%);
  border: 1px solid rgba(130, 155, 180, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0.8rem;
}
.episode-item {
  background: rgba(18, 25, 35, 0.7);
  border: 1px solid rgba(110, 140, 170, 0.12);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.2rem 0.8rem;
  align-items: baseline;
  transition: all 0.2s ease;
}
.episode-item:hover {
  border-color: rgba(163, 59, 59, 0.4);
  background: rgba(25, 35, 50, 0.8);
}
.epi-number {
  grid-row: 1;
  grid-column: 1;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a33b3b;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.epi-title {
  grid-row: 1;
  grid-column: 2;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d0dde8;
}
.epi-duration {
  grid-row: 1;
  grid-column: 3;
  font-size: 0.7rem;
  color: #6b829a;
  white-space: nowrap;
}
.epi-summary {
  grid-row: 2;
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: #8ba1b5;
  line-height: 1.6;
}
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.8rem;
}
.comment-card {
  background: rgba(18, 25, 35, 0.7);
  border: 1px solid rgba(110, 140, 170, 0.12);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.comment-nick {
  font-size: 0.8rem;
  font-weight: 700;
  color: #c8d6e5;
  letter-spacing: 0.06em;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(130, 155, 180, 0.1);
}
.comment-text {
  font-size: 0.8rem;
  color: #8ba1b5;
  line-height: 1.7;
}
.recommendation-section {
  background: linear-gradient(180deg, rgba(20, 28, 38, 0.5) 0%, rgba(14, 19, 25, 0.3) 100%);
  border: 1px solid rgba(130, 155, 180, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}
.recommendation-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.8rem;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  background: rgba(18, 25, 35, 0.7);
  border: 1px solid rgba(110, 140, 170, 0.12);
  border-radius: 8px;
  padding: 0.6rem;
  text-decoration: none;
  color: #b8c8d8;
  transition: all 0.2s ease;
  gap: 0.4rem;
}
a[data-runtime="recommendation"]:hover {
  border-color: rgba(163, 59, 59, 0.4);
  background: rgba(25, 35, 50, 0.8);
  transform: translateY(-2px);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  background: #1a2530;
}
a[data-runtime="recommendation"] span[data-runtime="name"] {
  font-size: 0.8rem;
  font-weight: 700;
  color: #d0dde8;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
a[data-runtime="recommendation"] span[data-runtime="blurb"] {
  font-size: 0.7rem;
  color: #6b829a;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(130, 155, 180, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.5rem;
  font-size: 0.8rem;
  color: #6b829a;
}
nav[data-contract="friend-links"] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.8rem;
  width: 100%;
}
.friend-links-label {
  font-weight: 700;
  color: #9fb2c4;
  letter-spacing: 0.1em;
  margin-right: 0.5rem;
}
.runtime-friend-link {
  font-size: 0.75rem;
  color: #7d94a8;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.runtime-friend-link:hover {
  color: #e8eef4;
  text-decoration: underline;
}
footer div[data-contract="disclaimer"] {
  width: 100%;
  font-size: 0.7rem;
  color: #4a5f73;
  padding: 0.5rem 0;
}
footer a[data-contract="footer-home"], footer a[data-contract="footer-sitemap"] {
  font-size: 0.8rem;
  font-weight: 600;
  color: #8ba1b5;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a[data-contract="footer-home"]:hover, footer a[data-contract="footer-sitemap"]:hover {
  color: #a33b3b;
  text-decoration: underline;
}
.player-wrapper.click {
  cursor: pointer;
}
.player-wrapper.play video {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
.player-wrapper.progress video {
  filter: brightness(0.8);
}
.player-wrapper.volume video {
  opacity: 0.9;
}
.player-wrapper.mute video {
  opacity: 0.7;
}
.player-wrapper.speed video {
  animation: speedPulse 1.5s ease infinite;
}
@keyframes speedPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(163, 59, 59, 0); }
  50% { box-shadow: 0 0 20px rgba(163, 59, 59, 0.3); }
}
.player-wrapper.pip {
  border-color: #a33b3b;
}
.player-wrapper.fullscreen {
  border-radius: 0;
}
.player-wrapper.theater {
  position: fixed;
  inset: 0;
  z-index: 200;
  border-radius: 0;
}
.player-wrapper.light {
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 900px) {.media-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
.poster-wrapper {
    max-width: 220px;
  }
.timeline-track {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }}
@media (max-width: 640px) {main {
    padding: 1rem;
    gap: 1.5rem;
  }
.movie-overview, .timeline-section, .episodes-section, .comments-section, .recommendation-section {
    padding: 1rem;
  }
header {
    padding: 0.8rem 1rem;
  }
.site-brand {
    font-size: 1.2rem;
  }
.hero-title {
    font-size: 1.2rem;
  }
.media-row {
    grid-template-columns: 1fr;
  }
.poster-wrapper {
    max-width: 180px;
  }
.episode-list {
    grid-template-columns: 1fr;
  }
.episode-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
.epi-number, .epi-title, .epi-duration {
    grid-column: 1;
    grid-row: auto;
  }
.epi-duration {
    font-size: 0.7rem;
    color: #6b829a;
  }
.epi-summary {
    grid-row: auto;
  }
.comments-grid {
    grid-template-columns: 1fr;
  }
.recommendation-track {
    grid-template-columns: repeat(2, 1fr);
  }
.timeline-track {
    grid-template-columns: 1fr 1fr;
  }
.timeline-track::before {
    display: none;
  }
.timeline-item::before {
    display: none;
  }
.details-list {
    grid-template-columns: 1fr;
  }
.player-controls {
    gap: 0.3rem;
  }
.player-controls button {
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
  }}
@media (max-width: 400px) {.recommendation-track {
    grid-template-columns: 1fr;
  }
.timeline-track {
    grid-template-columns: 1fr;
  }
.poster-wrapper {
    max-width: 100%;
  }
.hero-title {
    font-size: 1.1rem;
  }}

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}
