*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  background: #0d0a0a;
  color: #c9b8b0;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }
button, input { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; }
details summary { list-style: none; cursor: pointer; }
details summary::-webkit-details-marker { display: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 10, 10, 0.92);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(139, 69, 69, 0.4);
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.2rem;
  max-width: 1440px;
  margin: 0 auto;
}
a[data-contract="site-name"], .brand-link {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e8d5c3;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  border-left: 3px solid #8b2f2f;
  padding-left: 0.6rem;
  line-height: 1.2;
}
a[data-contract="site-name"]:hover, .brand-link:hover {
  color: #c9a227;
  text-decoration: none;
}
.categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem 0.8rem;
}
.runtime-category {
  font-size: 0.85rem;
  color: #b39b8c;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.runtime-category:hover {
  color: #e8b84b;
  background: rgba(139, 69, 69, 0.15);
  text-decoration: none;
}
.main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem 2rem;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  grid-template-areas:
    "poster info"
    "player player";
  gap: 1.2rem 1.5rem;
  background: linear-gradient(145deg, #1a1210 0%, #110b0a 100%);
  border: 1px solid rgba(139, 69, 69, 0.3);
  border-radius: 8px;
  padding: 1.5rem 1.8rem 1.8rem;
  margin-bottom: 2.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  position: relative;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.4;
}
.poster-column { grid-area: poster; align-self: start; }
.media-wrapper { position: relative; }
.poster-frame {
  border: 1px solid rgba(180, 130, 100, 0.4);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
  background: #0a0707;
}
.main-poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: sepia(0.3) contrast(1.05) brightness(0.85);
}
.info-column {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}
.title-tagline-group {
  border-bottom: 1px solid rgba(139, 69, 69, 0.35);
  padding-bottom: 0.6rem;
}
.movie-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ecd9c8;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.movie-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: #a08575;
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
}
.section-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-left: 3px solid #8b2f2f;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.synopsis-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.synopsis-paragraph {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #b5a398;
  text-align: justify;
}
.cast-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cast-card {
  background: rgba(139, 69, 69, 0.08);
  border: 1px solid rgba(139, 69, 69, 0.2);
  border-radius: 3px;
  padding: 0.35rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  flex: 0 1 auto;
}
.actor-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #dcc7b8;
  white-space: nowrap;
}
.actor-role {
  font-size: 0.75rem;
  color: #8f7a6d;
  white-space: nowrap;
}
.episode-status { margin-bottom: 0.2rem; }
.episode-meta-row {
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: #ab9486;
}
.episode-count-label, .episode-current {
  background: rgba(0,0,0,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  border-left: 2px solid #8b2f2f;
}
.episode-number-total, .episode-number-current {
  font-weight: 700;
  color: #e8b84b;
}
.episodes-fragment { min-width: 0; }
.episode-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.episode-item {
  background: rgba(0,0,0,0.2);
  border-left: 2px solid #6b2424;
  border-radius: 2px;
  overflow: hidden;
}
.episode-item[open] {
  border-left-color: #c9a227;
  background: rgba(139, 69, 69, 0.1);
}
.episode-summary {
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #d4bfae;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.episode-summary:hover { color: #e8b84b; }
.episode-summary::after {
  content: "▾";
  margin-left: auto;
  font-size: 0.7rem;
  color: #8b2f2f;
  transition: transform 0.2s;
}
.episode-item[open] .episode-summary::after { transform: rotate(180deg); }
.episode-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6em;
  height: 1.6em;
  background: #8b2f2f;
  color: #f0e0d0;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}
.episode-summary-text {
  padding: 0.3rem 0.7rem 0.6rem 2.5rem;
  font-size: 0.82rem;
  color: #a99486;
  line-height: 1.5;
  border-top: 1px solid rgba(139, 69, 69, 0.15);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.3rem 1rem;
}
.detail-item {
  display: flex;
  gap: 0.4rem;
  font-size: 0.82rem;
  padding: 0.25rem 0;
  border-bottom: 1px dotted rgba(139, 69, 69, 0.2);
}
.detail-item dt {
  color: #8f7a6d;
  font-weight: 600;
  flex-shrink: 0;
}
.detail-item dd {
  color: #cdb8a8;
  min-width: 0;
}
.player-wide-wrapper {
  grid-area: player;
  background: #050303;
  border-radius: 6px;
  border: 1px solid rgba(139, 69, 69, 0.4);
  overflow: hidden;
  min-width: 0;
}
.player-wide-wrapper video {
  display: block;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  background: #1a1210;
  border-top: 1px solid rgba(139, 69, 69, 0.3);
}
.player-controls button {
  font-size: 0.75rem;
  color: #b39b8c;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(139, 69, 69, 0.3);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.player-controls button:hover {
  background: #8b2f2f;
  color: #f0e0d0;
}
.player-controls input[type="range"] {
  width: 120px;
  accent-color: #c9a227;
  background: transparent;
  height: 1.2rem;
}
.player-controls input[type="range"]:first-of-type { flex: 1; min-width: 100px; }
.player.theater-mode { max-width: 100%; }
.main-content.lights-dim .movie-overview { background: #0a0605; }
.main-content.lights-dim .poster-frame, .main-content.lights-dim .player-wide-wrapper { opacity: 0.6; }
.timeline-section {
  margin-bottom: 2rem;
  background: rgba(139, 69, 69, 0.05);
  border-radius: 6px;
  padding: 1rem 1.2rem 1.2rem;
  border: 1px solid rgba(139, 69, 69, 0.2);
}
.timeline-scroll {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #8b2f2f #1a1210;
}
.timeline-scroll::-webkit-scrollbar { height: 6px; }
.timeline-scroll::-webkit-scrollbar-track { background: #1a1210; }
.timeline-scroll::-webkit-scrollbar-thumb { background: #8b2f2f; border-radius: 3px; }
.timeline-track {
  display: flex;
  gap: 0.8rem;
  min-width: max-content;
  padding: 0.3rem 0.2rem;
}
.timeline-entry {
  flex: 0 0 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139, 69, 69, 0.25);
  border-radius: 4px;
  padding: 0.6rem;
  border-top: 2px solid #8b2f2f;
}
.timecode {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: #c9a227;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.timeline-entry p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #ab9486;
}
.critic-reviews {
  margin-bottom: 2rem;
}
.critic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.8rem;
}
.critic-quote {
  background: rgba(139, 69, 69, 0.08);
  border-left: 4px solid #c9a227;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
  color: #cdb8a8;
  border-radius: 0 4px 4px 0;
}
.critic-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-style: normal;
  color: #8f7a6d;
  text-align: right;
}
.user-comments {
  margin-bottom: 2rem;
}
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem;
}
.comment-item {
  background: #1a1210;
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(139, 69, 69, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.comment-nick {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comment-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #b5a398;
}
.recommendation-region {
  margin-bottom: 2rem;
}
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
}
.recommendation-region:first-of-type .recommendation-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
a.recommendation-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: #1a1210;
  border: 1px solid rgba(139, 69, 69, 0.25);
  border-radius: 4px;
  padding: 0.6rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  color: #cdb8a8;
  text-decoration: none;
  height: auto;
  align-self: start;
}
a.recommendation-card:hover {
  border-color: #c9a227;
  transform: translateY(-2px);
  background: #201614;
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  background: #0a0707;
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e0ccbc;
  line-height: 1.3;
  margin-top: 0.2rem;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 0.75rem;
  color: #8f7a6d;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 1.2rem 2.5rem;
  border-top: 1px solid rgba(139, 69, 69, 0.3);
  background: linear-gradient(to top, #0a0707, #0d0a0a);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: #6e5f56;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0.5rem 0.8rem;
  background: rgba(139, 69, 69, 0.1);
  border-left: 2px solid #8b2f2f;
  border-radius: 0 3px 3px 0;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.82rem;
  color: #a08575;
  text-decoration: none;
  transition: color 0.2s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #c9a227;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.8rem;
  font-size: 0.75rem;
}
.friend-label {
  color: #6e5f56;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
a.runtime-friend-link {
  color: #8f7a6d;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: #c9a227;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 900px) {.movie-overview {
    grid-template-columns: 1fr;
    grid-template-areas:
      "poster"
      "info"
      "player";
    gap: 1rem;
    padding: 1rem;
  }
.poster-column {
    max-width: 260px;
    margin: 0 auto;
  }
.info-column {
    gap: 1rem;
  }
.player-wide-wrapper {
    min-width: 0;
  }
.player-controls input[type="range"]:first-of-type { width: 100%; }
.timeline-entry { flex-basis: 200px; }}
@media (max-width: 600px) {.header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
  }
.categories-wrapper {
    justify-content: flex-start;
    width: 100%;
  }
.main-content {
    padding: 0.5rem 0.8rem 1.5rem;
  }
.movie-overview {
    padding: 0.8rem;
    border-radius: 6px;
  }
.movie-title {
    font-size: 1.3rem;
  }
.synopsis-paragraph {
    font-size: 0.82rem;
  }
.cast-card-list {
    flex-direction: column;
    align-items: stretch;
  }
.cast-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
.details-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.6rem;
  }
.player-controls {
    gap: 0.3rem;
  }
.player-controls button {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
.player-controls input[type="range"] {
    width: 80px;
  }
.timeline-section {
    padding: 0.8rem;
  }
.timeline-entry {
    flex-basis: 180px;
  }
.critic-grid, .comments-grid {
    grid-template-columns: 1fr;
  }
.recommendation-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
  }
.recommendation-region:first-of-type .recommendation-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
a.recommendation-card {
    padding: 0.4rem;
  }
[data-runtime="recommendation"] [data-runtime="name"] {
    font-size: 0.8rem;
  }
[data-runtime="recommendation"] [data-runtime="blurb"] {
    font-size: 0.7rem;
    -webkit-line-clamp: 3;
  }
.site-footer {
    padding: 1rem 0.8rem 2rem;
  }
.friend-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem 0.5rem;
  }
.footer-links {
    gap: 0.8rem;
  }}
@media (max-width: 400px) {.details-list {
    grid-template-columns: 1fr;
  }
.player-controls input[type="range"] {
    width: 60px;
  }
.player-controls input[type="range"]:first-of-type {
    width: 100%;
  }
.recommendation-grid {
    grid-template-columns: 1fr 1fr;
  }
.episode-summary {
    font-size: 0.8rem;
  }
.episode-summary-text {
    padding-left: 1.8rem;
  }}

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}
