*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #1a1e24;
  color: #e8e6e3;
  min-height: 100vh;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}
header {
  background: #14171c;
  border-bottom: 2px solid #e0762a;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.brand-link {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #f2ede6;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.brand-link:hover {
  color: #e0762a;
}
a[data-contract="site-name"] {
  color: #f2ede6;
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: #e0762a;
}
.categories-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  overflow-x: auto;
}
.runtime-category {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b8b2ac;
  border: 1px solid #3a3f47;
  border-radius: 20px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
  background: #1d2229;
}
.runtime-category:hover {
  color: #1a1e24;
  background: #e0762a;
  border-color: #e0762a;
}
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.movie-overview-shell {
  background: #1d2229;
  margin: 1.5rem 0 2rem;
  border: 1px solid #2d323a;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 2rem;
  padding: 2rem;
}
.poster-column {
  align-self: start;
}
.poster-wrapper {
  width: 100%;
  max-width: 300px;
  background: #14171c;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #2d323a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.main-poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.movie-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #f2ede6;
  letter-spacing: 0.02em;
}
.movie-tagline {
  font-size: 1rem;
  color: #e0762a;
  font-weight: 500;
  margin-top: -0.75rem;
}
.details-panel {
  background: #171b21;
  border-radius: 6px;
  border: 1px solid #2d323a;
  padding: 0.75rem 1rem;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.5rem 1rem;
}
.detail-item {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.875rem;
}
.detail-item dt {
  color: #8a8680;
  font-weight: 500;
  white-space: nowrap;
}
.detail-item dd {
  color: #e8e6e3;
  font-weight: 600;
  margin: 0;
}
.synopsis-block {
  padding: 1rem 0;
  border-top: 1px solid #2d323a;
}
.section-subheading {
  font-size: 1rem;
  font-weight: 700;
  color: #e0762a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.synopsis-paragraph {
  font-size: 0.925rem;
  line-height: 1.65;
  color: #b8b2ac;
  margin-bottom: 0.6rem;
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
}
.cast-block {
  padding: 1rem 0;
  border-top: 1px solid #2d323a;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}
.cast-item {
  font-size: 0.95rem;
  color: #e8e6e3;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background: #252b33;
  border-radius: 4px;
  border-left: 3px solid #e0762a;
}
.episode-status-block {
  padding: 1rem 0;
  border-top: 1px solid #2d323a;
}
.episode-progress-panel {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background: #171b21;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: 1px solid #2d323a;
}
.episode-current-label {
  font-size: 0.875rem;
  color: #8a8680;
}
.episode-current-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e0762a;
  letter-spacing: 0.03em;
}
.episode-total-label {
  font-size: 0.875rem;
  color: #8a8680;
}
.player-wrapper {
  width: 100%;
  min-width: 0;
  background: #14171c;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #2d323a;
}
.player-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  background: #171b21;
  border-top: 1px solid #2d323a;
  flex-wrap: wrap;
}
.ctrl-btn {
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  background: #252b33;
  border: 1px solid #3a3f47;
  border-radius: 4px;
  cursor: pointer;
  color: #c9c4bd;
  white-space: nowrap;
  transition: all 0.15s;
}
.ctrl-btn:hover {
  background: #e0762a;
  border-color: #e0762a;
  color: #14171c;
}
.ctrl-progress {
  flex: 1 1 120px;
  min-width: 80px;
  height: 4px;
  background: #3a3f47;
  border-radius: 2px;
  cursor: pointer;
  appearance: none;
}
.ctrl-progress::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e0762a;
  cursor: pointer;
}
.ctrl-volume {
  width: 70px;
  height: 4px;
  background: #3a3f47;
  border-radius: 2px;
  cursor: pointer;
  appearance: none;
}
.ctrl-volume::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0762a;
  cursor: pointer;
}
.ctrl-speed {
  background: #252b33;
  border: 1px solid #3a3f47;
  color: #c9c4bd;
  padding: 0.2rem 0.4rem;
  font-size: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}
.section-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f2ede6;
  letter-spacing: 0.03em;
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #e0762a;
  display: inline-block;
}
.timeline-section {
  padding: 1rem 0 2rem;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem 1.5rem;
  padding-left: 1.5rem;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #e0762a 0%, #3a3f47 100%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: #1d2229;
  border: 1px solid #2d323a;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 118, 42, 0.15);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 1rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0762a;
  border: 2px solid #1a1e24;
  transform: translateX(-50%);
}
.timeline-timecode {
  font-size: 0.75rem;
  color: #e0762a;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.timeline-label {
  font-size: 0.9rem;
  color: #c9c4bd;
  line-height: 1.4;
}
.episodes-section {
  padding: 0 0 2rem;
}
.episodes-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #1d2229;
  border: 1px solid #2d323a;
  border-radius: 6px;
  padding: 1rem;
  min-height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.episode-card:hover {
  border-color: #e0762a;
  box-shadow: 0 4px 16px rgba(224, 118, 42, 0.12);
}
.episode-number {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0762a;
  color: #14171c;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 4px;
}
.episode-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f2ede6;
}
.episode-summary {
  font-size: 0.85rem;
  color: #9a958e;
  line-height: 1.5;
  flex: 1;
}
.episode-duration {
  font-size: 0.75rem;
  color: #6d6963;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comments-section {
  padding: 0 0 2rem;
}
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.85rem;
}
.comment-card {
  background: #1d2229;
  border: 1px solid #2d323a;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.comment-nickname {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e0762a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.comment-nickname::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #e0762a;
  border-radius: 2px;
}
.comment-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #c9c4bd;
}
.recommend-region {
  padding: 0 0 2rem;
}
.recommend-region .section-heading {
  margin-bottom: 1rem;
}
.recommend-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  background: #1d2229;
  border: 1px solid #2d323a;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
a.recommend-card:hover {
  transform: translateY(-3px);
  border-color: #e0762a;
  box-shadow: 0 6px 20px rgba(224, 118, 42, 0.18);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #14171c;
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f2ede6;
  padding: 0.6rem 0.75rem 0.2rem;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 0.8rem;
  color: #9a958e;
  padding: 0 0.75rem 0.75rem;
  line-height: 1.4;
  flex: 1;
}
footer {
  background: #14171c;
  border-top: 3px solid #e0762a;
  padding: 2rem 1.25rem 2.5rem;
  margin-top: 2rem;
}
.footer-disclaimer {
  max-width: 1400px;
  margin: 0 auto 1.5rem;
  font-size: 0.8rem;
  color: #6d6963;
  line-height: 1.6;
}
.footer-nav {
  max-width: 1400px;
  margin: 0 auto 1.5rem;
  display: flex;
  gap: 1.5rem;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.875rem;
  color: #c9c4bd;
  text-decoration: none;
  transition: color 0.2s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #e0762a;
}
.friend-links {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  align-items: center;
}
.friend-links-label {
  font-size: 0.8rem;
  color: #8a8680;
  font-weight: 600;
}
a.runtime-friend-link {
  font-size: 0.8rem;
  color: #8a8680;
  text-decoration: none;
  transition: color 0.2s;
}
a.runtime-friend-link:hover {
  color: #e0762a;
  text-decoration: underline;
}
.theater-mode .player-wrapper {
  max-width: 100%;
  border-radius: 0;
}
.lights-low {
  filter: brightness(0.85);
}
.lights-low .movie-overview-shell, .lights-low .timeline-section, .lights-low .episodes-section, .lights-low .comments-section, .lights-low .recommend-region {
  box-shadow: none;
}
.player:hover .player-controls {
  background: #1d2229;
}
.player.play .ctrl-btn[data-player-action="play"] {
  background: #e0762a;
  color: #14171c;
}
.player.mute .ctrl-btn[data-player-action="mute"] {
  background: #e0762a;
  color: #14171c;
}
.player.speed .ctrl-speed {
  border-color: #e0762a;
}
.player.progress .ctrl-progress {
  background: #e0762a;
}
.player.volume .ctrl-volume {
  background: #e0762a;
}
.player.fullscreen .ctrl-btn[data-player-action="fullscreen"] {
  background: #e0762a;
  color: #14171c;
}
.player.theater .ctrl-btn[data-player-action="theater"] {
  background: #e0762a;
  color: #14171c;
}
.player.loadedmetadata .ctrl-progress {
  border-color: #3a3f47;
}
.player.timeupdate .ctrl-progress {
  border-color: #e0762a;
}
.player.pip .ctrl-btn[data-player-action="pip"] {
  background: #e0762a;
  color: #14171c;
}
.player.light .ctrl-btn[data-player-action="light"] {
  background: #e0762a;
  color: #14171c;
}
@media (max-width: 900px) {.hero-layout {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
.poster-column {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
.poster-wrapper {
    max-width: 100%;
  }
.info-column {
    gap: 1.25rem;
  }
.movie-title {
    font-size: 1.6rem;
  }
.timeline-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }}
@media (max-width: 640px) {main {
    padding: 0 0.75rem;
  }
.main-nav {
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
  }
.hero-layout {
    padding: 1rem;
    gap: 1rem;
  }
.poster-column {
    max-width: 260px;
  }
.movie-title {
    font-size: 1.35rem;
  }
.details-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.4rem 0.75rem;
  }
.detail-item {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 0.1rem;
  }
.player-controls {
    gap: 0.3rem;
    padding: 0.5rem;
  }
.ctrl-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
  }
.ctrl-progress {
    min-width: 60px;
    flex-basis: 100px;
  }
.ctrl-volume {
    width: 50px;
  }
.section-heading {
    font-size: 1.25rem;
    margin: 1.75rem 0 1rem;
  }
.timeline-list {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
.episodes-scroll, .comments-grid, .recommend-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
.episode-card {
    padding: 0.85rem;
  }
.cast-list {
    gap: 0.4rem 0.6rem;
  }
.cast-item {
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
  }
.footer-nav {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
.friend-links {
    gap: 0.3rem 1rem;
  }}
@media (max-width: 400px) {html {
    font-size: 14px;
  }
.movie-title {
    font-size: 1.2rem;
  }
.episode-progress-panel {
    flex-wrap: wrap;
  }
.episode-current-number {
    font-size: 1.25rem;
  }
.ctrl-btn {
    font-size: 0.7rem;
    padding: 0.2rem 0.35rem;
  }}

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}
