*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Helvetica Neue", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: #14161a;
  color: #d8d8d8;
  line-height: 1.5;
  font-size: 14px;
  min-width: 320px;
}
a {
  color: #d8a94f;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #f0c86a;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input[type="range"] {
  cursor: pointer;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: #0d0f12;
  border-bottom: 1px solid #2a2e35;
  position: sticky;
  top: 0;
  z-index: 100;
}
a[data-contract="site-name"], .site-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #d8a94f;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus {
  color: #f0c86a;
  text-decoration: underline;
  text-underline-offset: 4px;
}
div[data-contract="categories"] {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0;
  flex: 1;
  justify-content: flex-end;
  margin-left: 16px;
}
a.runtime-category {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  color: #b8b8c0;
  background: #1e2228;
  border: 1px solid #2e333c;
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}
a.runtime-category:hover, a.runtime-category:focus {
  color: #14161a;
  background: #d8a94f;
  border-color: #d8a94f;
}
main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px;
}
.movie-overview {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-areas:
    "poster hero"
    "poster cast"
    "poster synopsis"
    "poster status"
    "poster details";
  gap: 20px 28px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #161a20 0%, #1c2026 100%);
  border: 1px solid #2a2e35;
  border-top: 2px solid #d8a94f;
  padding: 24px;
  position: relative;
}
.movie-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(216, 169, 79, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 169, 79, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.movie-overview > * {
  position: relative;
  z-index: 1;
}
.poster-wrapper {
  grid-area: poster;
  align-self: start;
}
.main-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid #3a3f4a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.hero-content {
  grid-area: hero;
  align-self: start;
}
.hero-title {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 900;
  color: #f0f0f0;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(216, 169, 79, 0.2);
}
.hero-tagline {
  font-size: 16px;
  color: #d8a94f;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  border-left: 3px solid #d8a94f;
  padding-left: 12px;
}
.seo-description {
  color: #a8aab0;
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}
.cast-section {
  grid-area: cast;
  align-self: start;
}
.cast-section .section-heading {
  font-size: 14px;
  font-weight: 700;
  color: #d8a94f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2e333c;
  padding-bottom: 6px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cast-item {
  padding: 5px 14px;
  background: #1a1e24;
  border: 1px solid #2e333c;
  border-radius: 3px;
  font-size: 14px;
  color: #c8c8d0;
  transition: border-color 0.2s ease;
}
.cast-item:hover {
  border-color: #d8a94f;
}
.synopsis-section {
  grid-area: synopsis;
  align-self: start;
}
.synopsis-section .section-heading {
  font-size: 14px;
  font-weight: 700;
  color: #d8a94f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2e333c;
  padding-bottom: 6px;
}
.synopsis-paragraph {
  color: #b0b0b8;
  line-height: 1.75;
  margin-bottom: 10px;
  font-size: 14px;
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
}
.episode-status-section {
  grid-area: status;
  align-self: start;
}
.episode-status-section .section-heading {
  font-size: 14px;
  font-weight: 700;
  color: #d8a94f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2e333c;
  padding-bottom: 6px;
}
.episode-status-text {
  color: #c8c8d0;
  font-size: 15px;
  font-weight: 600;
  background: #1a1e24;
  display: inline-block;
  padding: 8px 16px;
  border-left: 3px solid #d8a94f;
}
.total-episodes, .current-episode {
  color: #d8a94f;
  font-weight: 800;
  font-size: 18px;
}
.details-section {
  grid-area: details;
  align-self: start;
}
.details-section .section-heading {
  font-size: 14px;
  font-weight: 700;
  color: #d8a94f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2e333c;
  padding-bottom: 6px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px dashed #2e333c;
  padding-bottom: 6px;
}
.detail-item dt {
  color: #888;
  font-size: 13px;
  min-width: 48px;
}
.detail-item dd {
  color: #d0d0d8;
  font-size: 14px;
  font-weight: 500;
}
.player-wrapper {
  margin: 0 0 40px;
  background: #0d0f12;
  border: 1px solid #2a2e35;
  padding: 16px;
  width: 100%;
  min-width: 0;
  position: relative;
}
.player-wrapper video {
  display: block;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #2e333c;
}
.player-btn {
  padding: 6px 12px;
  background: #1e2228;
  color: #b8b8c0;
  border: 1px solid #2e333c;
  border-radius: 3px;
  font-size: 13px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.player-btn:hover, .player-btn:focus {
  background: #2a3038;
  color: #f0f0f0;
}
.player-btn.playing {
  color: #d8a94f;
  border-color: #d8a94f;
}
.player-progress, .player-volume {
  flex: 1;
  min-width: 100px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: #2e333c;
  border-radius: 2px;
}
.player-progress::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d8a94f;
  border: 2px solid #14161a;
}
.player-progress::-moz-range-thumb, .player-volume::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d8a94f;
  border: 2px solid #14161a;
}
.player-wrapper.theater-mode {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 1200px;
  z-index: 1000;
  background: #000;
  border: 2px solid #d8a94f;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}
body.lights-off::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  pointer-events: none;
}
body.lights-off .player-wrapper {
  z-index: 1000;
}
.timeline-section {
  margin-bottom: 40px;
  padding-top: 8px;
  border-top: 1px solid #2a2e35;
  position: relative;
}
.timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8a94f 30%, #d8a94f 70%, transparent);
}
.timeline-section .section-heading {
  font-size: 20px;
  font-weight: 800;
  color: #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.timeline-section .section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #d8a94f, transparent);
}
.timeline-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
}
.timeline-list {
  display: flex;
  gap: 0;
  min-width: max-content;
}
.timeline-item {
  position: relative;
  flex: 0 0 240px;
  padding: 20px 20px 20px 50px;
  border-left: 1px solid #2e333c;
  background: linear-gradient(180deg, rgba(216, 169, 79, 0.04), transparent);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d8a94f;
  box-shadow: 0 0 8px rgba(216, 169, 79, 0.5);
  border: 2px solid #0d0f12;
}
.timeline-item:last-child {
  border-right: 1px solid #2e333c;
}
.timeline-timecode {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #d8a94f;
  background: rgba(216, 169, 79, 0.1);
  padding: 3px 10px;
  border: 1px solid rgba(216, 169, 79, 0.3);
  border-radius: 3px;
  margin-bottom: 10px;
}
.timeline-label {
  color: #b0b0b8;
  font-size: 14px;
  line-height: 1.6;
}
.episodes-section {
  margin-bottom: 40px;
  border-top: 1px solid #2a2e35;
  padding-top: 8px;
  position: relative;
}
.episodes-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8a94f 30%, #d8a94f 70%, transparent);
}
.episodes-section .section-heading {
  font-size: 20px;
  font-weight: 800;
  color: #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.episodes-section .section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #d8a94f, transparent);
}
.episodes-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.episode-card {
  background: #191d23;
  border: 1px solid #2a2e35;
  border-left: 3px solid #d8a94f;
  padding: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.episode-card:hover {
  border-color: #d8a94f;
  transform: translateY(-2px);
}
.episode-number {
  font-size: 28px;
  font-weight: 900;
  color: #d8a94f;
  line-height: 1;
  font-style: italic;
  opacity: 0.8;
}
.episode-title {
  font-size: 17px;
  font-weight: 700;
  color: #f0f0f0;
}
.episode-summary {
  color: #9a9aa2;
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}
.episode-duration {
  font-size: 12px;
  color: #666;
  border-top: 1px solid #2e333c;
  padding-top: 8px;
}
.cast-matrix-section {
  margin-bottom: 40px;
  border-top: 1px solid #2a2e35;
  padding-top: 8px;
  position: relative;
}
.cast-matrix-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8a94f 30%, #d8a94f 70%, transparent);
}
.cast-matrix-section .section-heading {
  font-size: 20px;
  font-weight: 800;
  color: #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cast-matrix-section .section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #d8a94f, transparent);
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.cast-card {
  background: #191d23;
  border: 1px solid #2a2e35;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.cast-card:hover {
  border-color: #d8a94f;
}
.cast-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a3038, #1a1e24);
  border: 2px solid #d8a94f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #d8a94f;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.cast-name {
  font-size: 17px;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 4px;
}
.cast-role {
  font-size: 13px;
  color: #9a9aa2;
}
.comments-section {
  margin-bottom: 40px;
  border-top: 1px solid #2a2e35;
  padding-top: 8px;
  position: relative;
}
.comments-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8a94f 30%, #d8a94f 70%, transparent);
}
.comments-section .section-heading {
  font-size: 20px;
  font-weight: 800;
  color: #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.comments-section .section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #d8a94f, transparent);
}
.comments-scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.comment-card {
  background: #191d23;
  border: 1px solid #2a2e35;
  padding: 16px;
  border-top: 2px solid #d8a94f;
  transition: border-color 0.2s ease;
}
.comment-card:hover {
  border-color: #d8a94f;
}
.comment-nickname {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #d8a94f;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #2e333c;
}
.comment-text {
  color: #b0b0b8;
  font-size: 14px;
  line-height: 1.6;
}
.recommendations-region {
  margin-bottom: 40px;
  border-top: 1px solid #2a2e35;
  padding-top: 8px;
  position: relative;
}
.recommendations-region::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8a94f 30%, #d8a94f 70%, transparent);
}
.recommendation-heading {
  font-size: 20px;
  font-weight: 800;
  color: #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.recommendation-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #d8a94f, transparent);
}
.recommendation-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
a.recommendation-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #191d23;
  border: 1px solid #2a2e35;
  padding: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  color: inherit;
  text-decoration: none;
}
a.recommendation-item:hover, a.recommendation-item:focus {
  border-color: #d8a94f;
  transform: translateY(-2px);
  color: inherit;
}
.recommendation-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  background: #2a3038;
}
.recommendation-name {
  font-size: 14px;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommendation-blurb {
  font-size: 12px;
  color: #9a9aa2;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
footer {
  background: #0d0f12;
  border-top: 2px solid #d8a94f;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 40px;
}
.footer-disclaimer {
  width: 100%;
  color: #74747c;
  font-size: 12px;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid #2e333c;
  margin-bottom: 4px;
}
a[data-contract="footer-home"], .footer-home {
  font-size: 14px;
  color: #d8a94f;
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus {
  color: #f0c86a;
  text-decoration: underline;
  text-underline-offset: 4px;
}
a[data-contract="footer-sitemap"], .footer-sitemap {
  font-size: 14px;
  color: #d8a94f;
  text-decoration: none;
  white-space: nowrap;
}
a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus {
  color: #f0c86a;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.friend-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin-top: 4px;
}
.friend-links-label {
  font-size: 12px;
  color: #74747c;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 13px;
  color: #9a9aa2;
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus {
  color: #d8a94f;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1024px) {.movie-overview {
    grid-template-columns: 220px 1fr;
    grid-template-areas:
      "poster hero"
      "poster cast"
      "poster synopsis"
      "poster status"
      "poster details";
  }
.episodes-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comments-scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommendation-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 800px) {main {
    padding: 16px;
  }
.movie-overview {
    grid-template-columns: 1fr;
    grid-template-areas:
      "poster"
      "hero"
      "cast"
      "synopsis"
      "status"
      "details";
    gap: 16px;
  }
.poster-wrapper {
    max-width: 240px;
    margin: 0 auto;
  }
.hero-content {
    text-align: center;
  }
.hero-tagline {
    justify-content: center;
    border-left: none;
    border-top: 2px solid #d8a94f;
    padding-top: 8px;
    padding-left: 0;
    display: inline-block;
  }
.seo-description {
    margin: 0 auto;
  }
.cast-list {
    justify-content: center;
  }
.synopsis-section, .episode-status-section, .details-section {
    text-align: center;
  }
.episode-status-text {
    display: inline-block;
  }
.details-list {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 360px;
    margin: 0 auto;
  }
.episodes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-scroll {
    grid-template-columns: 1fr;
  }
.recommendation-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
div[data-contract="categories"] {
    justify-content: flex-start;
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    flex: none;
  }
header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }}
@media (max-width: 520px) {main {
    padding: 12px;
  }
.movie-overview {
    padding: 16px;
  }
.episodes-list, .cast-grid, .recommendation-list {
    grid-template-columns: 1fr;
  }
.comments-scroll {
    grid-template-columns: 1fr;
  }
.timeline-item {
    flex-basis: 200px;
  }
.player-controls {
    gap: 6px;
  }
.player-btn {
    padding: 5px 8px;
    font-size: 12px;
  }
.player-progress, .player-volume {
    min-width: 60px;
  }}
.player-wrapper.theater-mode video {
  width: 100%;
}
.player-wrapper.pause video {
  filter: brightness(0.8);
}
.player-wrapper.playing video {
  filter: none;
}
.player-wrapper.mute .player-volume {
  opacity: 0.5;
}
.player-wrapper.progress .player-progress {
  accent-color: #d8a94f;
}
.player-wrapper.volume .player-volume {
  accent-color: #d8a94f;
}
.player-wrapper.speed .player-btn {
  border-color: #d8a94f;
  color: #d8a94f;
}
.player-wrapper.pip .player-btn {
  border-color: #d8a94f;
  color: #d8a94f;
}
.player-wrapper.fullscreen .player-btn {
  border-color: #d8a94f;
  color: #d8a94f;
}
.player-wrapper.light .player-btn {
  border-color: #d8a94f;
  color: #d8a94f;
}
.player-wrapper.click .player-btn {
  background: #2a3038;
}
.player-wrapper.input .player-progress, .player-wrapper.input .player-volume {
  border-color: #d8a94f;
}
.player-wrapper.theater .player-btn {
  border-color: #d8a94f;
  color: #d8a94f;
}
.player-wrapper.timeupdate .player-progress {
  background: linear-gradient(90deg, #d8a94f 0%, #d8a94f var(--value, 0%), #2e333c var(--value, 0%));
}
.player-wrapper {
  min-width: 0;
}
.player-wrapper video {
  min-width: 0;
  width: 100%;
}

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}
