* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #030308;
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 9, 20, .18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 0, 80, .12), transparent 30%),
    linear-gradient(180deg, #05050a 0%, #020206 55%, #070008 100%);
  z-index: -5;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .22;
  pointer-events: none;
  z-index: -4;
}

.glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
  pointer-events: none;
  z-index: -3;
  animation: floatGlow 9s ease-in-out infinite alternate;
}

.glow-one {
  background: #e50914;
  top: 10%;
  left: -120px;
}

.glow-two {
  background: #8b0008;
  bottom: 5%;
  right: -120px;
  animation-delay: 2s;
}

@keyframes floatGlow {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(60px) scale(1.18); }
}

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 82px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,3,8,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e50914, #5b0007);
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 0 35px rgba(229,9,20,.55);
}

.brand h1 {
  font-size: 22px;
  line-height: 1;
}

.brand span {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 18px #e50914;
}

.nav-btn,
.primary-btn,
.secondary-btn,
.cta a,
.plan a,
.floating-whatsapp {
  text-decoration: none;
}

.nav-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: #e50914;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(229,9,20,.45);
}

.hero {
  min-height: 100vh;
  padding: 150px 6% 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
}

.badge {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #ffb3b3;
  margin-bottom: 24px;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 rgba(229,9,20,0); }
  50% { box-shadow: 0 0 28px rgba(229,9,20,.35); }
}

.hero h2 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
  max-width: 900px;
  letter-spacing: -4px;
  margin-bottom: 24px;
}

.hero p {
  max-width: 680px;
  color: #c9c9c9;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 34px 0;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 17px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e50914, #9b0008);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 40px rgba(229,9,20,.45);
  transition: .3s;
}

.primary-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

.secondary-btn {
  padding: 17px 28px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
  font-weight: 800;
  transition: .3s;
}

.secondary-btn:hover {
  background: rgba(255,255,255,.14);
}

.stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stats div {
  padding: 18px 22px;
  min-width: 145px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.stats strong {
  display: block;
  font-size: 28px;
  color: #fff;
}

.stats span {
  color: #aaa;
  font-size: 13px;
}

.hero-showcase {
  perspective: 1200px;
}

.screen {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.02)),
    radial-gradient(circle at 50% 0%, rgba(229,9,20,.45), transparent 38%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 35px 90px rgba(0,0,0,.65);
  transform: rotateY(-10deg) rotateX(4deg);
  animation: screenFloat 5s ease-in-out infinite alternate;
  overflow: hidden;
}

@keyframes screenFloat {
  from { transform: rotateY(-10deg) rotateX(4deg) translateY(0); }
  to { transform: rotateY(-4deg) rotateX(2deg) translateY(-18px); }
}

.screen::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.13), transparent 60%);
  transform: rotate(20deg);
  animation: shine 5s infinite;
}

@keyframes shine {
  0% { translate: -45% -45%; }
  100% { translate: 45% 45%; }
}

.screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.screen-top span {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,.35);
  border-radius: 50%;
}

.featured-card {
  position: relative;
  z-index: 2;
  height: 260px;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.9)),
    radial-gradient(circle at 30% 20%, rgba(229,9,20,.85), transparent 32%),
    linear-gradient(135deg, #17171f, #050507);
  border: 1px solid rgba(255,255,255,.13);
}

.play-pulse,
.play-large {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e50914;
  box-shadow: 0 0 0 0 rgba(229,9,20,.8);
  animation: pulsePlay 1.8s infinite;
  margin-bottom: auto;
  font-weight: 900;
}

@keyframes pulsePlay {
  0% { box-shadow: 0 0 0 0 rgba(229,9,20,.65); }
  70% { box-shadow: 0 0 0 22px rgba(229,9,20,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,9,20,0); }
}

.featured-card h3 {
  font-size: 36px;
  margin-bottom: 8px;
}

.featured-card p {
  color: #ddd;
  font-size: 15px;
}

.poster-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.poster {
  height: 150px;
  border-radius: 20px;
  background: linear-gradient(145deg, #2a2a35, #09090d);
  border: 1px solid rgba(255,255,255,.1);
  transition: .35s;
}

.poster:hover {
  transform: translateY(-10px) scale(1.04);
}

.p1 { background: linear-gradient(145deg, #e50914, #260004); }
.p2 { background: linear-gradient(145deg, #333, #080808); }
.p3 { background: linear-gradient(145deg, #7a0008, #111); }
.p4 { background: linear-gradient(145deg, #1b1b25, #e50914); }

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.marquee-track {
  display: flex;
  gap: 55px;
  white-space: nowrap;
  padding: 20px 0;
  animation: marquee 22s linear infinite;
}

.marquee span {
  color: rgba(255,255,255,.78);
  font-weight: 900;
  letter-spacing: 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 100px 6%;
}

.section-title {
  margin-bottom: 42px;
}

.section-title span,
.trailer-text span {
  color: #ff4d55;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.section-title h2,
.trailer-text h2,
.cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  max-width: 850px;
  letter-spacing: -2px;
  margin-top: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  transition: .35s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(229,9,20,.25), transparent 38%);
  opacity: 0;
  transition: .35s;
}

.card:hover {
  transform: translateY(-12px);
  border-color: rgba(229,9,20,.55);
}

.card:hover::before {
  opacity: 1;
}

.icon {
  font-size: 38px;
  margin-bottom: 26px;
}

.card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.card p {
  color: #bdbdbd;
  line-height: 1.6;
}

.cinema-strip {
  padding: 40px 6%;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 18px;
}

.movie-tile {
  min-height: 220px;
  border-radius: 26px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.88)),
    linear-gradient(135deg, #1d1d26, #07070a);
  border: 1px solid rgba(255,255,255,.1);
  transition: .35s;
}

.movie-tile.big {
  min-height: 300px;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.9)),
    radial-gradient(circle at 40% 20%, rgba(229,9,20,.9), transparent 35%),
    #111;
}

.movie-tile:hover {
  transform: scale(1.04);
  border-color: rgba(229,9,20,.55);
}

.movie-tile span {
  font-size: 22px;
  font-weight: 900;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.plan {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  transition: .35s;
}

.plan.featured {
  background:
    radial-gradient(circle at top, rgba(229,9,20,.34), transparent 45%),
    rgba(255,255,255,.075);
  border-color: rgba(229,9,20,.55);
  transform: translateY(-16px);
  box-shadow: 0 0 55px rgba(229,9,20,.18);
}

.plan:hover {
  transform: translateY(-12px);
}

.plan.featured:hover {
  transform: translateY(-22px);
}

.plan-tag {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(229,9,20,.16);
  color: #ffb4b8;
  font-size: 13px;
  margin-bottom: 22px;
}

.plan h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.plan p {
  color: #c7c7c7;
  line-height: 1.6;
  margin-bottom: 22px;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 30px;
  color: #ddd;
}

.plan a {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 16px;
  background: #e50914;
  color: #fff;
  font-weight: 900;
}

.trailer-section {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.trailer-text p {
  color: #c8c8c8;
  font-size: 18px;
  line-height: 1.7;
  margin-top: 20px;
}

.video-box {
  min-height: 430px;
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(229,9,20,.3), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
}

.video-placeholder {
  height: 100%;
  min-height: 390px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.9)),
    radial-gradient(circle at center, rgba(229,9,20,.55), transparent 35%),
    #09090d;
}

.play-large {
  margin: 0 auto 20px;
}

.video-placeholder h3 {
  font-size: 34px;
}

.video-placeholder p {
  color: #bbb;
  margin-top: 8px;
}

.faq {
  max-width: 900px;
  display: grid;
  gap: 14px;
}

details {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin-top: 14px;
  color: #c7c7c7;
  line-height: 1.6;
}

.cta {
  margin: 40px 6% 100px;
  padding: 70px;
  border-radius: 40px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(229,9,20,.45), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
}

.cta h2 {
  margin: 0 auto 20px;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.7;
}

.cta a {
  display: inline-flex;
  padding: 18px 32px;
  border-radius: 16px;
  background: #e50914;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(229,9,20,.45);
}

footer {
  padding: 34px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.3);
}

footer strong {
  color: #fff;
  font-size: 20px;
}

footer p {
  margin-top: 8px;
  max-width: 620px;
  line-height: 1.5;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 16px 22px;
  border-radius: 999px;
  background: #25d366;
  color: #031307;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(37,211,102,.45);
  z-index: 30;
  animation: whatsappBounce 2.4s infinite;
}

@keyframes whatsappBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  nav {
    display: none;
  }

  .hero,
  .trailer-section {
    grid-template-columns: 1fr;
  }

  .cards,
  .plans,
  .cinema-strip {
    grid-template-columns: 1fr 1fr;
  }

  .plan.featured {
    transform: none;
  }

  .hero h2 {
    letter-spacing: -2px;
  }
}

@media (max-width: 650px) {
  .topbar {
    padding: 0 18px;
  }

  .brand h1 {
    font-size: 18px;
  }

  .nav-btn {
    display: none;
  }

  .hero {
    padding: 125px 22px 60px;
  }

  .section,
  .trailer-section {
    padding: 70px 22px;
  }

  .cards,
  .plans,
  .cinema-strip {
    grid-template-columns: 1fr;
  }

  .screen {
    min-height: 430px;
    transform: none;
  }

  .poster-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    margin: 20px 22px 70px;
    padding: 38px 24px;
  }

  footer {
    flex-direction: column;
    padding: 28px 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

.device-section {
  padding: 110px 6%;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 48px;
  align-items: center;
}

.device-content span,
.download-card span {
  color: #ff4d55;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.device-content h2,
.download-card h2 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -2px;
  margin: 14px 0 20px;
}

.device-content p,
.download-card p {
  color: #c9c9c9;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
}

.device-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.device-grid div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  font-weight: 800;
  transition: .3s;
}

.device-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(229,9,20,.55);
}

.phone-preview {
  display: grid;
  place-items: center;
}

.phone {
  width: min(330px, 100%);
  min-height: 620px;
  border-radius: 44px;
  padding: 90px 26px 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(229,9,20,.22), transparent 38%),
    #050505;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 35px 90px rgba(0,0,0,.75), 0 0 45px rgba(229,9,20,.16);
  position: relative;
  animation: phoneFloat 5s ease-in-out infinite alternate;
}

.phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 95px;
  height: 22px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.09);
}

@keyframes phoneFloat {
  from { transform: translateY(0) rotate(-2deg); }
  to { transform: translateY(-18px) rotate(2deg); }
}

.phone-logo {
  text-align: center;
  color: #e50914;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.phone-sub {
  text-align: center;
  color: #cfcfcf;
  font-size: 15px;
  margin-bottom: 54px;
}

.phone-input {
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 20px;
}

.phone-button {
  margin-top: 30px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #e50914;
  font-weight: 950;
  letter-spacing: 2px;
  box-shadow: 0 0 30px rgba(229,9,20,.45);
}

.download-section {
  padding: 70px 6% 110px;
}

.download-card {
  padding: 56px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(229,9,20,.36), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.download-actions {
  display: grid;
  gap: 14px;
  min-width: 260px;
}

.download-btn,
.support-btn {
  text-decoration: none;
  text-align: center;
  padding: 17px 24px;
  border-radius: 16px;
  font-weight: 900;
}

.download-btn {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.download-btn.disabled {
  opacity: .7;
  cursor: not-allowed;
}

.support-btn {
  background: #e50914;
  color: #fff;
  box-shadow: 0 0 35px rgba(229,9,20,.35);
}

@media (max-width: 900px) {
  .device-section,
  .download-card {
    grid-template-columns: 1fr;
  }

  .device-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 34px 24px;
  }
}

