*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0a0e17;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 120, 120, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 80, 120, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0d1320 0%, #0a1118 40%, #070c12 100%);
  color: #c8d3dc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 32% 42%, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 55% 22%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 78% 55%, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 21% 72%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 65% 88%, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 320px 320px, 280px 280px, 340px 340px, 300px 300px, 260px 260px, 350px 350px, 290px 290px, 310px 310px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: bgDrift 120s linear infinite alternate;
}
@keyframes bgDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-30px, 20px); }
}
body > * {
  position: relative;
  z-index: 1;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 12px 20px;
  background: rgba(10, 14, 23, 0.85);
  border-bottom: 1px solid rgba(0, 180, 160, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}
a[data-contract="site-name"].brand-link {
  color: #00b8a0;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(0, 184, 160, 0.4);
}
a[data-contract="site-name"].brand-link:hover {
  color: #00d4bb;
  text-decoration: underline;
  text-underline-offset: 4px;
}
nav[data-contract="categories"] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  align-items: center;
}
a.runtime-category {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(0, 180, 160, 0.3);
  border-radius: 3px;
  background: rgba(0, 180, 160, 0.08);
  color: #7fd4c8;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
a.runtime-category:hover {
  background: rgba(0, 180, 160, 0.2);
  color: #00d4bb;
  border-color: #00b8a0;
}
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px 32px;
  display: flow-root;
}
.movie-shell {
  background: linear-gradient(135deg, #111a28 0%, #0c1420 60%, #0a1118 100%);
  border: 1px solid rgba(0, 180, 160, 0.15);
  border-left: 3px solid #ff7f3f;
  border-radius: 4px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  gap: 0;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.movie-shell::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: 
    linear-gradient(rgba(0, 180, 160, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 160, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.poster-wrap {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
  padding: 0 16px 0 0;
  align-self: start;
  position: relative;
  z-index: 1;
}
.poster-wrap img {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  display: block;
}
.cast-module {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  padding: 16px 16px 0 0;
  position: relative;
  z-index: 1;
}
.cast-module .section-title {
  color: #00b8a0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 180, 160, 0.2);
}
.actor-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 0;
}
.actor-item {
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(0, 180, 160, 0.15), rgba(255, 127, 63, 0.1));
  border: 1px solid rgba(0, 180, 160, 0.3);
  color: #b8d8d0;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.actor-item:hover {
  background: rgba(255, 127, 63, 0.2);
  border-color: rgba(255, 127, 63, 0.5);
  color: #ffb78a;
  transform: translateY(-2px);
}
.synopsis-block {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding: 0 0 16px 0;
  position: relative;
  z-index: 1;
}
.synopsis-block .section-title {
  color: #ff7f3f;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 127, 63, 0.3);
  display: inline-block;
}
.synopsis-para {
  color: #a8b8c0;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: justify;
}
.synopsis-para::first-letter {
  color: #ff7f3f;
  font-weight: 700;
}
.player-container {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  padding: 0 0 12px 0;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.player-container video {
  display: block;
  background: #05080d;
  border: 1px solid rgba(255, 127, 63, 0.3);
  border-radius: 2px;
  min-height: 200px;
  object-fit: cover;
}
.player-container video.theater-mode {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  object-fit: contain;
  background: #000;
  z-index: 1000;
  border: none;
  border-radius: 0;
}
.player-container video.lights-off {
  filter: brightness(0.3);
  transition: filter 0.3s ease;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  padding: 8px;
  background: rgba(255, 127, 63, 0.05);
  border: 1px solid rgba(255, 127, 63, 0.15);
  border-radius: 2px;
}
.player-controls button {
  background: transparent;
  border: 1px solid rgba(200, 211, 220, 0.3);
  color: #a8b8c0;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.player-controls button:hover {
  background: rgba(255, 127, 63, 0.2);
  border-color: #ff7f3f;
  color: #ffb78a;
}
.episode-status-chip {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  padding: 12px 16px 0 0;
  position: relative;
  z-index: 1;
}
.status-label {
  color: #7fd4c8;
  font-size: 0.8rem;
}
.status-current {
  color: #ff7f3f;
  font-weight: 700;
  font-size: 1rem;
  padding: 2px 8px;
  background: rgba(255, 127, 63, 0.15);
  border: 1px solid rgba(255, 127, 63, 0.4);
  border-radius: 3px;
  margin: 0 4px;
}
.status-total {
  color: #7a8a95;
  font-size: 0.8rem;
}
.detail-meta {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  padding: 12px 0 0 0;
  border-top: 1px solid rgba(0, 180, 160, 0.15);
  position: relative;
  z-index: 1;
}
.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 16px;
  margin: 0;
}
.meta-row {
  display: flex;
  gap: 6px;
  font-size: 0.8rem;
}
.meta-row dt {
  color: #00b8a0;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(0, 184, 160, 0.8);
}
.meta-row dd {
  color: #a8b8c0;
  margin: 0;
}
.episode-section {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 180, 160, 0.2);
}
.episode-section .section-title {
  color: #00b8a0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid #ff7f3f;
  text-transform: uppercase;
}
.episode-scroller {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 4px;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(0, 180, 160, 0.05) 50%, transparent 100%);
  border-radius: 4px;
}
.episode-card {
  background: #0f1725;
  border: 1px solid rgba(0, 180, 160, 0.2);
  border-radius: 3px;
  padding: 12px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.episode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 127, 63, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.ep-number {
  color: #ff7f3f;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(255, 127, 63, 0.3);
  padding-bottom: 4px;
}
.ep-title {
  color: #e8f0f5;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}
.ep-summary {
  color: #8fa0ab;
  font-size: 0.75rem;
  line-height: 1.5;
  flex: 1;
}
.ep-duration {
  color: #7fd4c8;
  font-size: 0.7rem;
  font-weight: 500;
}
.clue-icon {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 1.2rem;
  opacity: 0.6;
  filter: grayscale(0.3);
  transition: opacity 0.2s, transform 0.2s;
}
.episode-card:hover .clue-icon {
  opacity: 1;
  transform: scale(1.2);
}
.timeline-section {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 180, 160, 0.2);
  position: relative;
}
.timeline-section .section-title {
  color: #ff7f3f;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 3px solid #00b8a0;
  text-transform: uppercase;
}
.timeline-warp {
  position: relative;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.timeline-warp::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 127, 63, 0.5), rgba(0, 180, 160, 0.5), transparent);
  transform: translateX(-50%);
  border-radius: 2px;
}
.timeline-node {
  width: calc(50% - 30px);
  padding: 12px 16px;
  background: #0f1725;
  border: 1px solid rgba(0, 180, 160, 0.25);
  border-radius: 3px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.timeline-node:hover {
  border-color: rgba(255, 127, 63, 0.5);
  background: #131c2b;
}
.timeline-node.left {
  align-self: flex-start;
  margin-left: 0;
  margin-right: auto;
}
.timeline-node.left::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: rgba(255, 127, 63, 0.4);
  transform: translateY(-50%);
}
.timeline-node.right {
  align-self: flex-end;
  margin-left: auto;
  margin-right: 0;
}
.timeline-node.right::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: rgba(0, 180, 160, 0.4);
  transform: translateY(-50%);
}
.time-code {
  display: block;
  color: #ff7f3f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-family: "SF Mono", Monaco, Consolas, "Liberation Mono", monospace;
}
.time-label {
  color: #c8d3dc;
  font-size: 0.85rem;
  line-height: 1.4;
}
.cast-deep-section {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 180, 160, 0.2);
}
.cast-deep-section .section-title {
  color: #00b8a0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid #ff7f3f;
  text-transform: uppercase;
}
.actor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.actor-card {
  background: linear-gradient(135deg, #0f1725 0%, #111a28 100%);
  border: 1px solid rgba(0, 180, 160, 0.2);
  border-radius: 3px;
  padding: 14px;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.actor-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 127, 63, 0.4);
}
.actor-card h3 {
  color: #e8f0f5;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  border-bottom: 1px solid rgba(255, 127, 63, 0.3);
  padding-bottom: 6px;
}
.actor-card p {
  color: #7fd4c8;
  font-size: 0.8rem;
  margin: 0;
}
.actor-card .actor-bio {
  color: #8fa0ab;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 4px;
}
.comments-section {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 180, 160, 0.2);
}
.comments-section .section-title {
  color: #ff7f3f;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid #00b8a0;
  text-transform: uppercase;
}
.comment-bubble {
  background: #0f1725;
  border: 1px solid rgba(0, 180, 160, 0.15);
  border-radius: 12px 12px 12px 4px;
  padding: 12px 14px;
  margin-bottom: 10px;
  position: relative;
  border-left: 3px solid rgba(255, 127, 63, 0.5);
  display: block;
}
.comment-bubble::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: #0f1725;
  border-right: 1px solid rgba(0, 180, 160, 0.15);
  border-bottom: 1px solid rgba(0, 180, 160, 0.15);
  transform: rotate(45deg);
}
.comment-nick {
  display: block;
  color: #00b8a0;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.comment-text {
  color: #a8b8c0;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.recommend-block {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 180, 160, 0.2);
}
.recommend-block .section-title {
  color: #00b8a0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid #ff7f3f;
  text-transform: uppercase;
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  background: #0f1725;
  border: 1px solid rgba(0, 180, 160, 0.15);
  border-radius: 3px;
  padding: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  gap: 6px;
  height: auto;
}
a[data-runtime="recommendation"]:hover {
  border-color: rgba(255, 127, 63, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  background: #1a2430;
}
a[data-runtime="recommendation"] > span[data-runtime="name"] {
  color: #e8f0f5;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}
a[data-runtime="recommendation"] > span[data-runtime="blurb"] {
  color: #7a8a95;
  font-size: 0.7rem;
  line-height: 1.4;
  display: block;
  flex: 1;
}
footer {
  background: #080c14;
  border-top: 1px solid rgba(0, 180, 160, 0.2);
  padding: 24px 20px;
  margin-top: 24px;
  position: relative;
}
.disclaimer-text {
  color: #5a6a75;
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 16px;
  border-left: 2px solid rgba(255, 127, 63, 0.3);
  padding-left: 12px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 16px;
}
.friend-label {
  color: #00b8a0;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 4px;
}
a.runtime-friend-link {
  color: #7fd4c8;
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
a.runtime-friend-link:hover {
  color: #ffb78a;
  border-bottom-color: #ff7f3f;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  display: inline-block;
  color: #7a8a95;
  font-size: 0.8rem;
  text-decoration: none;
  margin-right: 16px;
  transition: color 0.2s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #ff7f3f;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1024px) {.movie-shell {
    grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  }
.actor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
.episode-scroller {
    grid-template-columns: repeat(3, 1fr);
  }
.meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }}
@media (max-width: 768px) {.movie-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
.poster-wrap {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 0;
    max-width: 200px;
    margin: 0 auto;
  }
.poster-wrap img {
    max-width: 200px;
  }
.cast-module {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding: 8px 0 0;
  }
.synopsis-block {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    padding: 0;
  }
.player-container {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    padding: 0;
  }
.episode-status-chip {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
    padding: 8px 0 0;
  }
.detail-meta {
    grid-column: 1 / 2;
    grid-row: 6 / 7;
    padding: 12px 0 0;
  }
.episode-scroller {
    grid-template-columns: repeat(2, 1fr);
  }
.actor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.timeline-node {
    width: calc(90% - 20px);
  }
.timeline-warp::before {
    left: 10px;
    transform: none;
  }
.timeline-node.left, .timeline-node.right {
    align-self: flex-start;
    margin-left: 24px;
    margin-right: 0;
  }
.timeline-node.left::after, .timeline-node.right::after {
    left: -18px;
    right: auto;
    width: 18px;
    background: rgba(255, 127, 63, 0.4);
  }
.timeline-node.right::after {
    background: rgba(0, 180, 160, 0.4);
  }
.meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
  }
header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
nav[data-contract="categories"] {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
a.runtime-category {
    flex-shrink: 0;
  }}
@media (max-width: 480px) {main {
    padding: 12px;
  }
.movie-shell {
    padding: 12px;
  }
.episode-scroller {
    grid-template-columns: 1fr;
  }
.actor-grid {
    grid-template-columns: 1fr;
  }
.meta-grid {
    grid-template-columns: 1fr;
  }
.rec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.timeline-node {
    width: calc(85% - 20px);
    padding: 10px 12px;
  }
.comment-bubble {
    border-radius: 10px 10px 10px 4px;
  }
.player-controls {
    gap: 4px;
    padding: 6px;
  }
.player-controls button {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
.cast-module .actor-list {
    gap: 4px 6px;
  }
.actor-item {
    padding: 3px 10px;
    font-size: 0.8rem;
  }
.friend-links {
    gap: 6px 8px;
  }
a.runtime-friend-link {
    font-size: 0.75rem;
  }
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
    margin-right: 12px;
  }}
.player-container {
  min-width: 0;
  width: 100%;
}
.player-container video {
  width: 100% !important;
  min-width: 0;
}
@media (min-width: 769px) {.player-container {
    min-width: 480px;
  }}
.section-title {
  font-family: inherit;
}
.comment-bubble {
  overflow: visible;
}
video {
  object-fit: contain;
  background: #000;
}
.actor-card {
  height: auto;
  align-self: start;
}
.rec-grid > a[data-runtime="recommendation"] {
  height: auto;
  align-self: start;
}
.poster-wrap img {
  max-height: none;
}
main {
  position: relative;
}
main::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at center, transparent 0%, rgba(10, 14, 23, 0.2) 100%);
  pointer-events: none;
  z-index: -1;
}
.movie-title {
  color: #e8f0f5;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.tagline {
  color: #ff7f3f;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 127, 63, 0.2);
  padding-bottom: 10px;
}
@media (max-width: 768px) {.status-current, .status-total, .status-label {
    font-size: 0.85rem;
  }}
a {
  outline: none;
}
a:focus-visible {
  outline: 2px solid #ff7f3f;
  outline-offset: 2px;
}
button:focus-visible {
  outline: 2px solid #ff7f3f;
  outline-offset: 2px;
}

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}
