:root{
  --bg:#f7ede4;
  --card:#ffffff;
  --ink:#111111;
  --ink-soft:#404040;
  --accent:#ff6a00;
  --accent-soft:#ffb366;
  --border-soft:rgba(0,0,0,0.06);
  --shadow-soft:0 18px 40px rgba(0,0,0,0.18);
  --radius-lg:26px;
  --radius-md:20px;
  --radius-sm:14px;
  --container:1120px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  width:100%;
  min-height:100%;
  background:
    radial-gradient(circle at top,rgba(255,150,70,0.16),transparent 55%),
    var(--bg);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Inter","system-ui",sans-serif;
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}

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

.section{
  position:relative;
  padding:72px 16px;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(5,5,5,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.hdr-inner{
  height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  max-width:var(--container);
  margin:0 auto;
}

.hdr-logo img{
  height:26px;
}

/* HAMBURGER */

.hamburger{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.28);
  background:transparent;
  cursor:pointer;
  position:relative;
}

.hamburger span,
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:9px;
  right:9px;
  height:2px;
  border-radius:2px;
  background:#ffffff;
  transition:.25s;
}

.hamburger span{top:19px;}
.hamburger::before{top:12px;}
.hamburger::after{top:26px;}

.hamburger.active span{opacity:0;}
.hamburger.active::before{transform:translateY(7px) rotate(45deg);}
.hamburger.active::after{transform:translateY(-7px) rotate(-45deg);}

/* DRAWER */

.drawer{
  position:fixed;
  top:0;
  right:0;
  height:100dvh;
  width:320px;
  max-width:86%;
  background:rgba(10,10,10,0.97);
  backdrop-filter:blur(14px);
  border-left:1px solid rgba(255,255,255,0.12);
  transform:translateX(100%);
  transition:transform .25s ease;
  z-index:1500;
  padding:22px 18px;
  color:#fff;
}

.drawer.open{transform:translateX(0);}

.drawer-close{
  position:absolute;
  top:16px;
  right:18px;
  border:none;
  background:none;
  color:#fff;
  font-size:1.6rem;
  cursor:pointer;
}

.drawer-cta{
  margin-top:52px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

#drawerOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.42);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s;
  z-index:1400;
}
#drawerOverlay.show{
  opacity:1;
  pointer-events:auto;
}

/* GENERIC BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:#ffffff;
  color:var(--ink);
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:.82rem;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.09);
}

.btn-orange{
  background:linear-gradient(90deg,#ff7a1a,#ff9c3c);
  color:#ffffff;
  border:none;
}

/* HERO */

.hero{
  padding:96px 16px 70px;
}

.hero .container{
  position:relative;
  padding:54px 18px 40px;
  max-width:960px;
  margin:0 auto;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#050505;
  color:#ffffff;
  box-shadow:0 26px 60px rgba(0,0,0,0.65);
}

.hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}

.hero-bg lottie-player{
  width:110%;
  height:110%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(1.2);
  opacity:0.55;
}

.hero .overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top,rgba(255,145,54,0.42),transparent 62%);
  mix-blend-mode:screen;
  pointer-events:none;
  z-index:1;
}

.logo-hero{
  width:190px;
  margin:0 auto 14px;
  position:relative;
  z-index:2;
}

.hero-title{
  position:relative;
  z-index:2;
  margin:0 0 10px;
  font-size:2.6rem;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-align:center;
  color:#ffffff;
}

.subtitle{
  position:relative;
  z-index:2;
  margin:0 0 26px;
  font-size:.88rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-align:center;
  color:rgba(255,255,255,0.86);
}

.signup{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:12px;
  width:100%;
  max-width:380px;
  margin:0 auto;
}

.hero input[type="email"]{
  width:100%;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  outline:none;
  background:rgba(0,0,0,0.55);
  color:#ffffff;
  font-size:.95rem;
}
.hero input[type="email"]::placeholder{
  color:rgba(255,255,255,0.65);
}

#recaptcha-wrapper{
  display:flex;
  justify-content:center;
  transform:scale(.88);
  transform-origin:center;
}

.hero .subscribe{
  align-self:center;
  min-width:200px;
  padding:14px 26px;
  border-radius:999px;
  border:none;
  background:linear-gradient(90deg,#ff7a1a,#ff9c3c);
  color:#fff;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(0,0,0,0.35);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}

.hero .subscribe:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 40px rgba(0,0,0,0.45);
  filter:brightness(1.05);
}

/* success message */

#success-message{
  position:relative;
  z-index:2;
  margin-top:10px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(15,15,15,0.96);
  border:1px solid rgba(255,122,40,0.7);
  color:#ffffff;
  font-size:.88rem;
  text-align:center;
  opacity:0;
  max-height:0;
  overflow:hidden;
  transform:translateY(6px);
  transition:opacity .25s ease,transform .25s ease,max-height .25s ease;
}

#success-message.show{
  opacity:1;
  max-height:120px;
  transform:translateY(0);
}

/* ======================================================
   CINEMATIC DOWNLOAD SECTION (ID: #download-cinematic)
   ====================================================== */

/* 1. SECTION CONTAINER */
#download-cinematic {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 16px;
  z-index: 10;

  /* Deep cinematic background – matched to hero & faded down */
  background: #050505;
  background: linear-gradient(
    to bottom,
    #050505 0%,
    #050505 30%,
    #000000 90%
  );
  border-top: 0;
}

/* 2. GRID LAYOUT (Mobile First: Stacked) */
#download-cinematic .container {
  max-width: 1100px;
  margin: 0 auto;
}

#download-cinematic .download-grid {
  display: flex;
  flex-direction: column; /* Stack vertically on mobile */
  align-items: center;
  gap: 50px;
  text-align: center;
}

/* 3. TEXT CONTENT */
#download-cinematic .download-content {
  order: 2; /* Text below image on mobile */
  max-width: 500px;
  margin: 0 auto;
}

.dl-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

/* Gradient Text Effect */
.dl-title .text-gradient {
  background: linear-gradient(90deg, #ff7a1a, #ffb366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dl-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* 4. BADGES */
.dl-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-img {
  height: 50px; /* Nice touch target size */
  width: auto;
  transition: transform 0.2s ease;
}

.badge-img:hover {
  transform: translateY(-3px);
}

/* 5. 3D PHONE VISUAL */
#download-cinematic .download-visual {
  order: 1; /* Image on top on mobile */
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-3d {
  width: 100%;
  max-width: 320px; /* Good size for mobile */
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
}

/* Floating Animation */
.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Glow behind phone */
.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* ======================================================
   DESKTOP LAYOUT (Screens > 992px)
   ====================================================== */
@media screen and (min-width: 992px) {
  
  #download-cinematic {
    padding: 100px 0;
  }

  #download-cinematic .download-grid {
    flex-direction: row; /* Side by Side */
    justify-content: space-between;
    text-align: left;
    gap: 0;
  }

  /* Text moves Left */
  #download-cinematic .download-content {
    order: 1;
    margin: 0;
    width: 45%;
    align-items: flex-start;
  }

  .dl-title {
    font-size: 3.2rem; /* Huge title */
  }

  .dl-badges {
    justify-content: flex-start; /* Align badges left */
  }

  /* Image moves Right */
  #download-cinematic .download-visual {
    order: 2;
    width: 50%;
    justify-content: flex-end;
  }

  .phone-3d {
    max-width: 450px; /* Big impactful image on desktop */
  }
  
  .phone-glow {
    width: 500px;
    height: 500px;
  }
}

/* PLANS – CINEMATIC DARK GLASS (FINAL) */
.plans {
  padding: 70px 16px 90px;
  position: relative;
  z-index: 5;
}

/* Outer card */
.plans .container {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  padding: 38px 26px 32px;
  border-radius: 30px;
  /* Dark Cinematic Gradient */
  background: radial-gradient(circle at top, rgba(255,140,60,0.15), transparent 60%), radial-gradient(circle at bottom, #000000, #050505);
  background-color: #050505; /* Fallback */
  border: 1px solid rgba(255,140,60,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

/* Title area */
.plans .title {
  text-align: center;
  margin: 0 0 10px;
  text-shadow: none; 
}

/* "Plans & Pricing" kicker */
.plans .plans-kicker {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,216,180,0.82);
  margin-bottom: 6px;
  font-weight: 700;
}

/* SHELF TV PREMIUM Title */
.plans .plans-main {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffddb0 0%, #ff7a1a 45%, #ffb366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.plans .sub {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.98rem;
  margin: 4px 0 26px;
}

/* Toggle */
.toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 12px;
}

.toggle {
  background: rgba(0,0,0,0.65);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px;
  display: inline-flex;
}

.toggle button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  padding: 9px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.toggle button.active {
  background: linear-gradient(90deg,#ff7a1a,#ff9c3c);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}

/* Save line */
.save-line {
  text-align: center;
  color: #ffb366;
  font-size: 0.82rem;
  margin-bottom: 22px;
  font-weight: 600;
  min-height: 18px;
}

/* MAIN COMPARISON TABLE */
.compare {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: #050505 !important; /* FORCE DARK BACKGROUND */
  box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

/* Header row */
.compare .hdr {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 16px 22px 14px;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.compare .hdr .cell {
  text-align: center;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.compare .hdr .cell:first-child { text-align: left; }
.compare .hdr .premium-hd { color: #ffb366; }

/* Rows */
.compare .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #111111; /* Dark Row Background */
  transition: all 0.2s ease;
}

.compare .row:nth-child(odd) { background: #161616; }

.compare .row:hover {
  background: #1f1f1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.7);
  z-index: 2;
}

/* Price row highlight */
.price-row {
  background: radial-gradient(circle at top left, rgba(255,140,60,0.15), transparent 60%), #181008 !important;
}

/* Text Colors */
.compare .cell {
  text-align: center;
  color: #f7f7f7; /* White Text */
  font-size: 0.95rem;
  font-weight: 500;
}

.compare .cell.feat-name {
  text-align: left;
  font-weight: 700;
  color: #ffffff;
}

/* Emphasise premium column */
.compare .row .cell:nth-child(3),
.compare .hdr .cell:nth-child(3) { font-weight: 700; }

/* Pricing text */
.price-basic {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "Impact","Anton",system-ui,sans-serif;
  color: #fefefe;
}
.price-basic span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  font-family: system-ui,sans-serif;
}

/* Premium price gradient */
.price-hero {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Impact","Anton",system-ui,sans-serif;
  background: linear-gradient(90deg,#ff7a1a,#ffdd80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-hero span {
  font-size: 0.95rem;
  font-weight: 600;
  -webkit-text-fill-color: #ffcf70;
  color: #ffcf70;
  font-family: system-ui,sans-serif;
}

/* Icons */
.ok { color: #22c55e; font-weight: 700; } /* Green */
.no { color: #f97373; font-weight: 700; font-size: 1.1rem; opacity: 0.5; } /* Red */
.compare .cell.prem-val { color: #ffffff; }

/* PRO badge */
.tag {
  background: linear-gradient(135deg,#ff7a1a,#ffb366);
  color: #050505;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  vertical-align: middle;
  margin-left: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CTA buttons */
.cta-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn-glow {
  background: linear-gradient(90deg,#ff7a1a,#ff9c3c);
  color: #fff;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

/* Shimmer animation */
.shimmer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-25deg);
  animation: shimmer-btn 3s infinite;
}

@keyframes shimmer-btn {
  0% { left: -120%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

.btn-ghost {
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.88rem;
  font-weight: 600;
}
.btn-ghost:hover { color: #ffb366; }

.disclaimer {
  margin: 16px auto 0;
  max-width: 700px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* Mobile tweaks */
@media (max-width: 700px) {
  .compare .hdr, .compare .row { grid-template-columns: 1.3fr 0.9fr 0.9fr; padding: 14px 12px; font-size: 0.82rem; }
  .price-hero { font-size: 1.5rem; }
}

/* --- CINEMATIC CAROUSEL (FIXED) --- */
/* SECTION BACKGROUND – orange at top fading to black */
.carousel {
  padding: 60px 16px 80px;
  position: relative;
  z-index: 10;

  /* softer orange, fades quickly into black */
  background:
    radial-gradient(circle at top center, rgba(255,122,26,0.55), transparent 55%),
    linear-gradient(to bottom, #050505 0%, #000000 60%);
}

/* Let the posters sit directly on the page – no glass card */
.glass-container {
  /* let the posters live directly on the page */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;

  /* keep basic layout */
  padding: 0 0 14px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.title-cinematic {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.text-white { color: #fff; opacity: 0.9; }

/* Base white text stays normal */
.text-white { 
  color: #fff; 
  opacity: 0.9; 
}

/* Shimmering “SHELF TV” */
.title-cinematic .text-orange {
  background: linear-gradient(90deg, #ff7a1a, #ffe0b0, #ff7a1a);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shelfTitleShimmer 4s linear infinite;
}

/* Shimmer animation */
@keyframes shelfTitleShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Title hierarchy for NEW ON / SHELF TV */
.title-cinematic {
  margin: 0 0 26px;
  text-align: center;
  font-weight: 900;
}

/* "NEW ON" – small label */
.title-cinematic span:first-child {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  opacity: 0.75;
  margin-bottom: 4px;
}

/* "SHELF TV" – big, shimmering wordmark */
.title-cinematic span:last-child {
  display: block;
  font-size: 2.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  background: linear-gradient(90deg, #ffe9b5, #ffb347, #ff7a1a, #ffb347, #ffe9b5);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shelfTitleShimmer 6s linear infinite;
}

/* shimmer sweep just for SHELF TV */
@keyframes shelfTitleShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


.rail {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  /* Added TOP padding so the hover lift doesn't get cut off */
  padding: 30px 10px 40px; 
  scrollbar-width: none;
  
  /* scroll-behavior: smooth;  <-- DELETE THIS LINE TO FIX JITTER */
}
.rail::-webkit-scrollbar { display: none; }
/* --- MEDIA CHIPS (Posters) --- */
.media-chip {
  flex: 0 0 auto;
  width: 220px;
  position: relative;
  cursor: pointer;
  perspective: 1000px;
}

.chip-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  transform-origin: bottom center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
  
  /* FORCE SAME SIZE FOR ALL POSTERS */
  aspect-ratio: 2 / 3; 
  background: #000; /* Fallback if image fails */
}

.chip-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills box without stretching */
  display: block;
  filter: brightness(0.85);
  transition: filter 0.4s ease;
}

/* Shimmer Effect */
.shimmer-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s;
  pointer-events: none;
  z-index: 2;
}

/* Hover Effects */
.media-chip:hover .chip-inner {
  transform: translateY(-15px) scale(1.02); /* Lifts higher */
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 2px #ff6600;
}

.media-chip:hover img { filter: brightness(1.1); }

.media-chip:hover .shimmer-overlay {
  left: 150%;
  transition: left 0.7s ease-in-out;
}

.neon-cap {
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6600;
  text-align: center;
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.media-chip:hover .neon-cap { opacity: 1; text-shadow: 0 0 10px rgba(255, 102, 0, 0.8); }

/* Dots Styling */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0px;
}

.slider-dots span {
  width: 30px; 
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-dots span.active {
  background: #ff6600;
  width: 50px; 
  box-shadow: 0 0 10px #ff6600;
}

/* Mobile */
@media (max-width: 600px) {
  .media-chip { width: 150px; }
  .title-cinematic { font-size: 1.5rem; }
}





/* FOOTER */

footer{
  background:#050505;
  color:#f1d3b1;
  padding:28px 16px 32px;
  text-align:center;
  margin-top:34px;
}

footer .container{
  max-width:var(--container);
  margin:0 auto;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:10px;
}

.footer-links a{
  font-size:.82rem;
}

/* RESPONSIVE */

@media (max-width:900px){
  .hero{
    padding-top:86px;
  }
  .hero .container{
    padding:42px 18px 32px;
    margin:0 auto;
    border-radius:22px;
  }
  .hero-title{
    font-size:2rem;
    letter-spacing:.14em;
  }
  .subtitle{
    font-size:.78rem;
    letter-spacing:.14em;
  }
}

@media (max-width:768px){
  .section{
    padding:52px 14px;
  }
  .hero{
    padding:82px 14px 60px;
  }
  .hero .container{
    padding:38px 16px 28px;
    border-radius:18px;
  }
  .logo-hero{
    width:150px;
  }
  .hero-title{
    font-size:1.7rem;
    letter-spacing:.12em;
  }
  .download-bar{
    padding:22px 16px 24px;
  }
  .plans .container,
  .carousel .container,
  .feature .container{
    padding:24px 16px 26px;
    border-radius:18px;
  }
  .plans .title,
  .carousel .title,
  .feature .title{
    font-size:1.2rem;
    letter-spacing:.1em;
  }
  .compare .hdr,
  .compare .row{
    grid-template-columns:1.3fr 1fr 1fr;
  }
  .poster{
    width:64vw;
    max-width:260px;
  }
}

/* === SHELF TV – plans + live + download overrides === */

/* Global background + footer blend */
html,body{
  background:
    radial-gradient(circle at top, rgba(255,140,60,0.22), transparent 60%),
    #050505 !important;
}
footer{
  background:#050505 !important;
  color:#f1d3b1 !important;
}

/* 1) PLANS CARD – 3D orange hover + shimmer title */

.plans .container{
  position:relative;
  background:var(--card);
  border-radius:30px;
  padding:32px 22px 30px;
  box-shadow:0 26px 70px rgba(0,0,0,0.36);
  border:1px solid rgba(255,122,0,0.35);
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease;
}

/* soft internal orange glow */
.plans .container::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at top, rgba(255,179,102,0.45), transparent 60%);
  mix-blend-mode:soft-light;
  opacity:.7;
  pointer-events:none;
}

/* hover lift for pointer devices */
@media (hover:hover){
  .plans .container:hover{
    transform:translateY(-4px);
    box-shadow:0 34px 90px rgba(0,0,0,0.55);
  }
}

/* shimmer gradient heading */
.plans .title{
  font-family:"Impact","Anton",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:1.4rem;
  margin:0 0 8px;
  text-align:center;
  background:linear-gradient(90deg,#ffe1b3 0%,#ff7a1a 45%,#ffb366 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 22px rgba(0,0,0,0.7);
}

/* keep copy readable but a touch richer */
.plans .sub,
.plans .disclaimer{
  color:var(--ink-soft);
}

/* subtle zebra + clearer borders inside table */
.plans .compare{
  border-radius:20px;
  border:1px solid rgba(0,0,0,0.05);
}
.plans .row:nth-child(odd){
  background:#fffaf4;
}
.plans .row:nth-child(even){
  background:#ffffff;
}

/* 2) LIVE BOX – flip & fade in on scroll */

#feature-live .container{
  transform-origin:center;
  transform:perspective(1100px) rotateX(10deg) translateY(32px);
  opacity:0;
  transition:transform .7s cubic-bezier(.19,1,.22,1), opacity .55s ease-out;
}

/* when in view, flatten and show */
#feature-live.in-view .container{
  transform:perspective(1100px) rotateX(0deg) translateY(0);
  opacity:1;
}

/* extra depth */
#feature-live .container{
  box-shadow:0 26px 70px rgba(0,0,0,0.55);
  border-radius:28px;
}

/* 3) DOWNLOAD STRIPS – no white card, original badges */

section[aria-label="Download Shelf TV"]{
  padding:28px 16px 16px;
}

.download-bar{
  background:transparent !important;
  box-shadow:none !important;
  border-radius:0 !important;
  padding:16px 0 20px;
}

.download-bar h2{
  margin:0 0 8px;
  font-size:1.4rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-align:center;
  color:#ffffff;
}
.download-bar h2 span{
  color:var(--accent);
}

/* remove lottie inside download bars */
.download-lottie{
  display:none !important;
}

/* badges back to original rectangular look */
.download-badges .store-badge{
  height:52px;
  border-radius:0;
  box-shadow:none;
}

/* light hover lift without cropping */
@media (hover:hover){
  .download-badges .store-badge:hover{
    transform:translateY(-2px);
  }
}

/* SHELF STREAMING LIVE – glass panel, always visible (no JS needed). */
#feature-live .container{
  background:rgba(10,10,10,0.78);
  border-radius:28px;
  border:1px solid rgba(255,140,60,0.65);
  box-shadow:0 30px 80px rgba(0,0,0,0.85);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  transform:perspective(1100px) rotateX(0deg) translateY(0);
  opacity:1;
}

/* Make LIVE text readable on the dark glass */
#feature-live .title,
#feature-live .text,
#feature-live .subtitle,
#feature-live .evolving{
  color:#ffffff;
}

/* Keep the word “Streaming” in orange */
#feature-live .title span.streaming{
  color:var(--accent);
}
/* FORCE OVERRIDE - DARK MODE FIX */

/* 1. Force the Main Container to be Dark */
.plans .container {
    background: #050505 !important; 
    background-image: radial-gradient(circle at bottom, #000000, #1a1a1a) !important;
    border: 1px solid rgba(255,140,60,0.4) !important;
}

/* 2. Force the Rows to be Dark */
.compare .row {
    background-color: #111111 !important; /* Force dark grey */
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

/* 3. Force Alternating Rows to be slightly darker */
.compare .row:nth-child(odd) {
    background-color: #0a0a0a !important;
}

/* 4. Force Text to be White */
.compare .cell {
    color: #ffffff !important;
    text-shadow: none !important;
}

/* 5. Force Feature Names (Left Column) to be White/Bold */
.compare .cell.feat-name {
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* 6. Force Premium Values (Right Column) to be White */
.compare .cell.prem-val {
    color: #ffffff !important;
}

/* 7. Ensure Price Text is Visible */
.price-basic, .price-hero {
    color: #ffffff !important;
}
/* ======================================================
   FINAL REPLACEMENT: STREAM ON THE GO (CLEAN VERSION)
   ====================================================== */

/* 1. SECTION WRAPPER */
.feature {
  padding: 40px 16px;
  background-color: transparent;
  width: 100%;
  position: relative;
  z-index: 5;
}

/* STREAM ON THE GO – make section fully black with subtle orange glow */
#feature-go {
  background:
    radial-gradient(circle at bottom left, rgba(255, 122, 26, 0.16), transparent 55%),
    #000000; /* solid black base so the top blends perfectly */
}


/* 2. THE CARD (Desktop Layout by Default) */
#feature-go .container.feature-panel {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  
  max-width: 1050px;
  margin: 0 auto;
  padding: 40px 0;                    /* simple vertical spacing only */
  
  /* NO CARD SHAPE / NO BACKGROUND PANEL */
  background: transparent !important;

  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
  height: auto;
  min-height: 0;
}


/* 3. AMBIENT GLOW */
.feature-bg-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at left, rgba(255, 122, 26, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* 4. INTERNAL LAYOUT WRAPPER */
#feature-go .feature-grid {
  display: flex !important;
  flex-direction: row !important;     /* Force Side-by-Side */
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 40px 50px;                 /* Clean internal padding */
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* 5. LEFT SIDE: TEXT CONTENT */
#feature-go .feature-copy {
  width: 48% !important;              /* Take up half width */
  text-align: left !important;        /* Align text left */
  display: block;
}

#feature-go .title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.16em;
  font-family: "Impact", "Anton", system-ui, sans-serif;

  /* Shimmer gradient */
  background: linear-gradient(90deg, #ffffff, #ffb366, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 20px rgba(0,0,0,0.9);
  animation: streamTitleShimmer 4s linear infinite;
}

#feature-go .text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  max-width: 95%;
}

.feature-cta {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff7a1a, #ffb366);
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(255, 122, 26, 0.2);
  transition: transform 0.2s ease;
}
.feature-cta:hover { transform: scale(1.05); }

/* 6. RIGHT SIDE: VIDEO CONTENT */
#feature-go .feature-visual {
  width: 48% !important;              /* Take up half width */
  display: flex !important;
  justify-content: flex-end;          /* Push video to right */
  align-items: center;
}

#feature-go .video-container {
  width: 100%;
  max-width: 380px !important;        /* LIMIT SIZE: Prevents "Huge" video */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

#feature-go .hero-video {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;             /* Blends black video with card */
}


/* ======================================================
   MOBILE OVERRIDE (ONLY TRIGGERS ON PHONES/TABLETS)
   ====================================================== */
@media screen and (max-width: 960px) {
  
  .feature { padding: 20px 16px; }

  /* Change Flex direction to column (Stacking) */
  #feature-go .container.feature-panel {
    flex-direction: column !important;
    padding: 40px 24px !important;
    height: auto !important;
    min-height: auto;
  }

  #feature-go .feature-grid {
    flex-direction: column !important;
    gap: 30px;
    padding: 0;
  }

  /* Text becomes centered and full width */
  #feature-go .feature-copy {
    width: 100% !important;
    text-align: center !important;
    order: 2; /* Text below video */
  }

  #feature-go .title { font-size: 1.8rem; }
  
  /* Video becomes centered and full width */
  #feature-go .feature-visual {
    width: 100% !important;
    justify-content: center;
    order: 1; /* Video on top */
  }

  #feature-go .video-container {
    max-width: 300px !important;
  }
}
cat >> public/css/splash.min.css << 'EOF'

/* ======================================================
   STORIES YOU CAN'T FIND ANYWHERE ELSE – ORANGE VIDEO SECTION
   ====================================================== */

#feature-originals {
  position: relative;
  padding: 70px 16px;
  overflow: hidden;
}

/* Background video wrapper */
#feature-originals .feature-originals-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Full-bleed video */
#feature-originals .feature-originals-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) brightness(0.9);
  transform: scale(1.05);
}

/* Orange + dark overlay so text stays readable */
#feature-originals .feature-originals-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0,0,0,0.35), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.5)),
    linear-gradient(120deg, rgba(255,122,26,0.7), rgba(255,177,102,0.3));
  mix-blend-mode: multiply;
}

/* Foreground content */
#feature-originals .feature-originals-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  animation: originalsFadeUp 0.8s ease-out both;
}

/* Layout: mobile = stacked, desktop = side-by-side */
#feature-originals .feature-originals-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media (min-width: 900px) {
  #feature-originals .feature-originals-grid {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

/* Copy side */
#feature-originals .feature-originals-copy {
  flex: 1 1 0;
}

#feature-originals .originals-title {
  text-align: left;
  font-size: 2.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 0 26px rgba(0,0,0,0.7);
}

#feature-originals .feature-originals-copy .text {
  color: rgba(255,255,255,0.88);
  font-size: 0.98rem;
}

/* Highlight card side */
#feature-originals .feature-originals-card {
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
  max-width: 340px;
  margin: 0 auto;
  padding: 16px 18px 18px;
  border-radius: 22px;
  background: radial-gradient(circle at top, rgba(255,140,60,0.18), transparent 65%),
              rgba(5,5,5,0.86);
  border: 1px solid rgba(255,140,60,0.8);
  box-shadow: 0 26px 70px rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(10px);
  animation: originalsCardFloat 4s ease-in-out infinite alternate;
}


/* Badge */
#feature-originals .originals-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg,#ff7a1a,#ffcf70);
  color: #050505;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 10px;
}

#feature-originals .originals-card-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 8px 0 4px;
}

/* Animations */
@keyframes originalsFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes streamTitleShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@keyframes originalsCardFloat {
  from {
    transform: translateY(10px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.85);
  }
  to {
    transform: translateY(0);
    box-shadow: 0 32px 80px rgba(0,0,0,0.95);
  }
}

/* Mobile tweaks */
@media (max-width: 700px) {
  #feature-originals {
    padding: 56px 16px;
  }

  #feature-originals .originals-title {
    font-size: 1.6rem;
    letter-spacing: 0.12em;
  }

  #feature-originals .feature-originals-card {
    max-width: 92%;
    padding: 10px 14px 12px;
    margin: 10px auto 0;
    transform: translateY(0);
    flex: 0 0 auto !important;  /* make sure mobile wins */
    min-height: 0 !important;
  }

  #feature-originals .originals-card-text {
    font-size: 0.9rem;
    line-height: 1.35;
  }
}

EOF
