:root {
  --bg: #05070c;
  --bg-soft: #0b1020;
  --panel: rgba(14, 20, 35, 0.78);
  --text: #edf5ff;
  --muted: #a8b5cc;
  --cyan: #5fe3ff;
  --cyan-strong: #80edff;
  --violet: #9f7cff;
  --line-strong: rgba(95, 227, 255, 0.32);
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(159,124,255,0.14), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(95,227,255,0.12), transparent 24%),
    linear-gradient(180deg, #04060a 0%, #060a12 45%, #04060a 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,0.6) 0 1px, transparent 1.4px),
    radial-gradient(circle at 55% 85%, rgba(95,227,255,0.8) 0 1px, transparent 1.5px);
  background-size: 180px 180px, 240px 240px, 300px 300px;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 220px;
  background: var(--cyan);
}

.orb-2 {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 120px;
  background: var(--violet);
}

.site-header,
.section,
.site-footer { position: relative; z-index: 1; }

.container {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(5, 7, 12, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  font-weight: 800;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-nav a:hover { color: var(--text); }

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--cyan-strong);
}

.section { padding: 46px 0; }
.hero { padding-top: 58px; padding-bottom: 34px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--cyan-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.subheading {
  margin: 0 0 18px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: #d7e5fb;
  max-width: 50ch;
}

.synopsis {
  margin: 0 0 26px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #031019;
  background: linear-gradient(135deg, var(--cyan-strong), #5fe3ff 50%, #a0f1ff);
  box-shadow: 0 10px 30px rgba(95, 227, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.09);
}

.microcopy {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}

.poster-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(159,124,255,0.12), rgba(95,227,255,0.06)),
    rgba(10, 14, 24, 0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  min-height: 560px;
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
  opacity: 0.72;
}

.poster-glow {
  position: absolute;
  inset: auto -60px -70px auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(95,227,255,0.35) 0%, rgba(95,227,255,0) 70%);
  filter: blur(12px);
  z-index: 1;
}

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.7));
  z-index: 2;
}

.play-button {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.poster-kicker {
  display: block;
  color: var(--cyan-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.poster-text strong {
  display: block;
  font-size: 1.35rem;
}

.ratings-strip,
.reviews-grid,
.formats-grid {
  display: grid;
  gap: 16px;
}

.ratings-strip { grid-template-columns: repeat(3, 1fr); }

.rating-card,
.review-card,
.format-card,
.listen-panel {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.rating-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.stars {
  color: var(--cyan-strong);
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 10px;
}

.rating-label {
  font-weight: 700;
  margin-bottom: 3px;
}

.rating-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-heading h2 span { color: var(--cyan-strong); }
.section-copy { color: var(--muted); margin: 0; }

.reviews-grid { grid-template-columns: repeat(3, 1fr); }

.review-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.review-card p {
  margin: 0;
  font-size: 1.02rem;
  color: #e6f0ff;
}

.formats-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
}

.format-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.format-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(95,227,255,0.06);
}

.format-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.format-card strong {
  display: block;
  font-size: 1.16rem;
  margin-bottom: 6px;
}

.format-card span:last-child { color: var(--muted); }

.listen-panel {
  border-radius: var(--radius-xl);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.listen-panel h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.listen-panel p:last-child {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 26px 0 42px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-inner p {
  color: var(--muted);
  margin: 8px 0 0;
  max-width: 50ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  color: var(--muted);
}

.footer-links a:hover { color: var(--text); }

@media (max-width: 980px) {
  .hero-grid,
  .ratings-strip,
  .reviews-grid,
  .formats-grid { grid-template-columns: 1fr; }

  .hero { padding-top: 30px; }
  .hero-visual { order: -1; }

  .poster-card,
  .poster-card img { min-height: 420px; }

  .listen-panel,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav a:not(.header-cta) { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .section { padding: 34px 0; }
  .header-inner { min-height: 66px; }

  .brand {
    letter-spacing: 0.16em;
    font-size: 0.82rem;
  }

  .hero-actions .btn,
  .listen-panel .btn,
  .header-cta { width: 100%; }

  .hero-actions { flex-direction: column; }
  .poster-overlay { padding: 20px; }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .poster-text strong { font-size: 1.2rem; }

  .rating-card,
  .review-card,
  .format-card,
  .listen-panel { padding: 20px; }
}
