body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fff;
  color: #121a2f;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(239, 43, 39, 0.05), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(18, 26, 47, 0.045), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(239, 43, 39, 0.03), transparent 25%);
  opacity: 0.9;
  z-index: -1;
}

.cinema-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e8ebf3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, min-height 0.3s ease;
}

.cinema-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.header-shell {
  min-height: 88px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(239, 43, 39, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-mark:hover .brand-icon {
  transform: translateY(-2px) rotate(-4deg);
  box-shadow: 0 16px 28px rgba(239, 43, 39, 0.26);
}

.brand-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #121a2f;
}

.brand-text span {
  color: #ef2b27;
}

.header-nav {
  gap: 14px;
}

.header-nav .nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #49556b;
  padding: 0.5rem 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
}

.header-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef2b27, rgba(239, 43, 39, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  color: #121a2f;
  transform: translateY(-1px);
}

.header-nav .nav-link:hover::after,
.header-nav .nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 0.95rem;
  border: 1px solid #dce3ef;
  border-radius: 14px;
  background: #fff;
  color: #49556b;
  box-shadow: 0 10px 24px rgba(18, 26, 47, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.language-switcher i {
  color: #ef2b27;
  font-size: 1rem;
}

.language-switcher select {
  border: 0;
  background: transparent;
  color: #121a2f;
  font-weight: 600;
  outline: none;
  padding-right: 0.25rem;
  cursor: pointer;
}

.language-switcher:hover,
.language-switcher:focus-within {
  transform: translateY(-2px);
  border-color: rgba(239, 43, 39, 0.25);
  box-shadow: 0 14px 30px rgba(18, 26, 47, 0.08);
}

.search-btn {
  border: 0;
  background: transparent;
  color: #121a2f;
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.search-btn:hover {
  background: #f4f6fb;
  color: #ef2b27;
  transform: translateY(-2px) scale(1.05);
}

.download-btn {
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  border: 0;
  background: #ef2b27;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(239, 43, 39, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.download-btn::before,
.hero-btn::before,
.latest-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.download-btn:hover {
  background: #d92521;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(239, 43, 39, 0.24);
}

.download-btn:hover::before,
.hero-btn:hover::before,
.latest-more-btn:hover::before {
  left: 150%;
}

.header-toggler {
  border: 0;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at top center, rgba(239, 43, 39, 0.08), transparent 32%),
    radial-gradient(circle at center, rgba(18, 26, 47, 0.03), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-ambient,
.hero-grid {
  position: absolute;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-ambient {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
}

.hero-ambient-one {
  width: 360px;
  height: 360px;
  top: -30px;
  left: -80px;
  background: radial-gradient(circle, rgba(239, 43, 39, 0.12) 0%, rgba(239, 43, 39, 0.03) 55%, transparent 72%);
  animation: ambientFloatOne 12s ease-in-out infinite;
}

.hero-ambient-two {
  width: 420px;
  height: 420px;
  right: -110px;
  top: 110px;
  background: radial-gradient(circle, rgba(18, 26, 47, 0.08) 0%, rgba(239, 43, 39, 0.05) 46%, transparent 72%);
  animation: ambientFloatTwo 14s ease-in-out infinite;
}

.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 26, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 26, 47, 0.03) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9) 28%, transparent 74%);
  opacity: 0.45;
  animation: gridDrift 24s linear infinite;
}

.hero-particle {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(239, 43, 39, 0.35) 42%, rgba(239, 43, 39, 0.04) 72%, transparent 100%);
  box-shadow: 0 0 24px rgba(239, 43, 39, 0.14);
  opacity: 0.7;
}

.particle-one {
  width: 14px;
  height: 14px;
  top: 16%;
  left: 10%;
  animation: particleRise 12s linear infinite;
}

.particle-two {
  width: 22px;
  height: 22px;
  top: 66%;
  left: 8%;
  animation: particleRise 15s linear infinite 1.8s;
}

.particle-three {
  width: 12px;
  height: 12px;
  top: 22%;
  left: 48%;
  animation: particleRise 11s linear infinite 0.8s;
}

.particle-four {
  width: 18px;
  height: 18px;
  top: 14%;
  right: 18%;
  animation: particleRise 13s linear infinite 2.2s;
}

.particle-five {
  width: 24px;
  height: 24px;
  top: 72%;
  right: 10%;
  animation: particleRise 16s linear infinite 1.1s;
}

.particle-six {
  width: 10px;
  height: 10px;
  top: 46%;
  right: 34%;
  animation: particleRise 10s linear infinite 2.8s;
}

.hero-content {
  max-width: 720px;
  margin: 0;
  color: #121a2f;
  position: relative;
  transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
  transition: transform 0.4s ease-out;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(28px);
}

.page-ready .hero-content > * {
  animation: heroReveal 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.page-ready .hero-content > *:nth-child(1) { animation-delay: 0.08s; }
.page-ready .hero-content > *:nth-child(2) { animation-delay: 0.18s; }
.page-ready .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.page-ready .hero-content > *:nth-child(4) { animation-delay: 0.42s; }
.page-ready .hero-content > *:nth-child(5) { animation-delay: 0.54s; }
.page-ready .hero-content > *:nth-child(6) { animation-delay: 0.66s; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(239, 43, 39, 0.25);
  border-radius: 999px;
  color: #ef2b27;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(18, 26, 47, 0.05);
  animation: badgePulse 4.6s ease-in-out infinite;
}

.hero-title {
  margin: 2rem 0 1rem;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.02;
  font-weight: 600;
  color: #121a2f;
  letter-spacing: -0.04em;
}

.hero-title-main {
  color: #121a2f;
}

.hero-title-accent {
  color: #ef2b27;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
  text-decoration-color: rgba(239, 43, 39, 0.85);
}

.hero-subtitle {
  max-width: 660px;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #5b667d;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 220px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-btn-primary {
  background: #ef2b27;
  color: #fff;
  box-shadow: 0 18px 30px rgba(239, 43, 39, 0.22);
}

.hero-btn-primary:hover {
  background: #d92521;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(239, 43, 39, 0.26);
}

.hero-btn-secondary {
  background: #fff;
  color: #465268;
  border: 1px solid #d8deea;
  box-shadow: 0 16px 30px rgba(18, 26, 47, 0.08);
}

.hero-btn-secondary:hover {
  background: #f7f9fc;
  color: #121a2f;
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(18, 26, 47, 0.11);
}

.hero-platforms {
  margin-top: 3.8rem;
}

.hero-highlight-tag {
  display: inline-grid;
  gap: 12px;
  justify-items: center;
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(229, 9, 20, 0.12);
  box-shadow: 0 18px 36px rgba(229, 9, 20, 0.08);
}

.hero-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #e50914;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(229, 9, 20, 0.18);
}

.hero-highlight-tag p {
  margin: 0;
  max-width: 620px;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.hero-platforms p {
  margin-bottom: 0.85rem;
  color: #657089;
  font-weight: 700;
}

.hero-platforms ul {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #5b667d;
  flex-wrap: wrap;
}

.hero-platforms li {
  position: relative;
  padding-right: 18px;
}

.hero-platforms li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c2cad7;
  transform: translateY(-50%);
}

.hero-ticker {
  position: relative;
  margin-top: 2rem;
  max-width: 560px;
  border: 1px solid rgba(220, 227, 239, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(18, 26, 47, 0.07);
  overflow: hidden;
}

.hero-ticker::before,
.hero-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 1;
  pointer-events: none;
}

.hero-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.hero-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.hero-ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 0.9rem 0;
  animation: tickerScroll 18s linear infinite;
}

.hero-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 100%);
  color: #243149;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(239, 43, 39, 0.12);
}

.hero-ticker-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff7b6b 0%, #ef2b27 100%);
  box-shadow: 0 0 0 6px rgba(239, 43, 39, 0.08);
}

.hero-scroll-indicator {
  margin: 4.25rem 0 0;
  width: 34px;
  display: block;
  text-decoration: none;
}

.hero-scroll-mouse {
  position: relative;
  width: 34px;
  height: 54px;
  display: block;
  margin: 0 auto;
  border: 2px solid #cfd7e4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(18, 26, 47, 0.08);
}

.hero-scroll-wheel {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: #ef2b27;
  transform: translateX(-50%);
  animation: scrollWheelDrop 2s ease-in-out infinite;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
}

.hero-showcase-glow {
  position: absolute;
  inset: 8% -3% 10% 12%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 28% 24%, rgba(239, 43, 39, 0.22), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(29, 78, 216, 0.2), transparent 32%);
  filter: blur(34px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-showcase-main,
.hero-mini-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
}

.hero-showcase-main {
  min-height: 100%;
  border-radius: 38px;
  border: 1px solid rgba(225, 231, 242, 0.95);
  box-shadow: 0 28px 58px rgba(18, 26, 47, 0.2);
  transform: translateY(28px) scale(0.98);
  opacity: 0;
}

.page-ready .hero-showcase-main {
  animation: heroReveal 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s forwards;
}

.hero-showcase-screen {
  position: relative;
  padding: 28px 28px 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #f2f6ff 100%);
}

.hero-showcase-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-showcase-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(239, 43, 39, 0.08);
  color: #ef2b27;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-showcase-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 26, 47, 0.06);
  color: #56637b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef2b27;
  box-shadow: 0 0 0 6px rgba(239, 43, 39, 0.12);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.hero-showcase-visual {
  position: relative;
  width: 100%;
  min-height: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(239, 43, 39, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 246, 255, 0.95) 100%);
  box-shadow: inset 0 0 0 1px rgba(223, 229, 240, 0.9);
}

.hero-showcase-visual::after {
  content: "";
  position: absolute;
  inset: -15% auto -15% -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(14deg);
  animation: visualSweep 6.5s ease-in-out infinite;
}

.hero-showcase-ring,
.hero-showcase-core,
.hero-float-card,
.hero-showcase-wave,
.hero-showcase-beam {
  position: absolute;
}

.hero-showcase-ring {
  border: 1px dashed rgba(18, 26, 47, 0.14);
  border-radius: 50%;
}

.ring-outer {
  width: 72%;
  aspect-ratio: 1 / 1;
  inset: auto;
  animation: orbitSpin 16s linear infinite;
}

.ring-inner {
  width: 46%;
  aspect-ratio: 1 / 1;
  inset: auto;
  border-style: solid;
  border-color: rgba(239, 43, 39, 0.12);
  animation: orbitSpinReverse 12s linear infinite;
}

.hero-showcase-beam {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 43, 39, 0.18), rgba(239, 43, 39, 0) 72%);
  filter: blur(8px);
  animation: beamPulse 5.5s ease-in-out infinite;
}

.hero-showcase-wave {
  border-radius: 50%;
  border: 1px solid rgba(239, 43, 39, 0.18);
}

.wave-one {
  width: 130px;
  height: 130px;
  animation: waveExpand 4.8s ease-out infinite;
}

.wave-two {
  width: 130px;
  height: 130px;
  animation: waveExpand 4.8s ease-out infinite 2.4s;
}

.hero-showcase-core {
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 2;
}

.hero-core-pulse {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0) 38%), linear-gradient(145deg, #121a2f 0%, #223a73 42%, #ef2b27 112%);
  box-shadow: 0 22px 42px rgba(18, 26, 47, 0.22);
  animation: showcaseCorePulse 5s ease-in-out infinite;
}

.hero-core-disc {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #223a73;
  font-size: 3.7rem;
  box-shadow: 0 18px 36px rgba(14, 21, 39, 0.18);
}

.hero-core-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #4d5b72;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-float-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(221, 228, 241, 0.95);
  box-shadow: 0 18px 34px rgba(18, 26, 47, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.hero-float-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #18284c 0%, #ef2b27 135%);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 14px 24px rgba(18, 26, 47, 0.16);
}

.hero-float-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-float-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
  color: #13203a;
}

.hero-float-copy small {
  font-size: 0.8rem;
  color: #66748b;
}

.card-stream {
  top: 30px;
  left: 24px;
  animation: floatCardDrift 5.8s ease-in-out infinite;
}

.card-discover {
  top: 34px;
  right: 24px;
  animation: floatCardDrift 6.2s ease-in-out infinite 0.6s;
}

.card-languages {
  bottom: 36px;
  left: 36px;
  animation: floatCardDrift 5.6s ease-in-out infinite 1.1s;
}

.card-offline {
  bottom: 42px;
  right: 30px;
  animation: floatCardDrift 6.6s ease-in-out infinite 1.5s;
}

.hero-float-card.active {
  background: linear-gradient(160deg, #fffdfd 0%, #fff4f4 100%);
  border-color: rgba(239, 43, 39, 0.3);
  box-shadow: 0 24px 44px rgba(18, 26, 47, 0.16);
}

.hero-showcase-dashboard {
  margin-top: 18px;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(140deg, #17255f 0%, #10204f 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-showcase-copy {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-showcase-copy-text {
  flex: 1;
}

.hero-showcase-step,
.hero-mini-card-step {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}

.hero-showcase-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
}

.hero-showcase-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-showcase-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-mini-card {
  min-height: 88px;
  display: grid;
  gap: 12px;
  align-items: center;
  justify-items: center;
  padding: 14px 10px 12px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.page-ready .hero-mini-card {
  animation: heroMiniReveal 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.page-ready .hero-mini-card:nth-child(1) { animation-delay: 0.4s; }
.page-ready .hero-mini-card:nth-child(2) { animation-delay: 0.5s; }
.page-ready .hero-mini-card:nth-child(3) { animation-delay: 0.6s; }
.page-ready .hero-mini-card:nth-child(4) { animation-delay: 0.7s; }

.hero-mini-card-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
}

.hero-mini-card.active {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, rgba(239, 43, 39, 0.2) 100%);
  border-color: rgba(239, 43, 39, 0.28);
  box-shadow: 0 22px 34px rgba(8, 12, 24, 0.22);
}

.hero-mini-card.active .hero-mini-card-icon {
  background: linear-gradient(160deg, #ffffff 0%, #fff1f1 100%);
  color: #ef2b27;
  box-shadow: none;
}

.hero-mini-card.active .hero-mini-card-step {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.motion-band {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  background: linear-gradient(90deg, #121a2f 0%, #1b2f63 48%, #ef2b27 100%);
}

.motion-band::before,
.motion-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.motion-band::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.14));
}

.motion-band::after {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 110px 100%;
  opacity: 0.3;
}

.motion-band-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: tickerScroll 22s linear infinite;
}

.motion-band-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.motion-band-track span::after {
  content: "•";
  color: rgba(255, 255, 255, 0.7);
}

.latest-section {
  padding: 32px 0 86px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  position: relative;
  overflow: hidden;
}

.latest-section .container {
  position: relative;
  z-index: 1;
}

.latest-ambient,
.latest-spotlight {
  position: absolute;
  pointer-events: none;
}

.latest-ambient {
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.6;
}

.latest-ambient-one {
  width: 320px;
  height: 320px;
  top: 30px;
  left: -120px;
  background: radial-gradient(circle, rgba(239, 43, 39, 0.11), transparent 68%);
  animation: ambientFloatOne 14s ease-in-out infinite;
}

.latest-ambient-two {
  width: 380px;
  height: 380px;
  right: -140px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.1), transparent 70%);
  animation: ambientFloatTwo 16s ease-in-out infinite;
}

.latest-spotlight {
  top: 14%;
  left: 50%;
  width: min(74vw, 920px);
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 68%);
  transform: translateX(-50%) translateY(var(--latest-shift, 0px));
  opacity: 0.9;
}

.latest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.latest-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.latest-title span {
  color: #121a2f;
}

.latest-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 16px;
  background: #f1f3f8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.latest-tab {
  min-width: 94px;
  border: 0;
  padding: 0.8rem 1.25rem;
  border-radius: 12px;
  background: transparent;
  color: #49556b;
  font-weight: 700;
  transition: all 0.25s ease;
}

.latest-tab:hover {
  transform: translateY(-1px);
  color: #121a2f;
}

.latest-tab.active {
  background: #ef2b27;
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 43, 39, 0.2);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.latest-card {
  display: block;
  position: relative;
  min-height: 0;
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #121212;
  box-shadow: 0 18px 38px rgba(18, 26, 47, 0.12);
  isolation: isolate;
  transform: translateY(34px) scale(0.96);
  opacity: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease;
  animation: posterFloat 5.5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.latest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.72) 100%);
  z-index: -1;
}

.latest-card::after {
  content: "";
  position: absolute;
  inset: -120% 35% auto -45%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.latest-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.latest-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 50px rgba(18, 26, 47, 0.2);
}

.latest-card.in-view:nth-child(odd) {
  animation: posterFloat 5.5s ease-in-out infinite;
}

.latest-card.in-view:nth-child(even) {
  animation: posterFloatAlt 6.4s ease-in-out infinite;
}

.latest-card:hover::after {
  transform: rotate(18deg) translateX(170%);
  opacity: 1;
}

.latest-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 42px;
  padding: 0.35rem 0.55rem;
  border-radius: 12px;
  background: #ef2b27;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.latest-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 18px 18px;
}

.latest-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
  font-weight: 600;
}

.latest-name {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
}

.latest-genre {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.latest-more {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.latest-more-btn {
  min-width: 180px;
  min-height: 56px;
  padding: 0.9rem 1.6rem;
  border-radius: 14px;
  background: #ef2b27;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 28px rgba(239, 43, 39, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.latest-more-btn:hover {
  background: #d92521;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(239, 43, 39, 0.24);
}

.latest-more-btn:disabled {
  background: #cfd6e3;
  color: #61708c;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.choose-section {
  position: relative;
  overflow: hidden;
  padding: 28px 0 96px;
  background:
    radial-gradient(circle at top center, rgba(239, 43, 39, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
}

.choose-grid-glow,
.choose-line {
  position: absolute;
  pointer-events: none;
}

.choose-grid-glow {
  inset: 18% 10% auto 10%;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(239, 43, 39, 0.09), rgba(79, 144, 255, 0.05) 42%, transparent 72%);
  filter: blur(18px);
  transform: translateY(var(--choose-shift, 0px));
}

.choose-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 43, 39, 0), rgba(239, 43, 39, 0.85), rgba(79, 144, 255, 0.65), rgba(239, 43, 39, 0));
  opacity: 0.5;
}

.choose-line-one {
  top: 24%;
  left: -10%;
  width: 260px;
  animation: signalMove 9s ease-in-out infinite;
}

.choose-line-two {
  bottom: 18%;
  right: -12%;
  width: 280px;
  animation: signalMoveReverse 11s ease-in-out infinite;
}

.choose-ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.75;
}

.choose-ambient-one {
  width: 260px;
  height: 260px;
  top: 30px;
  left: -90px;
  background: radial-gradient(circle, rgba(239, 43, 39, 0.12) 0%, transparent 72%);
  animation: chooseDriftOne 10s ease-in-out infinite;
}

.choose-ambient-two {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(18, 26, 47, 0.08) 0%, rgba(239, 43, 39, 0.04) 48%, transparent 72%);
  animation: chooseDriftTwo 14s ease-in-out infinite;
}

.choose-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.choose-title {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.choose-title span {
  color: #121a2f;
}

.choose-subtitle {
  margin: 1rem 0 0;
  font-size: 1.2rem;
  color: #5b667d;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
  perspective: 1200px;
}

.choose-card {
  padding: 32px 32px 30px;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(18, 26, 47, 0.08);
  transform: translateY(34px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.choose-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.choose-card:hover {
  transform: translateY(-10px) rotateX(var(--choose-rotate-x, 0deg)) rotateY(var(--choose-rotate-y, 0deg));
  box-shadow: 0 24px 52px rgba(18, 26, 47, 0.14);
}

.choose-card::after,
.benefit-card::after,
.faq-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 43, 39, 0.09), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(circle at var(--choose-glow-x, 50%) var(--choose-glow-y, 50%), rgba(239, 43, 39, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.choose-card:hover::after,
.benefit-card:hover::after,
.faq-card:hover::after {
  opacity: 1;
}

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

.choose-card-accent {
  border-color: rgba(239, 43, 39, 0.35);
  background: linear-gradient(180deg, rgba(255, 242, 242, 0.96) 0%, rgba(255, 249, 249, 0.98) 100%);
}

.choose-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 28px rgba(239, 43, 39, 0.18);
  transition: transform 0.35s ease;
  position: relative;
  transform: translateZ(34px);
}

.choose-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  border: 1px solid rgba(239, 43, 39, 0.14);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.icon-pink {
  background: linear-gradient(180deg, #f048b2 0%, #f55d5b 100%);
}

.icon-orange {
  background: linear-gradient(180deg, #ff8a2a 0%, #ff4d4f 100%);
}

.icon-red {
  background: linear-gradient(180deg, #ff4c5a 0%, #ef2b27 100%);
}

.choose-card h3 {
  margin: 28px 0 14px;
  font-size: 1.05rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  color: #121a2f;
}

.choose-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #55627b;
}

.choose-card:hover .choose-icon,
.platform-card:hover .platform-icon {
  transform: translateY(-4px) scale(1.06);
}

.choose-card:hover .choose-icon::after {
  opacity: 1;
  transform: scale(1.08);
}

.choose-card h3,
.choose-card p {
  position: relative;
  z-index: 1;
  transform: translateZ(20px);
}

.platforms-section {
  padding: 12px 0 100px;
  background:
    radial-gradient(circle at top center, rgba(59, 130, 246, 0.08), transparent 24%),
    radial-gradient(circle at 20% 40%, rgba(239, 43, 39, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
}

.platforms-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 46px;
}

.platforms-copy {
  max-width: 760px;
}

.platforms-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 43, 39, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #ef2b27;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(18, 26, 47, 0.05);
}

.platforms-title {
  margin: 1rem 0 0;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.platforms-title span {
  color: #121a2f;
}

.platforms-subtitle {
  margin: 1rem 0 0;
  font-size: 1.2rem;
  color: #5b667d;
}

.platforms-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 34px;
  padding: 34px 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.85), transparent 30%),
    linear-gradient(145deg, #10192f 0%, #18284c 52%, #ef2b27 135%);
  color: #fff;
  box-shadow: 0 26px 60px rgba(18, 26, 47, 0.16);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.65s ease, opacity 0.65s ease;
}

.platforms-signal {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  opacity: 0.72;
}

.signal-one {
  top: 26%;
  left: -12%;
  width: 180px;
  animation: signalMove 7.8s ease-in-out infinite;
}

.signal-two {
  top: 58%;
  right: -18%;
  width: 220px;
  animation: signalMoveReverse 9.4s ease-in-out infinite;
}

.signal-three {
  bottom: 16%;
  left: 16%;
  width: 140px;
  animation: signalPulse 4.2s ease-in-out infinite;
}

.platforms-hero-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.platforms-hero-card h3 {
  position: relative;
  margin: 110px 0 12px;
  font-size: 2rem;
  font-weight: 700;
}

.platforms-hero-card p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  max-width: 300px;
}

.platforms-hero-icon {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 2.3rem;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.15);
  animation: heroCardFloat 5.6s ease-in-out infinite;
}

.platforms-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.orbit-one {
  width: 180px;
  height: 180px;
  top: -30px;
  right: -18px;
  animation: orbitSpin 12s linear infinite;
}

.orbit-two {
  width: 260px;
  height: 260px;
  bottom: -100px;
  right: -70px;
  animation: orbitSpinReverse 16s linear infinite;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.platform-card {
  position: relative;
  padding: 30px 24px 26px;
  border: 1px solid rgba(220, 227, 239, 0.9);
  border-radius: 30px;
  text-align: left;
  box-shadow: 0 20px 46px rgba(18, 26, 47, 0.08);
  transform: translateY(34px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.platform-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.platform-card:hover {
  transform: translateY(-10px) rotate(-1deg) scale(1.02);
  box-shadow: 0 28px 58px rgba(18, 26, 47, 0.16);
}

.platform-icon {
  width: 88px;
  height: 88px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: #fff;
  font-size: 2.4rem;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.18);
  animation: platformPulse 4.2s ease-in-out infinite;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #53627d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  font-weight: 700;
  color: #121a2f;
}

.platform-card p {
  margin: 0;
  color: #5b667d;
  line-height: 1.7;
  font-size: 0.97rem;
}

.platform-android {
  background: linear-gradient(180deg, #effff8 0%, #e8fbf4 100%);
}

.platform-ios {
  background: linear-gradient(180deg, #fcfdff 0%, #f3f7fd 100%);
}

.platform-macos {
  background: linear-gradient(180deg, #edf8ff 0%, #e5f5ff 100%);
}

.platform-web {
  background: linear-gradient(180deg, #fcf6ff 0%, #f6efff 100%);
}

.platform-tv {
  background: linear-gradient(180deg, #fff5f3 0%, #fff0ee 100%);
}

.platform-android .platform-icon {
  background: linear-gradient(180deg, #35c46c 0%, #14a76c 100%);
}

.platform-ios .platform-icon {
  background: linear-gradient(180deg, #8f99ab 0%, #4c5669 100%);
}

.platform-macos .platform-icon {
  background: linear-gradient(180deg, #4f90ff 0%, #2b67e8 100%);
}

.platform-web .platform-icon {
  background: linear-gradient(180deg, #b26cff 0%, #8938e0 100%);
}

.platform-tv .platform-icon {
  background: linear-gradient(180deg, #ff6669 0%, #ef2b27 100%);
}

.benefits-section {
  padding: 0 0 56px;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.benefit-card {
  padding: 34px 32px 30px;
  border: 1px solid #dde5f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(18, 26, 47, 0.06);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(18, 26, 47, 0.1);
}

.benefit-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  font-weight: 700;
  color: #121a2f;
}

.benefit-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #55627b;
}

.faq-section {
  padding: 14px 0 72px;
  background:
    radial-gradient(circle at top center, rgba(239, 43, 39, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto 38px;
}

.faq-title {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #121a2f;
}

.faq-title span {
  color: #121a2f;
}

.faq-subtitle {
  margin: 1rem 0 0;
  color: #5b667d;
  font-size: 1.1rem;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 22px;
}

.faq-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 26px;
  border: 1px solid #dde5f0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(18, 26, 47, 0.06);
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.faq-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(18, 26, 47, 0.1);
  border-color: rgba(239, 43, 39, 0.18);
}

.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ef2b27;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(239, 43, 39, 0.18);
  margin-top: 2px;
}

.faq-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #121a2f;
}

.faq-content p {
  margin: 0;
  color: #5b667d;
  font-size: 1.02rem;
  line-height: 1.7;
}

.site-footer {
  padding: 56px 0 28px;
  background: #141c2c;
  color: #c5d0e0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 43, 39, 0.14), transparent 68%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-brand-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.footer-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-brand-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.footer-brand-text span {
  color: #ef2b27;
}

.footer-copy,
.footer-subscribe p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #a9b4c8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #dfe7f3;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #ef2b27;
  color: #fff;
}

.footer-links h4,
.footer-subscribe h4 {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.footer-links a {
  display: block;
  margin-bottom: 14px;
  color: #d5deea;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
  color: #ef2b27;
  transform: translateX(4px);
}

.subscribe-form {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #8f9cb2;
}

.subscribe-form button {
  width: 54px;
  border: 0;
  background: #ef2b27;
  color: #fff;
  font-size: 1.2rem;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #a9b4c8;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  color: #d5deea;
  text-decoration: none;
}

.movie-card {
  transition: 0.3s;
}

.movie-card:hover {
  transform: scale(1.05);
}

@keyframes posterFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes posterFloatAlt {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 8px;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(36px, 18px, 0) scale(1.08);
  }
}

@keyframes ambientFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-24px, -18px, 0) scale(1.06);
  }
}

@keyframes gridDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 24px, 0);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(18, 26, 47, 0.05);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 22px 44px rgba(239, 43, 39, 0.09);
    transform: translateY(-2px);
  }
}

@keyframes scrollWheelDrop {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(14px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
  }
}

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

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

@keyframes showcaseCorePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 22px 42px rgba(18, 26, 47, 0.22);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 28px 52px rgba(18, 26, 47, 0.28);
  }
}

@keyframes orbitBadgeFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes heroMiniReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCardDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes beamPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.95;
  }
}

@keyframes waveExpand {
  0% {
    transform: scale(0.65);
    opacity: 0;
  }
  25% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 43, 39, 0.18);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 43, 39, 0.06);
  }
}

@keyframes particleRise {
  0% {
    transform: translate3d(0, 20px, 0) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.72;
  }
  50% {
    transform: translate3d(18px, -24px, 0) scale(1);
  }
  100% {
    transform: translate3d(-12px, -74px, 0) scale(0.84);
    opacity: 0;
  }
}

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

@keyframes visualSweep {
  0%,
  100% {
    transform: translateX(0) rotate(14deg);
    opacity: 0;
  }
  18% {
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  60% {
    transform: translateX(430px) rotate(14deg);
    opacity: 0;
  }
}

@keyframes chooseDriftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(30px, -22px, 0) scale(1.08);
  }
}

@keyframes chooseDriftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-26px, 18px, 0) scale(1.06);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes signalMove {
  0%,
  100% {
    transform: translateX(0) scaleX(0.9);
    opacity: 0.2;
  }
  50% {
    transform: translateX(64px) scaleX(1.08);
    opacity: 0.95;
  }
}

@keyframes signalMoveReverse {
  0%,
  100% {
    transform: translateX(0) scaleX(0.92);
    opacity: 0.18;
  }
  50% {
    transform: translateX(-78px) scaleX(1.06);
    opacity: 0.92;
  }
}

@keyframes signalPulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.3;
  }
  50% {
    transform: scaleX(1.22);
    opacity: 0.95;
  }
}

/* OTT Dark Theme Overrides */
body {
  background: #f7f7f5;
  color: #121a2f;
}

body::before {
  background:
    radial-gradient(circle at 18% 10%, rgba(229, 9, 20, 0.1), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(18, 26, 47, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  opacity: 1;
}

.cinema-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  border-bottom: 1px solid rgba(18, 26, 47, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.cinema-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.brand-text,
.hero-title,
.hero-title-main,
.latest-title span,
.choose-title span,
.platforms-title span,
.faq-title,
.faq-title span,
.platform-card h3,
.benefit-card h3,
.faq-content h3 {
  color: #121a2f;
}

.header-nav .nav-link {
  color: #49556b;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  color: #121a2f;
}

.header-nav .nav-link::after {
  background: linear-gradient(90deg, #e50914, rgba(229, 9, 20, 0.12));
}

.language-switcher {
  border: 1px solid rgba(18, 26, 47, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: #49556b;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.language-switcher select {
  color: #121a2f;
}

.language-switcher:hover,
.language-switcher:focus-within {
  border-color: rgba(229, 9, 20, 0.35);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.download-btn,
.hero-btn-primary,
.latest-tab.active,
.latest-more-btn,
.faq-icon,
.subscribe-form button {
  background: #e50914;
}

.download-btn,
.hero-btn-primary,
.latest-more-btn {
  box-shadow: 0 16px 30px rgba(229, 9, 20, 0.26);
}

.download-btn:hover,
.hero-btn-primary:hover,
.latest-more-btn:hover {
  background: #f6121d;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(255, 255, 255, 0.74) 100%),
    radial-gradient(circle at 78% 28%, rgba(229, 9, 20, 0.12), transparent 28%),
    linear-gradient(180deg, #fcfcfc 0%, #f3f5f9 100%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(18, 26, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 26, 47, 0.03) 1px, transparent 1px);
}

.hero-content,
.hero-showcase-copy p,
.hero-mini-card-step,
.hero-showcase-status,
.hero-core-label,
.motion-band-track,
.footer-brand-text {
  color: #121a2f;
}

.hero-badge {
  border-color: rgba(229, 9, 20, 0.28);
  color: #e50914;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero-title-accent {
  color: #e50914;
  text-decoration: none;
}

.hero-subtitle,
.hero-platforms ul,
.hero-float-copy small,
.choose-subtitle,
.platforms-subtitle,
.benefit-card p,
.faq-subtitle,
.faq-content p,
.platform-card p {
  color: #5b667d;
}

.hero-platforms p {
  color: #657089;
}

.hero-ticker {
  border: 1px solid rgba(18, 26, 47, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.07);
}

.hero-ticker-track span {
  background: rgba(255, 255, 255, 0.96);
  color: #243149;
  box-shadow: inset 0 0 0 1px rgba(229, 9, 20, 0.08);
}

.hero-showcase-main,
.hero-mini-card {
  background: rgba(255, 255, 255, 0.98);
}

.hero-showcase-main,
.choose-card,
.platform-card,
.benefit-card,
.faq-card {
  border: 1px solid rgba(18, 26, 47, 0.08);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.hero-showcase-screen,
.hero-showcase-dashboard,
.choose-card,
.benefit-card,
.faq-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.hero-showcase-visual {
  background:
    radial-gradient(circle at center, rgba(229, 9, 20, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 246, 255, 1) 100%);
  box-shadow: inset 0 0 0 1px rgba(18, 26, 47, 0.05);
}

.hero-showcase-status,
.hero-core-label,
.hero-btn-secondary,
.hero-float-card,
.language-switcher,
.latest-tabs {
  background: rgba(255, 255, 255, 0.92);
}

.hero-btn-secondary,
.hero-float-card,
.latest-tabs,
.latest-tab,
.platform-chip {
  border-color: rgba(18, 26, 47, 0.08);
}

.hero-btn-secondary {
  color: #465268;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.hero-btn-secondary:hover {
  background: #f7f9fc;
  color: #121a2f;
}

.hero-float-copy strong,
.choose-card h3 {
  color: #121a2f;
}

.hero-float-card.active {
  background: linear-gradient(160deg, rgba(229, 9, 20, 0.12) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(229, 9, 20, 0.34);
}

.motion-band {
  background: linear-gradient(90deg, #fff6f6 0%, #fff 48%, #fff2f3 100%);
}

.latest-section,
.choose-section,
.platforms-section,
.benefits-section,
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.latest-tab {
  color: #49556b;
}

.latest-tab:hover {
  color: #121a2f;
}

.latest-card {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.latest-card::before {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 24%, rgba(15, 23, 42, 0.76) 100%);
}

.latest-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.2);
}

.platform-card {
  border-radius: 18px;
}

.platform-android {
  background: linear-gradient(180deg, #effff8 0%, #e8fbf4 100%);
}

.platform-ios {
  background: linear-gradient(180deg, #fcfdff 0%, #f3f7fd 100%);
}

.platform-macos {
  background: linear-gradient(180deg, #edf8ff 0%, #e5f5ff 100%);
}

.platform-web {
  background: linear-gradient(180deg, #fcf6ff 0%, #f6efff 100%);
}

.platform-tv {
  background: linear-gradient(180deg, #fff5f3 0%, #fff0ee 100%);
}

.site-footer {
  background: #141c2c;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-content {
    transform: none !important;
  }
}

@media (max-width: 991.98px) {
  .header-shell {
    min-height: 78px;
  }

  .brand-text {
    font-size: 1.7rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1.25rem 0 0.5rem;
    border-top: 1px solid #e8ebf3;
  }

  .header-nav {
    gap: 4px;
    margin-bottom: 1rem;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 60px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: none;
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero-showcase-visual {
    min-height: 340px;
  }

  .hero-showcase-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-float-card {
    min-width: 132px;
    padding: 12px 14px;
  }

  .hero-mini-card {
    min-height: 96px;
  }

  .hero-title-accent {
    text-underline-offset: 7px;
  }

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

  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

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

  .platforms-heading {
    grid-template-columns: 1fr;
  }

  .platforms-hero-card {
    min-height: 280px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 575.98px) {
  .brand-text {
    font-size: 1.45rem;
  }

  .download-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero-layout {
    gap: 26px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    font-size: 0.92rem;
    padding: 0.65rem 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-scroll-indicator {
    margin-top: 3.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    gap: 12px;
    justify-content: center;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
  }

  .hero-platforms ul {
    justify-content: center;
    gap: 12px;
  }

  .hero-ticker {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-platforms li {
    padding-right: 12px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero-showcase-screen {
    padding: 22px;
  }

  .hero-showcase-visual {
    min-height: 300px;
    border-radius: 24px;
  }

  .hero-showcase-core {
    width: 150px;
    height: 150px;
  }

  .hero-core-disc {
    width: 82px;
    height: 82px;
    font-size: 3rem;
  }

  .hero-showcase-dashboard {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-showcase-copy {
    align-items: center;
  }

  .hero-showcase-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-showcase-copy h3 {
    font-size: 1.45rem;
  }

  .hero-showcase-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-float-card {
    min-width: 0;
    width: calc(50% - 12px);
    padding: 10px 12px;
    border-radius: 18px;
  }

  .hero-float-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    font-size: 1.1rem;
  }

  .hero-float-copy strong {
    font-size: 0.88rem;
  }

  .hero-float-copy small {
    font-size: 0.72rem;
  }

  .card-stream {
    top: 18px;
    left: 16px;
  }

  .card-discover {
    top: 18px;
    right: 16px;
  }

  .card-languages {
    bottom: 20px;
    left: 16px;
  }

  .card-offline {
    bottom: 20px;
    right: 16px;
  }

  .hero-mini-card {
    min-height: 88px;
    border-radius: 22px;
    padding: 14px 8px 10px;
  }

  .hero-mini-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 1.25rem;
  }

  .hero-mini-card-step {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 0.95rem;
  }

  .latest-section {
    padding: 20px 0 60px;
  }

  .latest-header {
    margin-bottom: 24px;
  }

  .latest-tabs {
    width: 100%;
  }

  .latest-tab {
    flex: 1;
  }

  .latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .latest-card {
    min-height: 0;
    border-radius: 16px;
  }

  .latest-name {
    font-size: 1.08rem;
  }

  .latest-genre {
    font-size: 0.84rem;
  }

  .latest-more {
    margin-top: 28px;
  }

  .latest-more-btn {
    width: 100%;
  }

  .choose-section {
    padding: 12px 0 64px;
  }

  .choose-heading {
    margin-bottom: 28px;
  }

  .choose-subtitle {
    font-size: 1rem;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .choose-card {
    padding: 24px 22px;
    border-radius: 20px;
  }

  .choose-icon {
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
  }

  .platforms-section {
    padding: 0 0 72px;
  }

  .platforms-heading {
    margin-bottom: 28px;
    gap: 20px;
  }

  .platforms-subtitle {
    font-size: 1rem;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .platform-card {
    padding: 22px 16px 20px;
    border-radius: 22px;
  }

  .platform-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 2rem;
  }

  .platform-card h3 {
    font-size: 1rem;
  }

  .platform-card p {
    font-size: 0.9rem;
  }

  .platforms-hero-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .platforms-hero-card h3 {
    margin-top: 78px;
    font-size: 1.55rem;
  }

  .platforms-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    font-size: 1.9rem;
  }

  .benefits-section {
    padding-bottom: 40px;
  }

  .benefits-grid {
    gap: 18px;
  }

  .benefit-card {
    padding: 24px 22px;
    border-radius: 20px;
  }

  .faq-section {
    padding: 8px 0 56px;
  }

  .faq-heading {
    margin-bottom: 24px;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-card {
    padding: 20px 18px;
    gap: 14px;
    border-radius: 18px;
  }

  .faq-content h3 {
    font-size: 1.08rem;
  }

  .faq-content p {
    font-size: 0.96rem;
  }

  .site-footer {
    padding: 44px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand-text {
    font-size: 1.7rem;
  }

  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* Cinematic OTT refresh */
:root {
  --bg-main: #ffffff;
  --bg-panel: rgba(255, 255, 255, 0.94);
  --bg-panel-strong: rgba(255, 255, 255, 0.98);
  --surface-border: rgba(229, 9, 20, 0.1);
  --text-main: #181818;
  --text-soft: #666666;
  --brand-red: #e50914;
  --brand-gold: #ffd1d4;
  --brand-blue: #f8f8f8;
  --shadow-cinematic: 0 24px 60px rgba(20, 20, 20, 0.08);
}

html {
  background:
    radial-gradient(circle at top left, rgba(229, 9, 20, 0.08), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(229, 9, 20, 0.05), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 44%, #ffffff 100%);
}

body {
  font-family: "Manrope", sans-serif;
  background: transparent;
  color: var(--text-main);
}

body::before {
  background:
    radial-gradient(circle at 10% 10%, rgba(229, 9, 20, 0.08), transparent 20%),
    radial-gradient(circle at 90% 18%, rgba(229, 9, 20, 0.05), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(229, 9, 20, 0.04), transparent 22%);
  opacity: 1;
}

.cinema-header,
.cinema-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 9, 20, 0.08);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.06);
}

.brand-text,
.hero-title,
.hero-title-main,
.latest-title span,
.choose-title span,
.platforms-title span,
.faq-title,
.faq-title span,
.platform-card h3,
.benefit-card h3,
.faq-content h3,
.hero-showcase-copy h3,
.platforms-hero-card h3 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-main);
}

.brand-text span,
.hero-title-accent,
.latest-title span:last-child,
.choose-title span:last-child,
.platforms-title span:last-child,
.faq-title span:last-child {
  color: var(--brand-red);
}

.header-nav .nav-link,
.language-switcher,
.language-switcher select,
.hero-subtitle,
.hero-platforms ul,
.hero-platforms p,
.choose-subtitle,
.platforms-subtitle,
.benefit-card p,
.faq-subtitle,
.faq-content p,
.platform-card p,
.footer-copy,
.footer-links a,
.footer-bottom p,
.footer-bottom-links a,
.hero-showcase-status,
.hero-float-copy small,
.hero-core-label {
  color: var(--text-soft);
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active,
.hero-float-copy strong,
.choose-card h3,
.latest-name,
.experience-eyebrow {
  color: var(--text-main);
}

.header-nav .nav-link::after,
.download-btn,
.hero-btn-primary,
.latest-tab.active,
.latest-more-btn,
.faq-icon,
.subscribe-form button {
  background: #e50914;
}

.download-btn,
.hero-btn-primary,
.latest-more-btn {
  box-shadow: 0 18px 36px rgba(229, 9, 20, 0.18);
}

.language-switcher,
.hero-btn-secondary,
.hero-float-card,
.latest-tabs,
.latest-tab,
.platform-chip,
.hero-showcase-status,
.hero-core-label,
.subscribe-form,
.experience-mini-card {
  border: 1px solid rgba(229, 9, 20, 0.1);
}

.language-switcher,
.hero-btn-secondary,
.hero-float-card,
.latest-tabs,
.hero-showcase-status,
.hero-core-label,
.subscribe-form {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 250, 0.94) 46%, rgba(255, 255, 255, 0.86) 100%),
    radial-gradient(circle at 76% 24%, rgba(229, 9, 20, 0.08), transparent 24%),
    radial-gradient(circle at 28% 0%, rgba(229, 9, 20, 0.05), transparent 22%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(229, 9, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 9, 20, 0.04) 1px, transparent 1px);
}

.hero-badge {
  color: var(--brand-red);
  border-color: rgba(229, 9, 20, 0.16);
  background: rgba(229, 9, 20, 0.05);
}

.hero-btn-secondary {
  color: var(--text-main);
}

.hero-btn-secondary:hover {
  background: rgba(229, 9, 20, 0.04);
  color: var(--text-main);
}

.hero-ticker {
  border: 1px solid rgba(229, 9, 20, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-cinematic);
}

.hero-ticker::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.hero-ticker::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.hero-ticker-track span {
  background: rgba(255, 255, 255, 1);
  color: var(--text-main);
  box-shadow: inset 0 0 0 1px rgba(229, 9, 20, 0.08);
}

.hero-scroll-mouse {
  border-color: rgba(229, 9, 20, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.hero-showcase-main,
.choose-card,
.platform-card,
.benefit-card,
.faq-card,
.platforms-hero-card,
.experience-panel {
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-cinematic);
}

.hero-showcase-main,
.hero-showcase-screen,
.hero-showcase-dashboard,
.choose-card,
.benefit-card,
.faq-card,
.platforms-hero-card,
.experience-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 249, 249, 1) 100%);
}

.hero-showcase-visual {
  background:
    radial-gradient(circle at center, rgba(229, 9, 20, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 247, 247, 1) 100%);
  box-shadow: inset 0 0 0 1px rgba(229, 9, 20, 0.06);
}

.hero-showcase-kicker,
.latest-rating,
.platform-chip,
.experience-live-pill,
.mini-label {
  background: rgba(229, 9, 20, 0.08);
  color: var(--brand-red);
}

.hero-float-card.active,
.choose-card-accent {
  background:
    linear-gradient(160deg, rgba(229, 9, 20, 0.12) 0%, rgba(255, 255, 255, 1) 34%, rgba(255, 249, 249, 1) 100%);
  border-color: rgba(229, 9, 20, 0.2);
}

.motion-band {
  border-top: 1px solid rgba(229, 9, 20, 0.08);
  border-bottom: 1px solid rgba(229, 9, 20, 0.08);
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.05), rgba(255, 255, 255, 1), rgba(229, 9, 20, 0.05));
}

.motion-band-track {
  color: rgba(24, 24, 24, 0.76);
}

.latest-section,
.choose-section,
.platforms-section,
.benefits-section,
.faq-section,
.experience-section {
  position: relative;
  background: transparent;
}

.experience-section {
  padding: 26px 0 92px;
}

.experience-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(229, 9, 20, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 9, 20, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, transparent, black 12%, black 88%, transparent);
}

.experience-section::before,
.experience-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.experience-section::before {
  width: 220px;
  height: 220px;
  top: 6%;
  left: 6%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.12), transparent 70%);
  animation: experienceAuraFloat 8s ease-in-out infinite;
}

.experience-section::after {
  width: 280px;
  height: 280px;
  right: 5%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08), transparent 72%);
  animation: experienceAuraFloatReverse 10s ease-in-out infinite;
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}

.experience-copy h2 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  color: var(--text-main);
}

.experience-copy p,
.experience-live-copy,
.experience-mini-card p,
.feature-meta-row,
.feature-card-primary h3 {
  color: var(--text-soft);
}

.experience-eyebrow,
.plans-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 9, 20, 0.08);
  background: rgba(229, 9, 20, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.experience-stat {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(229, 9, 20, 0.08);
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.experience-stat.in-view,
.experience-panel.in-view {
  transform: translateY(0);
  opacity: 1;
}

.experience-stat.in-view:nth-child(1) {
  animation: experienceStatFloat 5.8s ease-in-out infinite 0.2s;
}

.experience-stat.in-view:nth-child(2) {
  animation: experienceStatFloat 6.2s ease-in-out infinite 0.5s;
}

.experience-stat.in-view:nth-child(3) {
  animation: experienceStatFloat 5.4s ease-in-out infinite 0.8s;
}

.experience-stat:hover {
  border-color: rgba(229, 9, 20, 0.16);
  box-shadow: 0 22px 44px rgba(229, 9, 20, 0.1);
}

.experience-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  color: var(--text-main);
}

.experience-stat span {
  color: var(--text-soft);
}

.experience-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 34px;
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.experience-panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.14), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.experience-panel::after {
  content: "";
  position: absolute;
  inset: -25% auto auto -40%;
  width: 42%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(14deg) translateX(-120%);
  pointer-events: none;
}

.experience-panel.in-view::after {
  animation: experiencePanelSweep 4.8s ease-in-out infinite 0.8s;
}

.experience-live-pill,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-live-pill {
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.08);
}

.experience-live-pill i {
  animation: livePulse 1.8s ease-in-out infinite;
}

.experience-screen {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.experience-feature-card,
.experience-mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
}

.feature-card-primary {
  min-height: 360px;
  width: min(100%, 920px);
  padding: 40px 38px;
  border: 1px solid rgba(229, 9, 20, 0.08);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.14), rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 249, 249, 1));
  transform: translateY(34px) scale(0.88) rotate(-2deg);
  opacity: 0;
  box-shadow: 0 30px 70px rgba(229, 9, 20, 0.1);
}

.feature-card-primary::after {
  content: "";
  position: absolute;
  inset: auto -16% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08), transparent 70%);
  pointer-events: none;
}

.feature-card-primary.in-view {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  animation: experienceFeatureJumpIn 1.05s cubic-bezier(0.2, 0.9, 0.15, 1.25) both,
    experienceFeatureBounce 4.8s ease-in-out 1.1s infinite;
}

.feature-card-primary.in-view::after {
  animation: featureGlowPulse 4.6s ease-in-out infinite;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.feature-card-primary h3 {
  max-width: 640px;
  margin: 0 auto 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--text-main);
  text-align: center;
}

.feature-meta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.05);
}

.experience-mini-card strong,
.latest-name,
.plans-heading h2 {
  color: var(--text-main);
}

@keyframes experienceAuraFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

@keyframes experienceAuraFloatReverse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-20px, 16px, 0) scale(1.06);
  }
}

@keyframes experiencePanelSweep {
  0% {
    transform: rotate(14deg) translateX(-120%);
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  55% {
    transform: rotate(14deg) translateX(340%);
    opacity: 0;
  }
  100% {
    transform: rotate(14deg) translateX(340%);
    opacity: 0;
  }
}

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

@keyframes livePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.72;
  }
}

@keyframes experienceFeatureJumpIn {
  0% {
    opacity: 0;
    transform: translateY(56px) scale(0.78) rotate(-4deg);
  }
  45% {
    opacity: 1;
    transform: translateY(-18px) scale(1.03) rotate(1.2deg);
  }
  70% {
    transform: translateY(8px) scale(0.985) rotate(-0.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes experienceFeatureBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(-12px) scale(1.01) rotate(0.4deg);
  }
  50% {
    transform: translateY(4px) scale(0.995) rotate(-0.35deg);
  }
  75% {
    transform: translateY(-6px) scale(1.004) rotate(0.2deg);
  }
}

@keyframes featureGlowPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.latest-card {
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(20, 20, 20, 0.12);
}

.latest-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 18%, rgba(24, 24, 24, 0.86) 100%);
}

.latest-card:hover {
  box-shadow: 0 28px 54px rgba(20, 20, 20, 0.16);
}

.platform-android,
.platform-ios,
.platform-macos,
.platform-web,
.platform-tv {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 249, 249, 1) 100%);
}

.site-footer {
  background: #e50914;
}

.site-footer,
.footer-links h4,
.footer-subscribe h4,
.footer-brand-text,
.footer-brand-text span,
.subscribe-form input {
  color: #fff;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.footer-copy,
.footer-links a,
.footer-bottom p,
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-links a:hover,
.footer-bottom-links a:hover {
  color: #fff;
}

.subscribe-form {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.subscribe-form button {
  background: #fff;
  color: #e50914;
}

.platforms-heading {
  grid-template-columns: 1fr;
  justify-items: center;
}

.platforms-copy {
  margin: 0 auto;
  text-align: center;
}

.hero-layout {
  grid-template-columns: 1fr;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-actions {
  justify-content: center;
}

.hero-platforms {
  text-align: center;
}

.hero-platforms ul {
  justify-content: center;
}

.hero-ticker,
.hero-scroll-indicator {
  margin-left: auto;
  margin-right: auto;
}

.hero-showcase-screen {
  padding: 24px;
}

.hero-showcase-topbar {
  margin-bottom: 18px;
}

.hero-showcase-visual {
  min-height: auto;
  padding: 20px;
  border-radius: 32px;
  overflow: visible;
}

.hero-showcase-visual::after,
.hero-showcase-ring,
.hero-showcase-core,
.hero-showcase-wave,
.hero-showcase-beam {
  display: none;
}

.hero-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.75fr);
  gap: 18px;
  width: 100%;
}

.hero-screen-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(229, 9, 20, 0.08);
  background:
    linear-gradient(145deg, rgba(229, 9, 20, 0.1) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 248, 248, 1) 100%);
  box-shadow: 0 22px 50px rgba(20, 20, 20, 0.08);
}

.hero-screen-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-screen-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.08);
  color: #e50914;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-screen-card h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.08;
  color: var(--text-main);
}

.hero-screen-card p {
  margin: 0;
  max-width: 500px;
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-screen-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-screen-stat {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(229, 9, 20, 0.08);
}

.hero-screen-stat strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  color: var(--text-main);
}

.hero-screen-stat span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-screen-progress {
  margin-top: 20px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(229, 9, 20, 0.08);
}

.hero-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-main);
  font-weight: 700;
}

.hero-progress-row strong {
  color: #e50914;
}

.hero-progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.08);
  overflow: hidden;
}

.hero-progress-bar span {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: #e50914;
}

.hero-screen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-screen-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 9, 20, 0.08);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-insight-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-float-card {
  position: relative;
  min-width: 0;
  width: 100%;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 9, 20, 0.08);
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.06);
  animation: none;
}

.card-stream,
.card-discover,
.card-languages,
.card-offline {
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.hero-float-card.active {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(229, 9, 20, 0.12);
}

.hero-float-icon {
  background: #e50914;
  box-shadow: 0 14px 24px rgba(229, 9, 20, 0.18);
}

.hero-showcase-dashboard {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(229, 9, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 248, 248, 1) 100%);
}

.featured-experience-section {
  padding: 12px 0 92px;
}

.featured-experience-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.featured-experience-copy {
  position: static;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.featured-experience-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.06);
  border: 1px solid rgba(229, 9, 20, 0.08);
  color: #e50914;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-experience-copy h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
  color: var(--text-main);
}

.featured-experience-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.featured-experience-note {
  display: inline-grid;
  gap: 12px;
  margin-top: 22px;
  justify-items: center;
}

.featured-note-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid rgba(229, 9, 20, 0.1);
  color: #e50914;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(229, 9, 20, 0.08);
}

.featured-experience-note p {
  max-width: 560px;
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
}

.experience-shell {
  grid-template-columns: 1fr;
  gap: 24px;
}

.experience-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.experience-copy p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.experience-stats {
  max-width: 760px;
  margin: 30px auto 0;
}

.experience-panel,
.hero-showcase {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.experience-copy,
.featured-experience-copy,
.platforms-copy,
.choose-heading,
.faq-heading {
  opacity: 0;
  transform: translateY(28px);
}

.page-ready .experience-copy,
.page-ready .featured-experience-copy,
.page-ready .platforms-copy,
.page-ready .choose-heading,
.page-ready .faq-heading {
  animation: heroReveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.page-ready .experience-copy {
  animation-delay: 0.18s;
}

.page-ready .featured-experience-copy {
  animation-delay: 0.24s;
}

.hero-showcase {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s ease;
}

.hero-showcase.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-showcase.in-view .hero-showcase-glow {
  animation: showcaseGlowFloat 4.8s ease-in-out infinite;
}

.hero-showcase.in-view .hero-screen-card {
  animation: showcaseCardRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both;
}

.hero-showcase.in-view .hero-float-card:nth-child(1) {
  animation: showcaseStackReveal 0.8s ease 0.16s both;
}

.hero-showcase.in-view .hero-float-card:nth-child(2) {
  animation: showcaseStackReveal 0.8s ease 0.24s both;
}

.hero-showcase.in-view .hero-float-card:nth-child(3) {
  animation: showcaseStackReveal 0.8s ease 0.32s both;
}

.hero-showcase.in-view .hero-float-card:nth-child(4) {
  animation: showcaseStackReveal 0.8s ease 0.4s both;
}

.hero-showcase.in-view .hero-showcase-dashboard {
  animation: showcaseDashboardReveal 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s both;
}

@keyframes showcaseGlowFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-8px) scale(1.03);
    opacity: 1;
  }
}

@keyframes showcaseCardRise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes showcaseStackReveal {
  from {
    opacity: 0;
    transform: translateX(18px) translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes showcaseDashboardReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-ready .choose-heading {
  animation-delay: 0.16s;
}

.page-ready .platforms-copy {
  animation-delay: 0.18s;
}

.page-ready .faq-heading {
  animation-delay: 0.2s;
}

@media (max-width: 991.98px) {
  .hero-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-insight-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .hero-showcase-visual {
    padding: 14px;
    border-radius: 22px;
  }

  .hero-screen-card {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-screen-stats,
  .hero-insight-column {
    grid-template-columns: 1fr;
  }

  .hero-showcase-dashboard {
    padding: 18px;
    border-radius: 22px;
  }

  .featured-experience-section {
    padding: 0 0 68px;
  }
}

@media (max-width: 991.98px) {
  .experience-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .experience-section {
    padding: 8px 0 64px;
  }

  .experience-stats {
    grid-template-columns: 1fr;
  }

  .experience-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .feature-card-primary {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 22px;
  }
}
