*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #060a14;
  color: #c8d6e5;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #00e5ff70 transparent;
}
.brand-link {
  color: #00e5ff;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}
.brand-link:hover {
  color: #ffffff;
  text-shadow: 0 0 16px #00e5ff, 0 0 32px #00e5ff;
}
.categories-bar {
  display: flex;
  gap: 0.2rem;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow-x: visible;
}
.categories-bar .runtime-category {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  color: #7a8ba8;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}
.categories-bar .runtime-category:hover {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
  text-decoration: none;
}
.main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.movie-overview-panel {
  position: relative;
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, #060a14 0%, #0a1220 100%);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 229, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(0, 229, 255, 0.03) 0px, transparent 2px, transparent 40px, rgba(0, 229, 255, 0.02) 41px);
  pointer-events: none;
  z-index: 0;
}
.overview-content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: start;
}
.info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.35), 0 0 60px rgba(0, 229, 255, 0.15);
}
.hero-tagline {
  font-size: 1.1rem;
  color: #00e5ff;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
  border-left: 3px solid #00e5ff;
  padding-left: 0.8rem;
}
.cast-module {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cast-label {
  font-size: 0.75rem;
  color: #607a99;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  position: relative;
}
.cast-avatar {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cast-item:hover .cast-avatar {
  border-color: #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
  transform: translateY(-2px);
}
.cast-name {
  font-size: 0.75rem;
  color: #8fa5c0;
  transition: color 0.3s;
}
.cast-item:hover .cast-name {
  color: #00e5ff;
}
.cast-item::after {
  content: attr(data-quote);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%) scale(0);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #d5f7ff;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
  z-index: 5;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.cast-item:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
.synopsis-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-subhead {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  border-left: 3px solid #00e5ff;
  padding-left: 0.6rem;
  margin-bottom: 0.2rem;
}
.synopsis-text {
  font-size: 0.85rem;
  color: #9fb3c8;
  line-height: 1.7;
  text-align: justify;
}
.episode-status-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
}
.status-label {
  font-size: 0.7rem;
  color: #607a99;
  padding: 0.15rem 0.4rem;
  background: rgba(0, 229, 255, 0.15);
  border-radius: 3px;
  font-weight: 600;
}
.status-current {
  font-size: 0.85rem;
  color: #00e5ff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}
.status-divider {
  color: #40536e;
}
.status-total {
  font-size: 0.8rem;
  color: #7a8ba8;
}
.meta-details-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0.5rem 1rem;
}
.detail-item {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
}
.detail-term {
  font-size: 0.7rem;
  color: #4d6078;
}
.detail-value {
  font-size: 0.8rem;
  color: #a8bcd4;
}
.detail-value.rating {
  color: #00e5ff;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}
.poster-player-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.main-poster-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.2);
}
.player-shell {
  width: 100%;
  min-width: 0;
  background: #0a101c;
  border-radius: 10px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.player-shell video {
  display: block;
  background: #000;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: rgba(10, 16, 28, 0.95);
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  flex-wrap: wrap;
}
.player-controls button {
  font-size: 0.8rem;
  color: #8fa5c0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.player-controls button:hover {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
}
.progress-indicator {
  font-size: 0.75rem;
  color: #7a8ba8;
  font-family: monospace;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}
.episodes-section {
  padding: 2.5rem 0 1.5rem;
}
.section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  display: inline-block;
  border-bottom: 2px solid #00e5ff;
  padding-bottom: 0.3rem;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.episode-card {
  background: rgba(10, 18, 32, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "num title dur"
    "num summary summary";
  gap: 0.2rem 0.8rem;
  align-items: start;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.episode-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.1);
}
.episode-number {
  grid-area: num;
  font-size: 1.4rem;
  font-weight: 800;
  color: #00e5ff;
  opacity: 0.7;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}
.episode-title {
  grid-area: title;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.episode-duration {
  grid-area: dur;
  font-size: 0.7rem;
  color: #607a99;
  text-align: right;
  align-self: center;
}
.episode-summary {
  grid-area: summary;
  font-size: 0.8rem;
  color: #7a8ba8;
  line-height: 1.5;
}
.episode-more-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #4d6078;
  border: 1px dashed rgba(0, 229, 255, 0.2);
  padding: 0.5rem;
  border-radius: 6px;
}
.timeline-section {
  padding: 1.5rem 0 2.5rem;
}
.timeline-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #00e5ff40 #0a101c;
  padding-bottom: 0.8rem;
}
.timeline-track {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  padding: 0.5rem 0;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.8rem 1rem;
  background: rgba(10, 18, 32, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 8px;
  min-width: 220px;
  position: relative;
  border-top: 2px solid #00e5ff;
}
.timecode {
  font-size: 0.7rem;
  color: #00e5ff;
  font-family: monospace;
  font-weight: 600;
}
.timeline-label {
  font-size: 0.85rem;
  color: #a8bcd4;
  line-height: 1.4;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.02rem;
  top: 50%;
  width: 1.02rem;
  height: 2px;
  background: #00e5ff40;
}
.timeline-item:first-child::before {
  display: none;
}
.comments-section {
  padding: 2.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.comment-card {
  display: flex;
  gap: 0.8rem;
  background: rgba(10, 18, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s;
}
.comment-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
}
.comment-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5ff20, #00e5ff05);
  border: 1px solid #00e5ff40;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #00e5ff;
  flex-shrink: 0;
}
.comment-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.comment-nickname {
  font-size: 0.8rem;
  color: #00e5ff;
  font-weight: 600;
}
.comment-text {
  font-size: 0.85rem;
  color: #9fb3c8;
  line-height: 1.5;
}
.recommendation-region {
  padding: 1.5rem 0;
}
.recommendation-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  border-left: 3px solid #00e5ff;
  padding-left: 0.7rem;
}
.recommendation-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem;
}
.recommendation-row.wide-row {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.rec-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(10, 18, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.6rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  color: inherit;
  text-decoration: none;
}
.rec-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: #0a101c;
}
.rec-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: #0a101c;
}
.rec-card [data-runtime="name"] {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}
.rec-card [data-runtime="blurb"] {
  font-size: 0.75rem;
  color: #7a8ba8;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.closing-slogan {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #00e5ff;
  letter-spacing: 0.3em;
  padding: 3rem 0 2.5rem;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.site-footer {
  background: linear-gradient(180deg, #0a101c 0%, #060a14 100%);
  padding: 2rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-contract {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #4d6078;
  max-width: 600px;
}
.footer-contract a {
  color: #7a8ba8;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-contract a:hover {
  color: #00e5ff;
  text-decoration: underline;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.friend-label {
  font-size: 0.75rem;
  color: #4d6078;
  margin-right: 0.3rem;
}
.runtime-friend-link {
  font-size: 0.8rem;
  color: #7a8ba8;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  background: rgba(0, 229, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(0, 229, 255, 0.08);
  transition: all 0.3s;
}
.runtime-friend-link:hover {
  color: #00e5ff;
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.1);
  text-decoration: none;
}
body.lights-out .main-container {
  opacity: 0.3;
  filter: blur(4px);
  transition: all 0.4s;
}
body.theater-mode .poster-player-wrapper {
  max-width: 100%;
}
body.theater-mode .player-shell {
  max-width: 100%;
}
video.playing {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}
video.muted {
  opacity: 0.8;
}
.categories-bar .runtime-category {
  color: #7a8ba8;
  text-decoration: none;
}
.categories-bar .runtime-category:hover {
  color: #00e5ff;
  text-decoration: none;
}
@media (max-width: 1024px) {.overview-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
.poster-player-wrapper {
    order: -1;
    max-width: 600px;
  }
.episode-grid {
    grid-template-columns: 1fr;
  }
.meta-details-grid {
    grid-template-columns: repeat(2, auto);
  }}
@media (max-width: 768px) {.site-header {
    padding: 0.4rem 0.8rem;
    gap: 0.8rem;
  }
.brand-link {
    font-size: 1.1rem;
  }
.main-container {
    padding: 0 0.8rem;
  }
.movie-overview-panel {
    padding: 1.5rem 0 1.2rem;
  }
.overview-content-grid {
    gap: 1.2rem;
  }
.hero-title {
    font-size: 1.8rem;
  }
.hero-tagline {
    font-size: 0.95rem;
  }
.cast-list {
    gap: 0.6rem;
  }
.cast-avatar {
    width: 3rem;
    height: 3rem;
  }
.meta-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
.detail-item {
    flex-direction: column;
    gap: 0.1rem;
  }
.episode-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num title"
      "num summary"
      "dur dur";
  }
.episode-duration {
    text-align: left;
    padding-left: 2.2rem;
  }
.recommendation-row {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.6rem;
  }
.recommendation-row.wide-row {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
.site-footer {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0.8rem;
  }
.closing-slogan {
    font-size: 1.1rem;
    padding: 2rem 0 1.5rem;
  }
.timeline-item {
    min-width: 180px;
  }
.categories-bar .runtime-category {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }}
@media (max-width: 480px) {.overview-content-grid {
    grid-template-columns: 1fr;
  }
.player-shell {
    min-width: 0;
    width: 100%;
  }
.player-shell video {
    aspect-ratio: 16 / 9;
  }
.recommendation-row {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
.cast-avatar {
    width: 2.6rem;
    height: 2.6rem;
  }
.cast-name {
    font-size: 0.7rem;
  }
.episode-more-note {
    font-size: 0.75rem;
  }
.progress-indicator {
    font-size: 0.65rem;
  }
.player-controls {
    gap: 0.2rem;
    padding: 0.3rem 0.4rem;
  }
.player-controls button {
    padding: 0.2rem 0.3rem;
    font-size: 0.7rem;
  }
.comment-card {
    flex-direction: row;
    padding: 0.6rem 0.7rem;
  }
.comment-avatar {
    width: 2.2rem;
    height: 2.2rem;
  }
.cast-item::after {
    font-size: 0.6rem;
    white-space: normal;
    width: 140px;
    text-align: center;
  }}
::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0a101c;
}
::-webkit-scrollbar-thumb {
  background: #00e5ff40;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00e5ff80;
}

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}
