*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #0a0f1e;
  color: #cfd6e6;
  line-height: 1.6;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.25rem;
  background-color: rgba(10, 15, 30, 0.85);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 20;
}
.site-logo {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
a[data-contract="site-name"] {
  color: #d4af37;
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: #f0d77b;
}
.categories-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
}
.categories-bar .runtime-category {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  font-size: 0.85rem;
  color: #9aa7bd;
  white-space: nowrap;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.categories-bar .runtime-category:hover {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.25);
  background-color: rgba(212, 175, 55, 0.06);
}
.movie-overview {
  background: linear-gradient(135deg, #0d1322 0%, #131b2e 55%, #101826 100%);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 1.5rem 1.25rem;
}
.overview-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: start;
}
.poster-wrapper {
  
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background-color: #0d1424;
}
.main-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.player-wrapper {
  position: relative;
  background-color: #05080f;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  min-width: 0; 
}
.player-wrapper video {
  display: block;
  background-color: #000;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  background-color: rgba(8, 12, 22, 0.88);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  flex-wrap: wrap;
}
.player-controls button {
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: #b9c2d4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.player-controls button:hover {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.4);
  background-color: rgba(212, 175, 55, 0.08);
}
.player-progress {
  flex: 1 1 160px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  min-width: 80px;
}
.player-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, #d4af37, #f0d77b);
  border-radius: 3px;
}
.title-block {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding-bottom: 1rem;
}
.movie-title {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #f2ead8;
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
.tagline {
  font-size: 1.05rem;
  color: #d4af37;
  font-style: italic;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.info-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
}
.left-col, .right-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.cast-group {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  padding: 0.5rem 0;
}
.section-subtitle {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4af37;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.actor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  padding: 0.3rem 0;
}
.actor-list li {
  display: inline-flex;
  align-items: center;
}
.actor-name {
  font-size: 0.95rem;
  color: #c8d2e3;
  padding: 0.2rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
}
.actor-name:hover {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.2);
}
.synopsis-block {
  padding: 0.2rem 0;
}
.synopsis-para {
  font-size: 0.93rem;
  color: #a9b4c9;
  line-height: 1.7;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.episode-status-panel {
  background: rgba(10, 16, 30, 0.6);
  border-radius: 6px;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}
.status-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #b9c6dc;
}
.status-meta b {
  color: #f0d77b;
  font-size: 1.2em;
  font-weight: 700;
}
.episode-progress {
  height: 5px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.episode-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, #d4af37, #a8842a);
}
.detail-facts {
  padding: 0.2rem 0;
}
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}
.detail-row dt {
  color: #8b98ae;
  min-width: 4em;
}
.detail-row dd {
  color: #d0d9e8;
  text-align: right;
}
.timeline-section {
  margin: 2rem 0 1rem;
  padding: 1rem 0;
}
.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #e8dfc8;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  border-left: 4px solid #d4af37;
  padding-left: 0.9rem;
}
.timeline-scroll {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 1.5rem;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, #d4af37, rgba(212, 175, 55, 0.2));
  border-radius: 1px;
}
.timeline-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 0.55rem 0;
  position: relative;
  flex-wrap: wrap;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.47rem;
  top: 1rem;
  width: 9px;
  height: 9px;
  background: #0a0f1e;
  border: 2px solid #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}
.time-code {
  font-family: "SF Mono", "Cascadia Code", "Consolas", monospace;
  font-size: 0.85rem;
  color: #d4af37;
  font-weight: 700;
  min-width: 3.2em;
  letter-spacing: 0.02em;
}
.event-label {
  font-size: 0.93rem;
  color: #b8c4d8;
  flex: 1;
}
.episodes-slider {
  margin: 1.5rem 0 1rem;
  padding: 0.5rem 0 1rem;
  overflow: hidden;
}
.episodes-horizontal {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.8rem;
  -webkit-overflow-scrolling: touch;
}
.episode-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, #121b2d, #0c1424);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.episode-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
}
.episode-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4af37;
  opacity: 0.85;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.episode-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0ead8;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.episode-summary {
  font-size: 0.82rem;
  color: #9dabc1;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.episode-duration {
  font-size: 0.75rem;
  color: #d4af37;
  opacity: 0.8;
  letter-spacing: 0.04em;
}
.cast-avatars-grid {
  margin: 2rem 0 1rem;
  padding: 0.5rem 0;
}
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.8rem;
  align-items: start;
}
.avatar-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 0.8rem 0.5rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.avatar-item:hover {
  transform: scale(1.02);
  background: rgba(212, 175, 55, 0.05);
}
.avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.5rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background-color: #1a2338;
}
.avatar-item span {
  display: block;
  font-size: 0.88rem;
  color: #c3cede;
  letter-spacing: 0.03em;
}
.comments-masonry {
  margin: 2rem 0 1rem;
  padding: 0.5rem 0;
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
  column-gap: 0.8rem;
}
.comment-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 7px;
  padding: 0.9rem 1rem;
  border-left: 3px solid rgba(212, 175, 55, 0.5);
  break-inside: avoid;
  margin-bottom: 0.8rem;
}
.comment-author {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.comment-text {
  font-size: 0.9rem;
  color: #aeb9ce;
  line-height: 1.55;
}
.recommendation-region {
  margin: 2rem 0 1.5rem;
  padding: 0.5rem 0;
}
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.9rem;
  align-items: start;
}
.rec-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #0e162a;
  border-radius: 8px;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
  height: auto;
  align-self: start;
}
.rec-card:hover, .rec-card-h:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.rec-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 5px;
  background-color: #1a2338;
}
.rec-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0dcc8;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-top: auto;
}
.rec-blurb {
  font-size: 0.75rem;
  color: #8d9ab1;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.rec-card, a.rec-card-h {
  color: inherit;
  text-decoration: none;
}
.recommendation-horizontal {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.8rem;
}
.rec-card-h {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #0e162a;
  border-radius: 8px;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  align-self: flex-start;
}
.rec-card-h .rec-poster {
  aspect-ratio: 16 / 10;
}
.rec-card-h .rec-name {
  font-size: 0.85rem;
}
footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background-color: #080d18;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: #9aa7bd;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #d4af37;
}
.footer-link {
  display: inline-block;
}
.footer-content > a {
  margin-right: 1.2rem;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.8rem;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.friend-label {
  color: #8b98ae;
  letter-spacing: 0.04em;
}
.runtime-friend-link {
  color: #9db0cc;
  text-decoration: none;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.runtime-friend-link:hover {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.2);
  background-color: rgba(212, 175, 55, 0.04);
}
.disclaimer {
  font-size: 0.78rem;
  color: #6a768d;
  margin-top: 0.5rem;
  line-height: 1.5;
  max-width: 800px;
}
.player.theater-mode {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 1200px;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
.player.lights-dim {
  filter: brightness(0.65);
}
.player.fullscreen {
  background: #000;
}
.player.pip {
  
}
.player.mute {
  opacity: 0.9;
}
.player.volume {
  opacity: 0.95;
}
.player.speed {
  
}
.player.play {
  
}
.player.progress {
  cursor: pointer;
}
.player.click {
  cursor: pointer;
}
.player.light {
  filter: brightness(1.05);
}
@media (max-width: 1024px) {.overview-media {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
.poster-wrapper {
    max-width: 240px;
  }
.info-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
.comments-columns {
    grid-template-columns: 1fr;
  }}
@media (max-width: 768px) {html {
    font-size: 15px;
  }
main {
    padding: 0 0.9rem;
  }
.movie-overview {
    padding: 1rem 0.9rem;
  }
.overview-media {
    grid-template-columns: 1fr;
  }
.poster-wrapper {
    max-width: 200px;
  }
.info-columns {
    grid-template-columns: 1fr;
  }
.title-block {
    padding-bottom: 0.8rem;
  }
.movie-title {
    font-size: 1.4rem;
  }
.tagline {
    font-size: 0.95rem;
  }
.avatar-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
.comments-columns {
    grid-template-columns: 1fr;
  }
.episode-card {
    flex: 0 0 190px;
  }
.rec-card-h {
    flex: 0 0 170px;
  }
.player-controls {
    gap: 0.25rem;
  }
.player-controls button {
    font-size: 0.75rem;
    padding: 0.25rem 0.45rem;
  }
.player-progress {
    min-width: 60px;
  }}
@media (max-width: 480px) {.categories-bar {
    justify-content: flex-start;
  }
.episodes-horizontal, .recommendation-horizontal {
    gap: 0.6rem;
  }
.episode-card {
    flex: 0 0 165px;
    padding: 0.8rem;
  }
.rec-card-h {
    flex: 0 0 150px;
  }
.rec-card {
    padding: 0.5rem;
  }
.avatar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.avatar-img {
    width: 64px;
    height: 64px;
  }
.timeline-list {
    padding-left: 1.2rem;
  }
.timeline-item {
    gap: 0.4rem;
  }
.time-code {
    min-width: 2.8em;
  }
.detail-row {
    flex-direction: column;
    gap: 0.1rem;
  }
.detail-row dd {
    text-align: left;
  }
.status-meta {
    flex-direction: column;
    gap: 0.2rem;
  }
.player-controls {
    padding: 0.5rem;
  }
.player-progress {
    flex: 1 1 100%;
    order: 9;
    margin-top: 0.3rem;
  }}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.left-col, .right-col {
  min-width: 0;
}
.episodes-horizontal, .recommendation-horizontal {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #1a2338;
}
.episodes-horizontal::-webkit-scrollbar, .recommendation-horizontal::-webkit-scrollbar {
  height: 6px;
}
.episodes-horizontal::-webkit-scrollbar-track, .recommendation-horizontal::-webkit-scrollbar-track {
  background: #10182a;
  border-radius: 3px;
}
.episodes-horizontal::-webkit-scrollbar-thumb, .recommendation-horizontal::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 3px;
}

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}
