/* ==========================================================================
   NEX4 — public site
   A Solviony studio. Cinematic dark identity.
   Display: Fraunces (editorial titles) · Labels: Oswald (network chrome) · Body: Inter
   ========================================================================== */

:root {
  --obsidian: #0a0a0c;
  --panel:    #141418;
  --panel-2:  #1c1c22;
  --line:     rgba(255, 255, 255, 0.08);
  --line-2:   rgba(255, 255, 255, 0.14);
  --ink:      #f5f3ee;
  --muted:    #9a98a0;
  --muted-2:  #6f6d76;
  --gold:     #e6b84c;
  --gold-deep:#c9982f;
  --live:     #e0432f;

  --maxw: 1320px;
  --gutter: clamp(18px, 4vw, 56px);
  --radius: 6px;

  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.8);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* faint vertical projector vignette */
  background-image:
    radial-gradient(120% 60% at 50% -10%, rgba(230, 184, 76, 0.06), transparent 60%);
  background-attachment: fixed;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

::selection { background: var(--gold); color: #1a1300; }

/* ---- type helpers ------------------------------------------------------- */
.display { font-family: "Fraunces", Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }
.chrome  { font-family: "Oswald", "Inter", sans-serif; text-transform: uppercase; letter-spacing: 0.14em; }

.eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.96) 0%, rgba(10, 10, 12, 0.72) 100%);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand img { height: 30px; width: auto; }
.brand .n4 { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  list-style: none;
  padding: 0;
}
.nav-links > li { position: relative; }
.nav-links a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--ink);
  padding: 10px 14px;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-trigger:hover { color: #fff; }

/* LIVE TV indicator */
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(224, 67, 47, 0.6);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(224, 67, 47, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(224, 67, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 67, 47, 0); }
}

/* Other ▾ dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--panel-2); color: var(--gold); }

.nav-spacer { flex: 1; }
.nav-cta {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  padding: 9px 18px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }

/* mobile menu toggle */
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: #1a1300; }
.btn-gold:hover { background: #f2c965; }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-live { background: var(--live); color: #fff; }
.btn-live:hover { background: #ef5740; }

/* ==========================================================================
   HERO CAROUSEL
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero-track { display: flex; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(460px, 76vh, 760px);
  display: flex;
  align-items: flex-end;
}
.hero-slide .backdrop {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-slide::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.55) 38%, transparent 72%),
    linear-gradient(0deg, var(--obsidian) 2%, transparent 46%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
}
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  margin: 14px 0 18px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--muted);
}
.tag {
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 3px 8px;
  color: var(--ink);
}
.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0;
}
.hero-synopsis { color: #d8d6d0; margin: 18px 0 26px; max-width: 50ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-dots {
  position: absolute; z-index: 3;
  bottom: 26px; right: var(--gutter);
  display: flex; gap: 9px;
}
.hero-dots button {
  width: 30px; height: 3px; border: 0; border-radius: 3px;
  background: rgba(255, 255, 255, 0.28); cursor: pointer; padding: 0;
  transition: background 0.25s;
}
.hero-dots button.is-active { background: var(--gold); }

/* ==========================================================================
   CONTENT ROWS  (poster carousels)
   ========================================================================== */
.section { padding: clamp(40px, 6vw, 72px) 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 26px;
}
.section-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin: 0;
}
.section-title .accent { color: var(--gold); }
.section-link {
  font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.78rem; color: var(--muted);
  white-space: nowrap;
}
.section-link:hover { color: var(--gold); }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(150px, 20vw, 210px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }

/* grid variant for index pages */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

/* poster card with focus-pull hover (the signature) */
.poster {
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}
.poster .art {
  aspect-ratio: 2 / 3;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.94);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.poster .placeholder {
  aspect-ratio: 2 / 3;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--panel-2), #0e0e12);
  color: var(--muted-2);
  font-family: "Oswald", sans-serif; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.7rem;
}
.poster:hover { transform: translateY(-6px); border-color: var(--gold-deep); }
.poster:hover .art { filter: saturate(1.05) brightness(1.04); transform: scale(1.05); }
.poster-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 30px 12px 12px;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.96), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.poster:hover .poster-cap { transform: translateY(0); opacity: 1; }
.poster-cap h3 { font-family: "Oswald", sans-serif; font-size: 0.92rem; margin: 0 0 4px; letter-spacing: 0.03em; }
.poster-cap .sub { font-size: 0.72rem; color: var(--muted); }

/* ==========================================================================
   PROMO BANDS (LIVE TV / Publish)
   ========================================================================== */
.band {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.band-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: clamp(44px, 7vw, 84px) 0;
}
.band--live { background:
  radial-gradient(80% 120% at 0% 50%, rgba(224, 67, 47, 0.16), transparent 60%), var(--panel); }
.band--publish { background:
  radial-gradient(80% 120% at 100% 50%, rgba(230, 184, 76, 0.14), transparent 60%), var(--panel); }
.band h2 {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.02; margin: 12px 0 16px;
}
.band p { color: #cfcdc7; max-width: 46ch; margin: 0 0 24px; }
.band-side { display: flex; justify-content: flex-end; }
.live-screen {
  width: 100%; aspect-ratio: 16 / 9; border-radius: 8px;
  border: 1px solid var(--line-2);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #1a1116, #0c0c0f);
  display: grid; place-items: center; position: relative;
}
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.8rem; color: #fff;
  background: var(--live); padding: 7px 14px; border-radius: 3px;
}

/* ==========================================================================
   EDITORIAL — STORIES
   ========================================================================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.story-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.story-card .cover { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.story-card .cover.placeholder {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--panel-2), #0e0e12); color: var(--muted-2);
}
.story-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.story-cat {
  font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.68rem; color: var(--gold); margin-bottom: 10px;
}
.story-card h3 {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.3rem;
  line-height: 1.15; margin: 0 0 10px;
}
.story-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 14px; }
.story-meta { margin-top: auto; font-size: 0.78rem; color: var(--muted-2); }

/* ==========================================================================
   DETAIL PAGES
   ========================================================================== */
.detail-hero { position: relative; min-height: clamp(420px, 64vh, 640px); display: flex; align-items: flex-end; overflow: hidden; }
.detail-hero .backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.detail-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.92), rgba(10,10,12,0.5) 50%, transparent 80%),
    linear-gradient(0deg, var(--obsidian), transparent 55%);
}
.detail-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 230px 1fr; gap: 36px; align-items: end; padding: 0 var(--gutter) clamp(40px, 6vh, 72px); width: 100%; max-width: var(--maxw); margin: 0 auto; }
.detail-poster { border-radius: var(--radius); border: 1px solid var(--line-2); box-shadow: var(--shadow); aspect-ratio: 2/3; object-fit: cover; }
.detail-title { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; margin: 10px 0 0; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; color: var(--muted); font-family: "Oswald", sans-serif; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.detail-body { padding: clamp(36px, 5vw, 64px) 0; }
.detail-body .lead { font-size: 1.12rem; color: #d8d6d0; max-width: 70ch; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 22px; margin-top: 36px; border-top: 1px solid var(--line); padding-top: 28px; }
.fact .k { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.68rem; color: var(--muted-2); margin-bottom: 6px; }
.fact .v { color: var(--ink); }
.trailer { aspect-ratio: 16/9; width: 100%; border: 0; border-radius: 8px; margin-top: 36px; }

/* article */
.article { max-width: 760px; margin: 0 auto; padding: clamp(36px, 6vw, 80px) var(--gutter); }
.article h1 { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; margin: 14px 0 18px; }
.article .rte { font-size: 1.08rem; color: #d8d6d0; }
.article .rte p { margin: 0 0 1.2em; }
.article .rte h2 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 1.6em; }
.article-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }

/* ==========================================================================
   FORMS & PAGES
   ========================================================================== */
.page-head { padding: clamp(48px, 8vw, 96px) 0 0; }
.page-head h1 { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.02; margin: 12px 0 0; }
.page-head p { color: var(--muted); max-width: 60ch; margin-top: 16px; }

.form-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
  max-width: 760px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; background: #0d0d10; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 4px;
  padding: 12px 14px; font: inherit; font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 184, 76, 0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.req { color: var(--gold); }
.error { color: #ff7a6a; font-size: 0.82rem; margin-top: 6px; }
.flash {
  background: rgba(230, 184, 76, 0.12); border: 1px solid var(--gold-deep);
  color: #f3e2b8; padding: 14px 18px; border-radius: 4px; margin-bottom: 24px;
  font-size: 0.94rem;
}
.notice { color: var(--muted); border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 28px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 12px; }
.info-grid .k { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; color: var(--muted-2); margin-bottom: 6px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; background: #08080a; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: clamp(44px, 6vw, 72px) 0 36px; }
.footer-brand .display { font-size: 1.4rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 34ch; margin-top: 14px; }
.footer-col h4 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; color: var(--muted-2); margin: 0 0 16px; }
.footer-col a { display: block; color: var(--muted); padding: 6px 0; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); padding: 22px 0; color: var(--muted-2); font-size: 0.82rem; }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: border-color 0.2s, color 0.2s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 17px; height: 17px; }

/* pagination */
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pager a, .pager span { padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 4px; font-family: "Oswald", sans-serif; letter-spacing: 0.06em; font-size: 0.84rem; color: var(--muted); }
.pager a:hover { border-color: var(--gold); color: var(--gold); }
.pager .active span { background: var(--gold); color: #1a1300; border-color: var(--gold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .band-inner { grid-template-columns: 1fr; }
  .band-side { justify-content: stretch; }
  .detail-inner { grid-template-columns: 1fr; }
  .detail-poster { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .nav-spacer { order: 2; }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: var(--panel); border-bottom: 1px solid var(--line-2);
    padding: 10px var(--gutter) 20px; gap: 0; margin: 0;
    transform: translateY(-110%); transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li { width: 100%; }
  .nav-links a, .nav-trigger { width: 100%; padding: 14px 4px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 0 14px; }
  .nav-cta { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* accessibility */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   NAVY STREAMING THEME LAYER  (appended)
   Retones to navy + #0B85FF blue and adds streaming-app component treatments.
   Loads after the base, so these overrides win. LIVE red is intentionally kept.
   ========================================================================== */
:root {
  --obsidian: #0e1733;   /* deep navy base */
  --navy-2:   #161f44;   /* logo navy */
  --panel:    #1a2550;
  --panel-2:  #212d63;
  --line:     rgba(255, 255, 255, 0.10);
  --line-2:   rgba(255, 255, 255, 0.18);
  --ink:      #f3f6ff;
  --muted:    #a9b3d6;
  --muted-2:  #7c87b0;
  --gold:     #0b85ff;   /* logo blue -> primary accent */
  --gold-deep:#0066d6;
  --live:     #e0432f;   /* LIVE red kept */
  --radius:   12px;
}

body {
  background: var(--obsidian);
  background-image:
    radial-gradient(120% 80% at 50% -8%, rgba(11, 133, 255, 0.16), transparent 55%),
    linear-gradient(180deg, #16204a 0%, #0e1733 38%, #0a1130 100%);
  background-attachment: fixed;
}
::selection { background: var(--gold); color: #04132e; }
.eyebrow { color: var(--gold); }

.site-header {
  background: linear-gradient(180deg, rgba(14, 23, 51, 0.96) 0%, rgba(14, 23, 51, 0.55) 100%);
  border-bottom: 1px solid var(--line);
}

/* ---- Spotlight hero ---- */
.hero { padding: 18px var(--gutter) 0; }
.hero-slide {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 23, 51, 0.92) 0%, rgba(14, 23, 51, 0.55) 42%, rgba(14, 23, 51, 0.15) 70%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-play {
  position: absolute;
  z-index: 3;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.hero-play:hover { transform: translateY(-50%) scale(1.07); background: var(--gold); border-color: var(--gold); }
.hero-play svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
@media (max-width: 760px) { .hero-play { display: none; } }

/* ---- Rails: rounded cards + rating chip ---- */
.poster, .poster .art { border-radius: var(--radius); }
.poster-cap h3 { color: var(--ink); }
.poster-foot { display: flex; align-items: center; gap: 10px; margin-top: 7px; }
.poster-foot .g {
  color: var(--muted);
  font-size: 0.78rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rate {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: #ffd45e;
  font-weight: 600;
  font-size: 0.78rem;
}

/* ---- Section titles get the blue underline accent ---- */
.section-title { position: relative; }
.section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 8px;
}

/* ---- Watch Now duotone band ---- */
.band--watch {
  margin: 8px var(--gutter);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(120deg, rgba(14, 23, 51, 0.65), rgba(14, 23, 51, 0.9)),
    radial-gradient(80% 120% at 75% 30%, rgba(11, 133, 255, 0.25), transparent 60%);
  min-height: 300px;
  display: flex;
  align-items: center;
}
.btn-watch {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 1.05rem;
  box-shadow: 0 16px 40px -14px rgba(11, 133, 255, 0.7);
  transition: background 0.2s;
}
.btn-watch:hover { background: var(--gold-deep); }

/* blue primary button keeps dark navy text for contrast */
.btn-gold { color: #04122e; }

/* ---- Footer retone to navy (base hardcodes near-black) ---- */
.site-footer { background: linear-gradient(180deg, #0c1430, #0a1028); border-top: 1px solid var(--line); }
