/* ============================================================
   VELORA TV — Premium IPTV Streaming
   Stylesheet
   Theme: Deep Ocean / Premium Streaming Platform
   ============================================================ */

/* ========== DESIGN SYSTEM ========== */
:root {
  /* --- Core ocean palette (brand source of truth) --- */
  --primary-bg:    #020817;   /* Page base background        */
  --secondary-bg:  #071A3D;   /* Mid / panel background      */
  --primary-blue:  #0066FF;   /* Primary accent              */
  --secondary-blue:#00A3FF;   /* Secondary accent            */
  --accent-blue:   #3DD9FF;   /* Bright highlight            */
  --text:          #FFFFFF;   /* Primary text                */
  --text-muted:    #B8C2D0;   /* Muted / secondary text      */

  /* --- Surfaces --- */
  --bg-card:       #0A1F38;
  --bg-card-hover: #0E2A4D;

  /* --- Gradients --- */
  --gradient-main: linear-gradient(135deg, #0066FF 0%, #00A3FF 100%);
  --gradient-bg:   linear-gradient(180deg, #020817 0%, #071A3D 50%, #020817 100%);

  /* --- Glow / shadow --- */
  --glow-blue:     rgba(0, 102, 255, 0.40);
  --glow-cyan:     rgba(0, 163, 255, 0.32);

  /* --- Borders --- */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-glow:   rgba(0, 102, 255, 0.32);

  /* --- Typography --- */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* --- Shape / motion --- */
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;

  /* --- Misc --- */
  --text-soft: #8FA0B5;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--primary-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body > * { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 10px; }

/* ========== DEEP OCEAN BACKGROUND (single continuous canvas) ========== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--primary-bg);
  background-image:
    radial-gradient(ellipse 120% 90% at 50% -15%, rgba(0, 102, 255, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 12% 42%, rgba(0, 102, 255, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 65% 50% at 88% 58%, rgba(0, 163, 255, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 80% 45% at 50% 88%, rgba(0, 80, 180, 0.05) 0%, transparent 60%);
  z-index: -2;
  pointer-events: none;
}
main {
  position: relative;
  background: transparent;
}

/* Soft, slow-moving ambient ocean light (replaces the old star field) */
.ocean-ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ocean-ambient::before,
.ocean-ambient::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
}
.ocean-ambient::before {
  width: 52vw; height: 52vw;
  top: -12%; left: -8%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.20) 0%, transparent 70%);
  animation: oceanDrift1 24s ease-in-out infinite alternate;
}
.ocean-ambient::after {
  width: 46vw; height: 46vw;
  bottom: -16%; right: -6%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.16) 0%, transparent 70%);
  animation: oceanDrift2 28s ease-in-out infinite alternate;
}
@keyframes oceanDrift1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(8%, 6%); }
}
@keyframes oceanDrift2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-6%, -8%); }
}

/* ========== UTILITIES ========== */
.container { width: 80%; max-width: 1400px; margin: 0 auto; padding: 0; }
.section {
  padding: 60px 0;
  background: transparent;
  border: none;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag {
  display: inline-block;
  background: rgba(0, 102, 255, 0.12);
  color: var(--secondary-blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav-logo span:nth-child(1) { color: #ffffff; }
.nav-logo span:nth-child(2) {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; width: 100%;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Language Selector */
.lang-selector { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 8px 14px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover { border-color: rgba(255, 255, 255, 0.2); color: var(--text); }
.lang-btn svg.chevron { transition: transform 0.3s; }
.lang-selector.open .lang-btn svg.chevron { transform: rotate(180deg); }
.lang-list {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  min-width: 130px;
  background: rgba(7, 26, 61, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
  backdrop-filter: blur(20px);
}
.lang-selector.open .lang-list { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-option:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.lang-option.active { color: var(--accent-blue); font-weight: 600; }

/* Nav CTA */
.nav-cta-btn {
  background: var(--gradient-main);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--glow-blue);
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-cyan);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block; height: 2.5px; background: #fff; border-radius: 2px; transition: var(--transition);
}
.menu-toggle span:nth-child(1) { width: 26px; }
.menu-toggle span:nth-child(2) { width: 20px; }
.menu-toggle span:nth-child(3) { width: 14px; }
.mobile-nav {
  position: fixed;
  top: 68px; right: 20px;
  width: 280px;
  background: rgba(7, 26, 61, 0.96);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: flex; flex-direction: column;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.mobile-nav.active { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a {
  display: block; padding: 12px 16px; font-size: 0.95rem; font-weight: 500;
  color: var(--text-muted); border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition); border-radius: var(--radius);
}
.mobile-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.03); }
.mobile-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); z-index: 1999;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 70px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 30px;
  align-items: center;
  width: 100%;
}
.hero-left { position: relative; z-index: 2; max-width: 620px; }

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.10);
  border: 1px solid rgba(61, 217, 255, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue);
  animation: heroDotPulse 2.4s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 5.3rem);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 22px;
  letter-spacing: -2px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero h1 .gradient-text {
  position: relative;
  background: linear-gradient(135deg, #3DD9FF 0%, #00A3FF 45%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 26px rgba(61, 217, 255, 0.45));
}
.hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }

/* Social proof: overlapping avatars + rating */
.hero-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border: 2px solid #061427;
  margin-left: -12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar.av-1 { background: linear-gradient(135deg, #0066FF, #00A3FF); }
.hero-avatar.av-2 { background: linear-gradient(135deg, #00897B, #3DD9FF); }
.hero-avatar.av-3 { background: linear-gradient(135deg, #0277BD, #3DD9FF); }
.hero-avatar.av-4 { background: linear-gradient(135deg, #1565C0, #00A3FF); }
.hero-avatar.av-5 { background: linear-gradient(135deg, #00695C, #0066FF); }
.hero-social-meta { display: flex; flex-direction: column; gap: 2px; }
.hero-social-meta .stars { color: #FFC83D; letter-spacing: 2px; font-size: 0.92rem; line-height: 1; }
.hero-social-text { font-size: 0.82rem; color: var(--text-muted); }

/* Live activity badge */
.hero-live-badge {
  --live-accent: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 24px;
  padding: 6px 14px 6px 9px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.10);
  border: 1px solid rgba(74, 222, 128, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--live-accent);
  width: fit-content;
  max-width: min(100%, 520px);
  opacity: 0;
  transition: opacity 0.75s ease;
}
.hero-live-badge.is-visible { opacity: 1; }
.hero-live-icon {
  width: 18px; height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: inherit;
  flex-shrink: 0;
}
.hero-live-icon svg { width: 12px; height: 12px; }
.hero-live-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-main);
  color: #fff; padding: 14px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; transition: var(--transition);
  box-shadow: 0 4px 25px var(--glow-blue);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--glow-cyan);
}
.btn-primary svg, .btn-secondary svg, .leagues-cta svg { flex-shrink: 0; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff; padding: 14px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Hero stats (trust indicators) */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero-rating .stars { color: #FFC83D; letter-spacing: 2px; font-size: 0.9rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 30px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}
.hero-stat {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border-subtle);
}
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #3DD9FF 0%, #00A3FF 55%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 7px;
}

/* ========== HERO CINEMATIC POSTER ECOSYSTEM ========== */

/* Poster ecosystem: position: absolute, covers the full hero behind all text */
.hero-poster-eco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Left-side vignette protecting text legibility + top/bottom fade */
.hero-poster-eco::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(2, 8, 23, 0.88) 0%,
      rgba(2, 8, 23, 0.72) 18%,
      rgba(2, 8, 23, 0.38) 34%,
      rgba(2, 8, 23, 0.10) 50%,
      rgba(2, 8, 23, 0) 62%),
    linear-gradient(180deg,
      rgba(2, 8, 23, 0.65) 0%,
      transparent 12%,
      transparent 100%);
}

/* Base poster */
.hpe-poster {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
}
.hpe-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ================================================================
   LAYER 1 — FAR BACKGROUND: Very large, extremely blurred, 5-10%
   Spread across ENTIRE hero including behind headline/text/stats
   ================================================================ */
.hpe-bg1 { width: 28%; aspect-ratio: 2/3; top: -12%; left: -5%;  opacity: 0.14; filter: blur(18px) brightness(0.55); z-index: 1; animation: hpe-drift1 10s ease-in-out infinite; }
.hpe-bg2 { width: 25%; aspect-ratio: 2/3; top: -8%;  left: 18%;  opacity: 0.11; filter: blur(22px) brightness(0.50); z-index: 1; animation: hpe-drift2 13s ease-in-out infinite reverse; }
.hpe-bg3 { width: 22%; aspect-ratio: 2/3; top: 30%;  left: -2%;  opacity: 0.13; filter: blur(20px) brightness(0.52); z-index: 1; animation: hpe-drift3 11s ease-in-out infinite; }
.hpe-bg4 { width: 26%; aspect-ratio: 2/3; top: -15%; left: 40%;  opacity: 0.13; filter: blur(16px) brightness(0.55); z-index: 1; animation: hpe-drift4 9s ease-in-out infinite reverse; }
.hpe-bg5 { width: 24%; aspect-ratio: 2/3; bottom: -14%; left: 8%; opacity: 0.11; filter: blur(20px) brightness(0.50); z-index: 1; animation: hpe-drift5 12s ease-in-out infinite; }
.hpe-bg6 { width: 30%; aspect-ratio: 2/3; top: -10%; right: -6%; opacity: 0.15; filter: blur(16px) brightness(0.58); z-index: 1; animation: hpe-drift6 8s ease-in-out infinite reverse; }
.hpe-bg7 { width: 24%; aspect-ratio: 2/3; bottom: -8%; right: 10%; opacity: 0.12; filter: blur(18px) brightness(0.52); z-index: 1; animation: hpe-drift7 11s ease-in-out infinite; }
.hpe-bg8 { width: 20%; aspect-ratio: 2/3; top: 20%; left: 35%;  opacity: 0.10; filter: blur(24px) brightness(0.48); z-index: 1; animation: hpe-drift8 14s ease-in-out infinite reverse; }

@keyframes hpe-drift1 { 0%,100%{transform:rotate(-12deg) translate(0,0)}  50%{transform:rotate(-11deg) translate(8px,-14px)} }
@keyframes hpe-drift2 { 0%,100%{transform:rotate(8deg)   translate(0,0)}  50%{transform:rotate(9deg)   translate(-6px,-12px)} }
@keyframes hpe-drift3 { 0%,100%{transform:rotate(-6deg)  translate(0,0)}  50%{transform:rotate(-5deg)  translate(5px,-10px)} }
@keyframes hpe-drift4 { 0%,100%{transform:rotate(10deg)  translate(0,0)}  50%{transform:rotate(11deg)  translate(-7px,-11px)} }
@keyframes hpe-drift5 { 0%,100%{transform:rotate(-8deg)  translate(0,0)}  50%{transform:rotate(-7deg)  translate(6px,-9px)} }
@keyframes hpe-drift6 { 0%,100%{transform:rotate(14deg)  translate(0,0)}  50%{transform:rotate(13deg)  translate(-5px,-13px)} }
@keyframes hpe-drift7 { 0%,100%{transform:rotate(-10deg) translate(0,0)}  50%{transform:rotate(-9deg)  translate(7px,-10px)} }
@keyframes hpe-drift8 { 0%,100%{transform:rotate(5deg)   translate(0,0)}  50%{transform:rotate(6deg)   translate(-4px,-8px)} }

/* ================================================================
   DEEP FOG — between far bg and mid bg
   ================================================================ */
.hpe-fog-deep {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 30% 50%, rgba(0, 40, 130, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 70% at 65% 45%, rgba(0, 60, 180, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 90%, rgba(0, 25, 90, 0.08) 0%, transparent 45%);
  animation: hpeFogDeep 42s ease-in-out infinite alternate;
}
@keyframes hpeFogDeep {
  from { transform: translateX(0) scale(1);    opacity: 0.6; }
  to   { transform: translateX(12px) scale(1.03); opacity: 1; }
}

/* ================================================================
   LAYER 3 — MID BACKGROUND: medium blur, 15-25% opacity
   Different sizes and rotations, filling depth between fg and bg
   ================================================================ */
.hpe-mb1 { width: 14%; aspect-ratio: 2/3; top: 2%;   left: 12%;  opacity: 0.28; filter: blur(6px)  brightness(0.72); z-index: 2; border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 8px 24px rgba(0,0,0,0.50); animation: hpe-mid1 8s ease-in-out infinite; }
.hpe-mb2 { width: 12%; aspect-ratio: 2/3; top: 14%;  right: 8%;  opacity: 0.32; filter: blur(4px)  brightness(0.78); z-index: 2; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 28px rgba(0,0,0,0.55); animation: hpe-mid2 10s ease-in-out infinite reverse; }
.hpe-mb3 { width: 10%; aspect-ratio: 2/3; bottom: 8%; left: 5%;   opacity: 0.25; filter: blur(7px)  brightness(0.68); z-index: 2; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 8px 20px rgba(0,0,0,0.50); animation: hpe-mid3 9s ease-in-out infinite; }
.hpe-mb4 { width: 11%; aspect-ratio: 2/3; top: 48%;  left: 22%;  opacity: 0.22; filter: blur(8px)  brightness(0.65); z-index: 2; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 6px 18px rgba(0,0,0,0.45); animation: hpe-mid4 11s ease-in-out infinite reverse; }
.hpe-mb5 { width: 13%; aspect-ratio: 2/3; bottom: 4%; right: 2%;  opacity: 0.30; filter: blur(5px)  brightness(0.75); z-index: 2; border: 1px solid rgba(255,255,255,0.07); box-shadow: 0 10px 26px rgba(0,0,0,0.52); animation: hpe-mid5 7s ease-in-out infinite; }
.hpe-mb6 { width: 10%; aspect-ratio: 2/3; top: 6%;   left: 38%;  opacity: 0.22; filter: blur(7px)  brightness(0.70); z-index: 2; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 8px 22px rgba(0,0,0,0.48); animation: hpe-mid6 12s ease-in-out infinite reverse; }

@keyframes hpe-mid1 { 0%,100%{transform:rotate(-14deg) translate(0,0)}  50%{transform:rotate(-13deg) translate(6px,-10px)} }
@keyframes hpe-mid2 { 0%,100%{transform:rotate(11deg)  translate(0,0)}  50%{transform:rotate(12deg)  translate(-5px,-12px)} }
@keyframes hpe-mid3 { 0%,100%{transform:rotate(-8deg)  translate(0,0)}  50%{transform:rotate(-7deg)  translate(4px,-9px)} }
@keyframes hpe-mid4 { 0%,100%{transform:rotate(6deg)   translate(0,0)}  50%{transform:rotate(7deg)   translate(-5px,-8px)} }
@keyframes hpe-mid5 { 0%,100%{transform:rotate(-12deg) translate(0,0)}  50%{transform:rotate(-11deg) translate(6px,-11px)} }
@keyframes hpe-mid6 { 0%,100%{transform:rotate(9deg)   translate(0,0)}  50%{transform:rotate(10deg)  translate(-4px,-7px)} }

/* ================================================================
   MAIN FOG — between mid and foreground cluster
   ================================================================ */
.hpe-fog-main {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 55% 48%, rgba(0, 60, 180, 0.14) 0%, transparent 48%),
    radial-gradient(ellipse at 25% 55%, rgba(0, 45, 140, 0.08) 0%, transparent 42%),
    radial-gradient(ellipse at 80% 35%, rgba(0, 80, 220, 0.10) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 30, 100, 0.07) 0%, transparent 35%);
  animation: hpeFogMain 36s ease-in-out infinite alternate;
}
@keyframes hpeFogMain {
  from { transform: translateX(0) scale(1);     opacity: 0.55; }
  to   { transform: translateX(20px) scale(1.05); opacity: 1; }
}

/* ================================================================
   LAYER 5 — FOREGROUND CLUSTER: Dense scattered posters around
   featured poster with varying blur, opacity, rotation, size
   ================================================================ */
/* Sharp, bright posters near featured poster */
.hpe-fc1  { width: 12%;  aspect-ratio: 2/3; top: 3%;   right: 22%; opacity: 0.72; z-index: 4; filter: blur(1px) brightness(0.85); border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 16px 44px rgba(0,0,0,0.70); animation: hpe-fg1 6s ease-in-out infinite; }
.hpe-fc2  { width: 10%;  aspect-ratio: 2/3; bottom: 6%; right: 26%; opacity: 0.65; z-index: 4; filter: blur(1.5px) brightness(0.80); border: 1px solid rgba(255,255,255,0.10); box-shadow: 0 14px 38px rgba(0,0,0,0.65); animation: hpe-fg2 8s ease-in-out infinite reverse; }
/* Moderately blurred posters */
.hpe-fc3  { width: 11%;  aspect-ratio: 2/3; top: 55%;  right: 5%;  opacity: 0.55; z-index: 4; filter: blur(2.5px) brightness(0.75); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 12px 32px rgba(0,0,0,0.60); animation: hpe-fg3 9s ease-in-out infinite; }
.hpe-fc4  { width: 9%;   aspect-ratio: 2/3; top: 8%;   right: 3%;  opacity: 0.50; z-index: 4; filter: blur(3px) brightness(0.72); border: 1px solid rgba(255,255,255,0.07); box-shadow: 0 10px 28px rgba(0,0,0,0.55); animation: hpe-fg4 10s ease-in-out infinite reverse; }
/* Almost hidden in blue fog — left/center area */
.hpe-fc5  { width: 10%;  aspect-ratio: 2/3; top: 12%;  left: 28%;  opacity: 0.28; z-index: 4; filter: blur(5px) brightness(0.65); border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 8px 20px rgba(0,0,0,0.45); animation: hpe-fg5 11s ease-in-out infinite; }
.hpe-fc6  { width: 8%;   aspect-ratio: 2/3; bottom: 14%; left: 18%; opacity: 0.22; z-index: 4; filter: blur(6px) brightness(0.60); border: 1px solid rgba(255,255,255,0.04); box-shadow: 0 6px 16px rgba(0,0,0,0.40); animation: hpe-fg6 7s ease-in-out infinite reverse; }
/* More scattered posters creating density */
.hpe-fc7  { width: 11%;  aspect-ratio: 2/3; top: 28%;  right: 36%; opacity: 0.42; z-index: 4; filter: blur(3.5px) brightness(0.72); border: 1px solid rgba(255,255,255,0.07); box-shadow: 0 10px 26px rgba(0,0,0,0.52); animation: hpe-fg7 8s ease-in-out infinite; }
.hpe-fc8  { width: 9%;   aspect-ratio: 2/3; bottom: 2%; right: 38%; opacity: 0.48; z-index: 4; filter: blur(2px) brightness(0.78); border: 1px solid rgba(255,255,255,0.09); box-shadow: 0 12px 30px rgba(0,0,0,0.58); animation: hpe-fg8 6s ease-in-out infinite reverse; }
.hpe-fc9  { width: 8%;   aspect-ratio: 2/3; top: -2%;  right: 42%; opacity: 0.35; z-index: 4; filter: blur(4px) brightness(0.68); border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 8px 22px rgba(0,0,0,0.48); animation: hpe-fg9 11s ease-in-out infinite; }
/* Edge posters fading into darkness */
.hpe-fc10 { width: 10%;  aspect-ratio: 2/3; top: 40%;  left: 0%;   opacity: 0.22; z-index: 4; filter: blur(6px) brightness(0.58); border: 1px solid rgba(255,255,255,0.04); animation: hpe-fg10 12s ease-in-out infinite reverse; }
.hpe-fc11 { width: 7%;   aspect-ratio: 2/3; top: 65%;  left: 32%;  opacity: 0.18; z-index: 4; filter: blur(7px) brightness(0.52); border: 1px solid rgba(255,255,255,0.03); animation: hpe-fg11 9s ease-in-out infinite; }
.hpe-fc12 { width: 9%;   aspect-ratio: 2/3; bottom: 10%; right: 12%; opacity: 0.55; z-index: 4; filter: blur(2px) brightness(0.80); border: 1px solid rgba(255,255,255,0.10); box-shadow: 0 12px 30px rgba(0,0,0,0.58); animation: hpe-fg12 7s ease-in-out infinite reverse; }

@keyframes hpe-fg1  { 0%,100%{transform:rotate(-16deg) translate(0,0)}  50%{transform:rotate(-15deg) translate(5px,-10px)} }
@keyframes hpe-fg2  { 0%,100%{transform:rotate(13deg)  translate(0,0)}  50%{transform:rotate(14deg)  translate(-4px,-11px)} }
@keyframes hpe-fg3  { 0%,100%{transform:rotate(-7deg)  translate(0,0)}  50%{transform:rotate(-6deg)  translate(5px,-8px)} }
@keyframes hpe-fg4  { 0%,100%{transform:rotate(18deg)  translate(0,0)}  50%{transform:rotate(17deg)  translate(-3px,-9px)} }
@keyframes hpe-fg5  { 0%,100%{transform:rotate(-10deg) translate(0,0)}  50%{transform:rotate(-9deg)  translate(4px,-7px)} }
@keyframes hpe-fg6  { 0%,100%{transform:rotate(8deg)   translate(0,0)}  50%{transform:rotate(9deg)   translate(-5px,-10px)} }
@keyframes hpe-fg7  { 0%,100%{transform:rotate(-5deg)  translate(0,0)}  50%{transform:rotate(-4deg)  translate(6px,-9px)} }
@keyframes hpe-fg8  { 0%,100%{transform:rotate(15deg)  translate(0,0)}  50%{transform:rotate(16deg)  translate(-4px,-12px)} }
@keyframes hpe-fg9  { 0%,100%{transform:rotate(-12deg) translate(0,0)}  50%{transform:rotate(-11deg) translate(3px,-8px)} }
@keyframes hpe-fg10 { 0%,100%{transform:rotate(6deg)   translate(0,0)}  50%{transform:rotate(7deg)   translate(-5px,-7px)} }
@keyframes hpe-fg11 { 0%,100%{transform:rotate(-9deg)  translate(0,0)}  50%{transform:rotate(-8deg)  translate(4px,-6px)} }
@keyframes hpe-fg12 { 0%,100%{transform:rotate(11deg)  translate(0,0)}  50%{transform:rotate(12deg)  translate(-3px,-10px)} }

/* ================================================================
   BLUE ATMOSPHERIC GLOW — centered on featured poster area
   ================================================================ */
.hpe-glow {
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  width: 72%; height: 88%;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(ellipse at 62% 48%,
    rgba(0, 100, 255, 0.55) 0%,
    rgba(61, 217, 255, 0.22) 28%,
    rgba(0, 50, 180, 0.08) 50%,
    transparent 68%);
  filter: blur(80px);
  animation: hpeGlowPulse 7s ease-in-out infinite;
}
.hpe-glow-bloom {
  background: radial-gradient(ellipse at 58% 45%,
    rgba(61, 217, 255, 0.18) 0%,
    rgba(0, 120, 255, 0.08) 35%,
    transparent 60%);
  filter: blur(100px);
  animation: hpeGlowBloom 10s ease-in-out infinite alternate;
}
@keyframes hpeGlowPulse {
  0%, 100% { opacity: 0.68; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1.0;  transform: translateY(-50%) scale(1.15); }
}
@keyframes hpeGlowBloom {
  0%   { opacity: 0.4; transform: translateY(-50%) scale(0.95); }
  100% { opacity: 0.8; transform: translateY(-50%) scale(1.12); }
}

/* ================================================================
   VOLUMETRIC PARTICLES — subtle floating light specks
   ================================================================ */
.hpe-particles {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(61,217,255,0.35), transparent),
    radial-gradient(1px 1px at 40% 60%, rgba(0,163,255,0.25), transparent),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(61,217,255,0.30), transparent),
    radial-gradient(1px 1px at 75% 70%, rgba(0,102,255,0.28), transparent),
    radial-gradient(1px 1px at 88% 45%, rgba(61,217,255,0.22), transparent),
    radial-gradient(1.5px 1.5px at 15% 80%, rgba(0,163,255,0.20), transparent),
    radial-gradient(1px 1px at 52% 85%, rgba(61,217,255,0.18), transparent),
    radial-gradient(1px 1px at 35% 15%, rgba(0,102,255,0.25), transparent);
  animation: hpeParticles 30s ease-in-out infinite alternate;
}
@keyframes hpeParticles {
  from { transform: translate(0, 0); opacity: 0.5; }
  to   { transform: translate(10px, -15px); opacity: 1; }
}

/* ---- CAUSTIC LIGHT: faint underwater light shimmer ---- */
.hpe-caustic {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hpe-caustic::before,
.hpe-caustic::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(61, 217, 255, 0.032);
  filter: blur(45px);
}
.hpe-caustic::before {
  width: 420px; height: 200px;
  top: 12%; left: 18%;
  animation: causticA 20s ease-in-out infinite;
}
.hpe-caustic::after {
  width: 320px; height: 160px;
  bottom: 20%; right: 28%;
  animation: causticB 26s ease-in-out infinite reverse;
}
@keyframes causticA {
  0%,100% { transform: translate(0,0) rotate(0deg);    opacity: 0.55; }
  33%     { transform: translate(28px,-18px) rotate(14deg); opacity: 1; }
  66%     { transform: translate(-18px, 10px) rotate(-8deg); opacity: 0.7; }
}
@keyframes causticB {
  0%,100% { transform: translate(0,0) rotate(0deg);    opacity: 0.45; }
  50%     { transform: translate(-22px,14px) rotate(18deg); opacity: 0.9; }
}

/* ---- SWEEP LIGHT RAY (between eco and text) ---- */
.hero-rays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-rays::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 80%; height: 160%;
  background: conic-gradient(from 200deg at 70% 30%,
    rgba(0, 163, 255, 0) 0deg,
    rgba(0, 163, 255, 0.10) 40deg,
    rgba(61, 217, 255, 0.05) 70deg,
    rgba(0, 163, 255, 0) 110deg);
  filter: blur(30px);
  animation: heroRays 26s ease-in-out infinite alternate;
}
@keyframes heroRays {
  from { transform: rotate(-6deg) scale(1);    opacity: 0.7; }
  to   { transform: rotate(6deg)  scale(1.08); opacity: 1; }
}

/* ---- HERO RIGHT & FEATURED ROTATING POSTER ---- */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Featured poster: 3D shell separate from clip container (prevents corner glitches) */
.poster-featured-shell {
  transform: perspective(900px) rotateY(-9deg) rotateX(3deg);
  animation: pfFloat 9s ease-in-out infinite;
  will-change: transform;
}
.poster-featured {
  position: relative;
  width: 310px;
  height: 450px;
  --pf-radius: 24px;
  border-radius: var(--pf-radius);
  overflow: hidden;
  border: 2px solid rgba(61, 217, 255, 0.65);
  box-shadow:
    0 60px 130px rgba(0, 0, 0, 0.92),
    0 0 0 1px rgba(61, 217, 255, 0.32),
    0 0 60px rgba(61, 217, 255, 0.55),
    0 0 120px rgba(61, 217, 255, 0.35),
    0 0 200px rgba(0, 80, 255, 0.25),
    0 0 300px rgba(0, 60, 200, 0.15),
    0 0 40px rgba(0, 163, 255, 0.28),
    inset 0 0 30px rgba(61, 217, 255, 0.08);
  transition: box-shadow 0.5s ease;
  cursor: pointer;
  isolation: isolate;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.poster-featured:hover {
  box-shadow:
    0 70px 150px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(61, 217, 255, 0.55),
    0 0 80px rgba(61, 217, 255, 0.70),
    0 0 160px rgba(61, 217, 255, 0.45),
    0 0 280px rgba(0, 80, 255, 0.35),
    0 0 55px rgba(0, 163, 255, 0.38),
    inset 0 0 40px rgba(61, 217, 255, 0.12);
}
@keyframes pfFloat {
  0%, 100% { transform: perspective(900px) rotateY(-9deg) rotateX(3deg) translateY(0px); }
  50%       { transform: perspective(900px) rotateY(-7deg) rotateX(2deg) translateY(-16px); }
}

/* Rotating slide system — opacity crossfade, motion on clipped media only */
.pf-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--pf-radius);
}
.pf-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  border-radius: var(--pf-radius);
  overflow: hidden;
  pointer-events: none;
}
.pf-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.pf-slide.entering {
  z-index: 2;
  animation: pfFadeIn 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.pf-slide.leaving {
  z-index: 1;
  animation: pfFadeOut 1s cubic-bezier(0.55, 0.06, 0.68, 0.19) both;
}
.pf-slide-media {
  position: absolute;
  inset: 0;
  border-radius: var(--pf-radius);
  overflow: hidden;
  transform: translateZ(0);
}
.pf-slide.entering::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: var(--pf-radius);
  background: radial-gradient(ellipse at 50% 38%, rgba(61, 217, 255, 0.12) 0%, transparent 65%);
  animation: pfRipple 1.2s ease-out both;
  pointer-events: none;
}
.pf-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  transform-origin: center center;
  filter: none;
}
.pf-slide.active img {
  transform: scale(1.1);
  filter: none;
}
.pf-slide.entering img {
  animation: pfImgReveal 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.pf-slide.leaving img {
  animation: pfImgHide 1s cubic-bezier(0.55, 0.06, 0.68, 0.19) both;
}

@keyframes pfFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pfFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes pfImgReveal {
  0%   { filter: blur(6px) brightness(0.78); transform: scale(1.14); }
  100% { filter: blur(0) brightness(1); transform: scale(1.1); }
}
@keyframes pfImgHide {
  0%   { filter: blur(0) brightness(1); transform: scale(1.1); }
  100% { filter: blur(5px) brightness(0.68); transform: scale(1.14); }
}
@keyframes pfRipple {
  0%   { opacity: 0.7; transform: scale(0.85); }
  55%  { opacity: 0.25; }
  100% { opacity: 0; transform: scale(1.08); }
}

/* Bottom gradient inside featured poster */
.pf-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 58%; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(2, 8, 23, 0.96) 0%, rgba(2, 8, 23, 0.52) 48%, transparent 100%);
}
.pf-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gradient-main); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; box-shadow: 0 4px 16px rgba(0, 102, 255, 0.5);
}
.pf-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 999px; padding: 5px 11px;
  font-size: 0.76rem; font-weight: 700; color: #FFC83D;
  transition: opacity 0.4s ease;
}
.pf-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 18px 20px; }
.pf-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: #fff; line-height: 1.15; transition: opacity 0.4s ease;
}
.pf-sub { margin-top: 4px; font-size: 0.78rem; color: var(--accent-blue); font-weight: 600; letter-spacing: 0.3px; transition: opacity 0.4s ease; }

@media (prefers-reduced-motion: reduce) {
  .hpe-poster, .hpe-glow, .hpe-glow-bloom,
  .hero-rays::before, .hero-eyebrow-dot,
  .poster-featured, .pf-slide,
  .poster-featured-shell,
  .pf-slide.entering, .pf-slide.leaving,
  .pf-slide.entering::before,
  .pf-slide.entering img, .pf-slide.leaving img,
  .hpe-fog-deep, .hpe-fog-main, .hpe-caustic::before, .hpe-caustic::after,
  .hpe-particles,
  .tc-track, .tc-card, .ts-fog, .ts-particles,
  .wa-track, .tp-track,
  .leagues-tape-track, .leagues-tape-item,
  .device-card, .why-card, .why-icon,
  .sports-fog, .sports-particles, .devices-fog, .devices-particles,
  .why-layer-fog, .why-layer-rays { animation: none; transition: none; }
}

/* ========== CHANNELS LOGO TICKER ========== */
.carousel-section {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 0 18px;
  overflow: visible;
  background: transparent;
}
/* Glowing glassy divider separating the hero from the Live Channels section */
.carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(0, 163, 255, 0.25) 0%,
    rgba(61, 217, 255, 0.95) 50%,
    rgba(0, 163, 255, 0.25) 100%);
  box-shadow:
    0 0 14px rgba(61, 217, 255, 0.7),
    0 0 34px rgba(0, 140, 255, 0.45);
  pointer-events: none;
  z-index: 2;
}
/* Soft halo bloom beneath the divider for glassy depth */
.carousel-section::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 900px);
  height: 160px;
  background: radial-gradient(ellipse at center top,
    rgba(0, 140, 255, 0.18) 0%,
    rgba(0, 102, 255, 0.06) 40%,
    transparent 72%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}
.carousel-section .section-header { margin: 0 auto 12px; position: relative; z-index: 2; }
/* Plain ticker (reused above the channels list) — no divider, tighter spacing */
.carousel-section-plain {
  padding: 8px 0 24px;
}
.carousel-section-plain::before,
.carousel-section-plain::after { display: none; }
.channels-ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 6px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.channels-ticker {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 12px 0;
  will-change: transform;
  backface-visibility: hidden;
}
.channels-ticker-left  { animation: tickerLeft  45s linear infinite; animation-delay: -22.5s; }
.channels-ticker-right { animation: tickerRight 52s linear infinite; animation-delay: -26s; margin-top: 20px; }
.channels-ticker:hover { cursor: default; }
@keyframes tickerLeft  { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@keyframes tickerRight { from { transform: translate3d(-50%, 0, 0); } to { transform: translate3d(0, 0, 0); } }
.channel-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: default;
  margin-right: 56px;
}
.logo-text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.35s;
}
.channel-logo-item:hover .logo-text { opacity: 1; }

/* Brand logo styles (moved out of inline attributes) */
.logo-netflix    { font-family: 'Arial Black', sans-serif; color: #E50914; font-size: 1.05rem; font-weight: 900; letter-spacing: 1px; }
.logo-hbo        { font-family: Georgia, serif; color: #ffffff; font-size: 1.1rem; font-weight: 900; letter-spacing: 3px; }
.logo-disney     { font-family: sans-serif; color: #5B8DEF; font-size: 0.95rem; font-weight: 700; }
.logo-prime      { font-family: sans-serif; color: #00A8E0; font-size: 0.85rem; font-weight: 400; }
.logo-dazn       { font-family: sans-serif; color: #ffffff; font-size: 1.1rem; font-weight: 900; letter-spacing: 2px; }
.logo-espn       { font-family: 'Arial Black', sans-serif; color: #CC0000; font-size: 1.1rem; font-weight: 900; letter-spacing: 2px; }
.logo-peacock    { font-family: sans-serif; color: #ffffff; font-size: 0.9rem; font-weight: 600; }
.logo-skysports  { font-family: sans-serif; color: #2E9BE0; font-size: 0.85rem; font-weight: 700; }
.logo-crunchyroll{ font-family: sans-serif; color: #F47521; font-size: 0.85rem; font-weight: 700; }
.logo-bbc        { font-family: sans-serif; color: #ffffff; font-size: 1.1rem; font-weight: 900; letter-spacing: 3px; }
.logo-appletv    { font-family: -apple-system, BlinkMacSystemFont, sans-serif; color: #ffffff; font-size: 0.85rem; font-weight: 600; }
.logo-paramount  { font-family: sans-serif; color: #2D7FFF; font-size: 0.9rem; font-weight: 700; }
.logo-hulu       { font-family: sans-serif; color: #1CE783; font-size: 0.95rem; font-weight: 700; letter-spacing: 1px; }
.logo-canal      { font-family: sans-serif; color: #ffffff; font-size: 1rem; font-weight: 900; }
.logo-eurosport  { font-family: sans-serif; color: #D9001B; font-size: 0.9rem; font-weight: 700; }
.logo-youtube    { font-family: sans-serif; color: #FF0000; font-size: 0.95rem; font-weight: 700; }
.logo-discovery  { font-family: sans-serif; color: #4E74FF; font-size: 0.85rem; font-weight: 700; }
.logo-amc        { font-family: Georgia, serif; color: #ffffff; font-size: 1.1rem; font-weight: 700; letter-spacing: 4px; }
.logo-showtime   { font-family: sans-serif; color: #CC0000; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; }
.logo-mgm        { font-family: Georgia, serif; color: #C8A951; font-size: 1rem; font-weight: 700; }
.logo-fubo       { font-family: sans-serif; color: #3A7BFF; font-size: 0.9rem; font-weight: 700; }
.logo-bein       { font-family: sans-serif; color: #D71921; font-size: 0.85rem; font-weight: 700; }
.logo-star       { font-family: sans-serif; color: #FFD600; font-size: 0.95rem; font-weight: 700; }
.logo-starz      { font-family: sans-serif; color: #ffffff; font-size: 1rem; font-weight: 900; letter-spacing: 2px; }

/* ========== TRENDING CONTENT — PREMIUM 3D CAROUSEL ========== */
.trending-section {
  position: relative;
  padding: 56px 0 56px;
  overflow: visible;
  background: transparent;
}
.ts-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ts-fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.ts-fog-1 {
  width: 55vw; height: 40vh;
  top: 10%; left: -10%;
  background: rgba(0, 102, 255, 0.06);
  animation: tsFogDrift1 20s ease-in-out infinite alternate;
}
.ts-fog-2 {
  width: 50vw; height: 35vh;
  bottom: 5%; right: -8%;
  background: rgba(0, 163, 255, 0.05);
  animation: tsFogDrift2 24s ease-in-out infinite alternate;
}
.ts-glow-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}
.ts-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(61, 217, 255, 0.35) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 70%, rgba(0, 163, 255, 0.28) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 55% 35%, rgba(61, 217, 255, 0.22) 50%, transparent 50%),
    radial-gradient(1px 1px at 75% 60%, rgba(0, 102, 255, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 25%, rgba(61, 217, 255, 0.2) 50%, transparent 50%);
  opacity: 0.35;
  animation: tsParticlesFloat 30s linear infinite;
}
@keyframes tsFogDrift1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(5%, 4%); }
}
@keyframes tsFogDrift2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-4%, -3%); }
}
@keyframes tsParticlesFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-20px); }
}
.trending-section .container { position: relative; z-index: 2; }
.trending-carousel {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 0 0;
}
.tc-stage {
  perspective: none;
  perspective-origin: 50% 45%;
  overflow: hidden;
  padding: 40px 0 50px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.tc-track-wrap {
  overflow: visible;
}
.tc-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: tcInfiniteScroll 90s linear infinite;
}
@keyframes tcInfiniteScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tc-card {
  flex: 0 0 auto;
  width: clamp(168px, 14vw, 220px);
  position: relative;
  animation: tcCardFloat 7s ease-in-out infinite;
}
.tc-card:nth-child(odd)  { animation-delay: -1.5s; }
.tc-card:nth-child(even) { animation-delay: -3.5s; }
@keyframes tcCardFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -5px; }
}
.tc-poster {
  position: relative;
  aspect-ratio: 2 / 3.35;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(7, 26, 61, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 163, 255, 0.35);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 28px rgba(0, 102, 255, 0.15);
}
.tc-poster::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 40%, transparent 60%, rgba(0,163,255,0.08) 100%);
  z-index: 2;
  pointer-events: none;
}
.tc-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tc-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 8, 23, 0.88) 0%, transparent 50%);
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
}
.tc-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.tc-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(2, 8, 23, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--accent-blue);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(61, 217, 255, 0.35);
}
.tc-meta {
  padding: 14px 8px 0;
  text-align: center;
}
.tc-meta h4 {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tc-meta span { font-size: 0.76rem; color: var(--text-muted); }

/* ========== PLANS ========== */
.plans-section {
  padding: 60px 0;
  background: transparent;
}
.plan-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 5px;
  width: fit-content;
}
.plan-tab {
  padding: 10px 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.plan-tab:hover { color: var(--text); }
.plan-tab.active {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-blue);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.plan-card {
  background: rgba(7, 26, 61, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 140, 255, 0.45);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 540px;
}
.plan-card.highlighted {
  border-color: rgba(0, 163, 255, 0.8);
  background: rgba(7, 31, 71, 0.55);
  transform: scale(1.03);
  min-height: unset;
}
.plan-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
  z-index: 0;
}
/* Neon top glow line */
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.85), rgba(0, 102, 255, 1), rgba(0, 163, 255, 0.85), transparent);
  opacity: 0.8;
  z-index: 1;
}
.plan-card.highlighted::before { opacity: 1; }
.plan-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-card:has(.plan-badge) .plan-name { margin-top: 28px; }
.plan-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}
.plan-period {
  font-size: 1.1rem;
  color: var(--accent-blue);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  text-shadow: 0 0 14px rgba(61, 217, 255, 0.55);
  text-align: center;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-align: center;
}
.plan-price .currency { font-size: 1.8rem; vertical-align: super; }
.plan-monthly {
  font-size: 0.85rem;
  color: rgba(160, 210, 255, 0.9);
  margin-bottom: 4px;
  font-style: italic;
  letter-spacing: 0.3px;
  text-align: center;
}
.plan-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 20px 0;
}
.plan-features { margin-bottom: 28px; flex: 1; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
  padding: 6px 0;
}
.plan-features li .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0, 102, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--secondary-blue); font-size: 0.65rem;
}
.adult-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 40, 40, 0.2);
  border: 1px solid rgba(255, 60, 60, 0.5);
  color: #ff6060;
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: 4px;
  padding: 1px 5px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid var(--border-glow);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.plan-btn:hover {
  background: var(--gradient-main);
  border-color: transparent;
  box-shadow: 0 4px 25px var(--glow-blue);
}
.plan-card.highlighted .plan-btn {
  background: var(--gradient-main);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--glow-blue);
}
.plan-card.lifetime {
  border-color: rgba(255, 180, 0, 0.55);
  background: rgba(40, 30, 0, 0.35);
}
.plan-card.lifetime::before {
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.85), rgba(255, 210, 0, 1), rgba(255, 140, 0, 0.85), transparent);
  opacity: 1;
}
.plan-card.lifetime .plan-price {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-card.lifetime .plan-old-price {
  font-size: 1.1rem;
  color: rgba(255, 225, 160, 0.9);
  text-align: center;
  margin-top: -2px;
  margin-bottom: 10px;
  font-weight: 600;
}
.plan-card.lifetime .plan-old-price s {
  color: rgba(219, 188, 134, 0.95);
  text-decoration-thickness: 1.5px;
}
.plan-card.lifetime .plan-lifetime-sub {
  font-size: 0.8rem;
  color: rgba(255, 220, 150, 0.9);
  text-align: center;
  margin-top: 2px;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.plan-card.lifetime .plan-btn {
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  border-color: transparent;
  color: #020817;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255, 180, 0, 0.3);
}
.plan-badge.gold {
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  color: #020817;
}

/* ========== PRICING REDESIGN — DEVICE CATEGORIES ========== */
.reseller-nudge {
  text-align: center;
  margin-top: 32px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.reseller-nudge-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.reseller-nudge-link {
  color: var(--accent-blue);
  font-weight: 600;
  transition: var(--transition);
}
.reseller-nudge-link:hover { color: #fff; }

.plans-subhead {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: -10px auto 34px;
}

/* Pill-style device selector */
.device-tabs {
  gap: 4px;
  padding: 6px;
}
.device-tabs .plan-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
}
.device-tabs .dt-label { letter-spacing: 0.2px; }

/* Panel switching with fade + slide */
.plans-panels { position: relative; }
.plans-panel { display: none; }
.plans-panel.active { display: block; }
.plans-panel.is-switching .plans-grid { animation: panelFade 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes panelFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 3-up grid for the new structure */
.plans-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  align-items: stretch;
}


.plans-grid-3 .plan-card { min-height: 0; }
.plans-grid-3 .plan-card::after { z-index: 0; }
.plans-grid-3 .plan-card .plan-glow { display: none; }

/* ========== BLOG FEATURE — 2026 WORLD CUP ========== */
.blog-feature-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(7, 26, 61, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 163, 255, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 102, 255, 0.08);
}
.blog-feature-media {
  position: relative;
  align-self: stretch;
  min-height: 320px;
}
.blog-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* blend the image edge into the card on the text side */
.blog-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(7, 26, 61, 0.55) 100%);
  pointer-events: none;
}
.blog-feature-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px var(--glow-blue);
}
.blog-feature-body {
  padding: 44px 48px;
}
.blog-feature-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 14px;
}
.blog-feature-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.blog-feature-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.blog-feature-cta { margin-top: 4px; }

@media (max-width: 768px) {
  .blog-feature-card { grid-template-columns: 1fr; }
  .blog-feature-media { min-height: 230px; }
  .blog-feature-media::after {
    background: linear-gradient(0deg, rgba(7, 26, 61, 0.6) 0%, transparent 55%);
  }
  .blog-feature-body { padding: 32px 26px; }
}

/* ========== LEAGUES / SPORTS — PREMIUM CONTENT-FIRST ========== */
.sports-section {
  position: relative;
  padding: 60px 0;
  overflow: visible;
  background: transparent;
}
.sports-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sports-fog {
  position: absolute;
  width: 70vw; height: 50vh;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.06) 0%, transparent 65%);
  filter: blur(60px);
  animation: sportsFogDrift 18s ease-in-out infinite alternate;
}
.sports-glow {
  display: none;
}
.sports-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 40%, rgba(61, 217, 255, 0.22) 50%, transparent 50%),
    radial-gradient(1px 1px at 85% 55%, rgba(0, 163, 255, 0.18) 50%, transparent 50%);
  opacity: 0.3;
  animation: tsParticlesFloat 25s linear infinite;
}
@keyframes sportsFogDrift {
  from { transform: translateX(-50%) scale(1); }
  to   { transform: translateX(-48%) scale(1.06); }
}
.sports-section .container {
  position: relative;
  z-index: 2;
}
.sports-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.sports-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.sports-content > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.sports-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sports-plans-btn { min-width: 180px; justify-content: center; }
.league-showcase {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.leagues-tape-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 36px 0;
  border-radius: var(--radius-lg);
  background: rgba(3, 12, 28, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 140, 255, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 102, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.leagues-tape-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: leaguesTape 55s linear infinite;
}
@keyframes leaguesTape {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.leagues-tape-item {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(7, 26, 61, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 163, 255, 0.4);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(0, 102, 255, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  animation: leagueCardFloat 6s ease-in-out infinite;
}
.leagues-tape-item:nth-child(odd)  { animation-delay: -2s; }
.leagues-tape-item:nth-child(even) { animation-delay: -4s; }
@keyframes leagueCardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.leagues-tape-item:hover {
  transform: translateY(-12px) scale(1.06);
  border-color: rgba(61, 217, 255, 0.7);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.55),
    0 0 35px rgba(0, 102, 255, 0.3);
  animation-play-state: paused;
}
.leagues-tape-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.leagues-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 40px;
  min-width: 220px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 25px var(--glow-blue);
  border: none;
}
.leagues-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--glow-cyan);
}
@media (max-width: 560px) {
  .leagues-tape-item { width: 76px; height: 76px; padding: 12px; border-radius: var(--radius-lg); }
  .leagues-tape-track { gap: 20px; }
  .sports-content { margin-bottom: 40px; }
}

/* ========== COMPATIBLE DEVICES — PREMIUM ECOSYSTEM ========== */
/* ========== HOW IT WORKS (home) — reuses .how-steps / .how-step ========== */
.how-section .how-steps { margin-top: 8px; }

/* ========== WHY CHOOSE US — TRUST BUILDING GRID ========== */
.why-section {
  position: relative;
  padding: 64px 0;
  overflow: visible;
  background: transparent;
}
.why-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.why-layer-gradient {
  background: transparent;
}
.why-layer-fog {
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 75% 60%, rgba(0, 163, 255, 0.04) 0%, transparent 55%);
  animation: whyFogDrift 20s ease-in-out infinite alternate;
}
.why-layer-rays {
  background:
    linear-gradient(165deg, transparent 40%, rgba(0, 163, 255, 0.02) 50%, transparent 60%),
    linear-gradient(195deg, transparent 35%, rgba(0, 102, 255, 0.025) 48%, transparent 58%);
  opacity: 0.5;
  animation: whyRaysShift 15s ease-in-out infinite alternate;
}
.why-layer {
  position: absolute;
  inset: 0;
}
@keyframes whyFogDrift {
  from { opacity: 0.8; }
  to   { opacity: 1; transform: scale(1.03); }
}
@keyframes whyRaysShift {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}
.why-section .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}
.why-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: rgba(7, 26, 61, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 163, 255, 0.32);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  animation: whyCardFloat 9s ease-in-out infinite;
}
.why-card:nth-child(2) { animation-delay: -1.5s; }
.why-card:nth-child(3) { animation-delay: -3s; }
.why-card:nth-child(4) { animation-delay: -4.5s; }
.why-card:nth-child(5) { animation-delay: -6s; }
.why-card:nth-child(6) { animation-delay: -7.5s; }
@keyframes whyCardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(61, 217, 255, 0.65);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(0, 102, 255, 0.2);
  animation-play-state: paused;
}
.why-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background: rgba(0, 102, 255, 0.14);
  border: 1px solid rgba(0, 163, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  animation: whyIconPulse 3s ease-in-out infinite;
}
.why-card:nth-child(even) .why-icon { animation-delay: -1.5s; }
@keyframes whyIconPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(0, 102, 255, 0); }
  50%      { box-shadow: 0 0 18px rgba(0, 102, 255, 0.25); }
}
.why-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ========== CHANNEL SEARCH ========== */
.channel-search-wrap {
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}
.channel-search-input-row {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  padding: 5px 5px 5px 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 8px;
}
.channel-search-input-row:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.18);
}
.channel-search-icon {
  color: var(--text-soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
#channelSearchInput {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 9px 0;
}
#channelSearchInput::placeholder { color: var(--text-soft); }
.channel-search-btn {
  background: var(--gradient-main);
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.15s;
  font-family: var(--font-body);
  line-height: 1;
}
.channel-search-btn:hover { opacity: 0.85; transform: scale(1.03); }
.channel-search-btn:active { transform: scale(0.97); }

/* Result card */
.channel-search-result {
  margin-top: 14px;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  font-size: 0.88rem;
  display: none;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: csrFadeIn 0.3s ease;
}
@keyframes csrFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.channel-search-result.found {
  display: flex;
  background: rgba(0, 210, 110, 0.08);
  border-color: rgba(0, 210, 110, 0.28);
  box-shadow: 0 4px 24px rgba(0, 200, 100, 0.08);
}
.channel-search-result.not-found {
  display: flex;
  background: rgba(255, 50, 80, 0.08);
  border-color: rgba(255, 50, 80, 0.28);
  box-shadow: 0 4px 24px rgba(255, 50, 80, 0.08);
}
.csr-icon-wrap {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.channel-search-result.found   .csr-icon-wrap { background: rgba(0, 210, 110, 0.15); }
.channel-search-result.not-found .csr-icon-wrap { background: rgba(255, 50, 80, 0.15); }
.csr-icon-wrap svg { display: block; }
.csr-text { line-height: 1.5; min-width: 0; }
.csr-text strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.csr-text span {
  font-size: 0.82rem;
  opacity: 0.8;
  display: block;
  white-space: normal;
  line-height: 1.4;
}
.channel-search-result.found   .csr-text strong { color: #00e07a; }
.channel-search-result.found   .csr-text span   { color: #8cffcc; }
.channel-search-result.not-found .csr-text strong { color: #ff5570; }
.channel-search-result.not-found .csr-text span   { color: #ffaab5; }

@media (max-width: 480px) {
  .channel-search-input-row { padding: 4px 4px 4px 14px; gap: 6px; }
  .channel-search-btn { padding: 10px 16px; font-size: 0.78rem; }
  #channelSearchInput { font-size: 0.85rem; }
  .channel-search-result { gap: 12px; padding: 14px 16px; }
  .csr-icon-wrap { width: 34px; height: 34px; }
}

/* ========== ACCORDION (CHANNELS) ========== */
.accordion-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  background: rgba(255, 255, 255, 0.025);
}
.accordion-item:hover { border-color: var(--border-glow); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.accordion-header:hover { background: rgba(0, 102, 255, 0.05); }
.acc-icon {
  font-size: 1.2rem;
  color: var(--secondary-blue);
  transition: transform 0.3s;
}
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, transform 0.35s ease;
}
.accordion-item.active .accordion-body {
  max-height: none;
  opacity: 1;
  transform: translateY(0);
}
.accordion-body-inner { padding: 0 20px 16px; }
.channel-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 6px;
}
#countriesWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 62%;
  margin: 0 auto;
}
#countriesWrap .accordion-item { margin-bottom: 0; }
.countries-hidden { display: none; }
.see-more-item { cursor: pointer; }
@media (max-width: 1024px) {
  #countriesWrap { max-width: 85%; }
}
@media (max-width: 768px) {
  #countriesWrap { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}
@media (max-width: 500px) {
  #countriesWrap { grid-template-columns: 1fr; }
}
.channel-list li {
  background: rgba(255, 255, 255, 0.04);
  padding: 7px 10px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px solid rgba(0, 140, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.see-more-label {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.see-more-chevron {
  color: var(--secondary-blue);
  flex-shrink: 0;
  transition: transform 0.35s ease, color 0.3s;
}
.see-more-item.active .see-more-chevron {
  transform: rotate(180deg);
  color: var(--accent-blue);
}
.channel-country-grid li {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text);
  border: 1px solid rgba(0, 140, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ========== REVIEWS ========== */
.tp-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 183, 122, 0.35);
  border-radius: var(--radius);
  padding: 8px 16px;
  margin-top: 4px;
  cursor: default;
}
.tp-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tp-logo-star {
  width: 20px; height: 20px;
  background: #00b67a;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tp-brand {
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  letter-spacing: -0.3px;
}
.tp-divider {
  width: 1px; height: 22px;
  background: rgba(255, 255, 255, 0.15);
}
.tp-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.tp-score-stars { color: #00b67a; font-size: 0.85rem; letter-spacing: 2px; line-height: 1; }
.tp-score-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
/* WhatsApp carousel */
.reviews-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.reviews-row-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 12px 0 4px;
}
.reviews-row-label:first-child { margin-top: 0; }
.wa-carousel {
  overflow: hidden;
  position: relative;
  padding: 8px 0 12px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.wa-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: waScroll 60s linear infinite;
}
.wa-track:hover { animation-play-state: paused; }
@keyframes waScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wa-card {
  flex: 0 0 310px;
  background: #111b21;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.wa-card-header {
  background: #1f2c34;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.wa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; color: #fff;
  flex-shrink: 0;
}
/* Avatar colour variants (moved out of inline attributes) */
.wa-avatar.av-1 { background: #0066FF; }
.wa-avatar.av-2 { background: #00897B; }
.wa-avatar.av-3 { background: #C67B00; }
.wa-avatar.av-4 { background: #1A7A37; }
.wa-avatar.av-5 { background: #0277BD; }
.wa-avatar.av-6 { background: #BF360C; }
.wa-avatar.av-7 { background: #006064; }
.wa-avatar.av-8 { background: #00695C; }
.wa-avatar.av-9 { background: #33691E; }
.wa-avatar.av-10 { background: #1565C0; }
.wa-contact { flex: 1; min-width: 0; }
.wa-contact-name { font-weight: 700; font-size: 0.87rem; color: #e9edef; line-height: 1.2; }
.wa-contact-sub { font-size: 0.65rem; color: rgba(255, 255, 255, 0.38); margin-top: 1px; }
.wa-body {
  padding: 12px 10px 8px;
  background: #0b1519;
}
.wa-bubble {
  background: #2a3942;
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 7px 10px 4px 10px;
  max-width: 94%;
  display: inline-block;
  position: relative;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -6px;
  border-top: 6px solid #2a3942;
  border-left: 6px solid transparent;
}
.wa-bubble-text {
  font-size: 0.82rem;
  color: #e9edef;
  line-height: 1.55;
  display: block;
  margin-bottom: 4px;
}
.wa-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 2px;
}
.wa-ticks { display: flex; align-items: center; }
@media (max-width: 768px) {
  .wa-card { flex: 0 0 268px; }
  .wa-card-header { padding: 8px 12px; }
  .wa-bubble-text { font-size: 0.79rem; }
  .tp-card { flex: 0 0 300px; }
  .tp-review-text { font-size: 0.84rem; }
}

/* Trustpilot review carousel */
.tp-carousel {
  overflow: hidden;
  position: relative;
  padding: 8px 0 28px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.tp-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tpScroll 68s linear infinite reverse;
}
@keyframes tpScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tp-card {
  flex: 0 0 340px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: var(--radius);
  padding: 18px 18px 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  color: #1a1a1a;
  font-family: var(--font-body);
}
.tp-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: #2d2d2d;
  flex-shrink: 0;
}
.tp-av-1 { background: #f5c6d6; }
.tp-av-2 { background: #c8daf5; }
.tp-av-3 { background: #d4c4f0; }
.tp-av-4 { background: #b8e8d4; }
.tp-av-5 { background: #f9dcc4; }
.tp-av-6 { background: #d0d8e4; }
.tp-av-7 { background: #f0c4d8; }
.tp-av-8 { background: #e8dcc8; }
.tp-user-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #111;
  line-height: 1.2;
}
.tp-user-date {
  font-size: 0.78rem;
  color: #6b6b6b;
  margin-top: 2px;
}
.tp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.tp-stars {
  display: flex;
  gap: 3px;
}
.tp-star-box {
  width: 20px;
  height: 20px;
  background: #00b67a;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tp-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b6b6b;
}
.tp-review-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #2b2b2b;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tp-card-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid #ebebeb;
  font-size: 0.78rem;
  color: #8a8a8a;
}
.tp-footer-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tp-footer-action svg { opacity: 0.7; }
.tp-footer-flag {
  margin-left: auto;
  display: inline-flex;
  opacity: 0.55;
}

/* ========== FAQ ========== */
.faq-item {
  border: 1px solid rgba(0, 140, 255, 0.22);
  border-radius: var(--radius);
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.015);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-glow); }
.faq-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--secondary-blue);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-body { max-height: none; }
.faq-body-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-wrap { max-width: 750px; margin: 0 auto; }

/* ========== CTA ========== */
.final-cta {
  text-align: center;
  padding: 72px 24px;
  position: relative;
  overflow: visible;
  background: transparent;
}
.final-cta > * { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.final-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  overflow: visible;
  padding: 56px 0 30px;
  background: rgba(4, 10, 28, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
/* Glowing glassy divider separating the footer from the section above */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(0, 163, 255, 0.25) 0%,
    rgba(61, 217, 255, 0.95) 50%,
    rgba(0, 163, 255, 0.25) 100%);
  box-shadow:
    0 0 14px rgba(61, 217, 255, 0.7),
    0 0 34px rgba(0, 140, 255, 0.45);
  pointer-events: none;
  z-index: 2;
}
/* Soft halo bloom above the divider for glassy depth */
.footer::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 900px);
  height: 160px;
  background: radial-gradient(ellipse at center bottom,
    rgba(0, 140, 255, 0.18) 0%,
    rgba(0, 102, 255, 0.06) 40%,
    transparent 72%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-brand span:nth-child(1) { color: #ffffff; }
.footer-brand span:nth-child(2) {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc { color: var(--text-soft); font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-contact-link {
  display: flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-contact-link:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.82rem;
}
.footer-bottom-contact {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-soft);
}
.footer-bottom-contact a {
  color: var(--text-soft);
  transition: var(--transition);
}
.footer-bottom-contact a:hover { color: var(--text); }

/* ========== STICKY TRIAL CTA ========== */
.sticky-trial {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(5, 16, 38, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 163, 255, 0.45);
  border-radius: 999px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0, 102, 255, 0.3);
  transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.sticky-trial.visible { bottom: 28px; }
.sticky-trial-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.sticky-trial-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 999px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--glow-blue);
}
.sticky-trial-btn:hover {
  box-shadow: 0 6px 30px var(--glow-cyan);
  transform: scale(1.04);
}
.sticky-trial-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 2px 4px;
  transition: color 0.2s;
}
.sticky-trial-close:hover { color: #fff; }

/* ========== PLANS PAYMENT ICONS ========== */
.plans-payment-label {
  text-align: center;
  margin-top: 38px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-soft);
}
.plans-payment {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}
.payment-badge:hover {
  border-color: rgba(0, 163, 255, 0.4);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}
.pay-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  flex-shrink: 0;
  color: var(--text-soft);
}
.pay-ico svg { width: auto; height: 22px; max-width: 30px; display: block; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero { padding: 116px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .hero-left { max-width: 640px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-rating { justify-content: center; }
  .hero-social { justify-content: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; justify-items: center; }
  .hero-right { order: 2; }
  .poster-featured { width: 245px; height: 358px; }
  /* Scale up ambient posters for tablet */
  .hpe-bg1 { width: 48%; opacity: 0.22; filter: blur(14px) brightness(0.6); }
  .hpe-bg2 { width: 42%; opacity: 0.18; filter: blur(18px) brightness(0.55); }
  .hpe-bg6 { width: 50%; opacity: 0.24; filter: blur(12px) brightness(0.62); }
  .hpe-mb1 { width: 26%; opacity: 0.42; filter: blur(4px) brightness(0.8); }
  .hpe-mb2 { width: 22%; opacity: 0.46; filter: blur(3px) brightness(0.85); }
  .hpe-fc1 { width: 22%; opacity: 0.60; }
  .hpe-fc2 { width: 18%; opacity: 0.52; }
  .hpe-fc5, .hpe-fc6, .hpe-fc10, .hpe-fc11 { display: none; }
  .hpe-fc7, .hpe-fc9 { opacity: 0.28; }
  .hpe-mb4, .hpe-mb6 { display: none; }
}
@media (max-width: 1024px) {
  .container { width: 90%; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .plan-card.highlighted { transform: none; }
}
@media (max-width: 768px) {
  .container { width: 92%; padding: 0 12px; }
  .nav-logo { font-size: 1.15rem; }
  .nav-menu, .nav-right .nav-cta-btn { display: none; }
  .menu-toggle { display: flex; }
  .nav-right { gap: 10px; }
  .navbar {
    background: rgba(2, 8, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
  }
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 96px 0 30px;
  }
  .section { padding: 40px 0; }
  .plans-section { padding: 40px 0; }
  .sports-section { padding: 40px 0; }
  .why-section { padding: 44px 0; }
  .trending-section { padding: 40px 0 40px; }
  .carousel-section { padding: 56px 0 6px; }
  .final-cta { padding: 52px 22px; }
  #chan-carousel .channels-ticker-wrap { padding: 4px 0 2px; }
  #chan-carousel .channels-ticker-right { margin-top: 8px; }
  .tc-stage { padding: 28px 0 36px; }
  .tc-card { width: clamp(150px, 42vw, 188px); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .plan-tabs { padding: 4px; gap: 4px; }
  .plan-tab { padding: 8px 16px; font-size: 0.82rem; }
}
@media (max-width: 640px) {
  .poster-featured { width: 205px; height: 300px; --pf-radius: 18px; }

  /* Background layer — large blurred fills for depth */
  .hpe-bg1 { width: 65%; top: -8%;  left: -10%; opacity: 0.28; filter: blur(12px) brightness(0.62); }
  .hpe-bg2 { width: 55%; top: -4%;  left: 20%;  opacity: 0.22; filter: blur(16px) brightness(0.56); }
  .hpe-bg3 { width: 50%; top: 38%;  left: -8%;  opacity: 0.20; filter: blur(14px) brightness(0.58); }
  .hpe-bg6 { width: 60%; top: -6%;  right: -8%; opacity: 0.26; filter: blur(12px) brightness(0.62); }
  .hpe-bg7 { width: 55%; bottom: -6%; right: 5%; opacity: 0.20; filter: blur(16px) brightness(0.56); }
  .hpe-bg4, .hpe-bg5, .hpe-bg8 { display: none; }

  /* Mid layer */
  .hpe-mb1 { width: 30%; top: 4%;   left: 4%;   opacity: 0.48; filter: blur(4px) brightness(0.82); }
  .hpe-mb2 { width: 26%; top: 16%;  right: 4%;  opacity: 0.52; filter: blur(3px) brightness(0.86); }
  .hpe-mb3 { width: 24%; bottom: 6%; left: 2%;  opacity: 0.40; filter: blur(5px) brightness(0.76); display: block; }
  .hpe-mb5 { width: 28%; bottom: 2%; right: 0%;  opacity: 0.44; filter: blur(4px) brightness(0.80); display: block; }
  .hpe-mb4, .hpe-mb6 { display: none; }

  /* Foreground cluster — keep 4 visible posters, sized for phone */
  .hpe-fc1 { width: 28%; top: 2%;   right: 10%; opacity: 0.70; filter: blur(0.5px) brightness(0.88); }
  .hpe-fc2 { width: 24%; bottom: 4%; right: 14%; opacity: 0.62; filter: blur(1px) brightness(0.82); }
  .hpe-fc8 { width: 22%; bottom: 0%; right: 36%; opacity: 0.55; filter: blur(1.5px) brightness(0.80); display: block; }
  .hpe-fc12 { width: 24%; bottom: 8%; right: 0%; opacity: 0.60; filter: blur(1px) brightness(0.84); display: block; }
  .hpe-fc3, .hpe-fc4, .hpe-fc5, .hpe-fc6, .hpe-fc7, .hpe-fc9, .hpe-fc10, .hpe-fc11 { display: none; }

  /* Glow */
  .hpe-glow { width: 85%; height: 65%; right: 0%; opacity: 0.7; }
  .hpe-glow-bloom { width: 70%; height: 55%; opacity: 0.5; display: block; }
  .hpe-particles { opacity: 0.45; }
}
@media (max-width: 560px) {
  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }
  .hero-stat {
    flex: 1;
    padding-right: 0;
    margin-right: 0;
    border-right: 1px solid var(--border-subtle);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 6px;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-stat-label { font-size: 0.65rem; margin-top: 4px; }
}
@media (max-width: 480px) {
  .container { width: 95%; padding: 0 10px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; justify-content: center; }
  .tc-track { gap: 20px; }
  .tc-card { width: clamp(138px, 40vw, 158px); }
  .channel-country-grid { grid-template-columns: 1fr; gap: 10px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.highlighted { transform: none; }
  .plan-name,
  .plan-period,
  .plan-price,
  .plan-monthly { text-align: center; }
  .plan-period { font-size: 1rem; }
  .plan-price { font-size: 3.8rem; }
  .plan-tabs { width: 100%; padding: 4px; gap: 3px; }
  .plan-tab { flex: 1; padding: 8px 6px; font-size: 0.78rem; text-align: center; }
  .device-tabs .plan-tab { padding: 8px 10px; }
  .device-tabs .dt-label { font-size: 0.72rem; }
  .plans-subhead { font-size: 0.95rem; margin-top: 0; }
  .plans-payment { gap: 8px; }
  .payment-badge { height: 40px; padding: 0 14px; font-size: 0.78rem; gap: 7px; }
  .pay-ico, .pay-ico svg { height: 19px; }
  .sticky-trial { padding: 10px 16px; gap: 10px; }
  .sticky-trial-text { display: none; }
}

/* ============================================================
   RESELLER PAGE
   ============================================================ */

/* ----- Hero ----- */
.reseller-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
.rh-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.rh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
}
.rh-glow-1 {
  width: 48vw; height: 48vw; max-width: 720px; max-height: 720px;
  top: -14%; right: -8%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.38) 0%, transparent 70%);
  animation: oceanDrift1 22s ease-in-out infinite alternate;
}
.rh-glow-2 {
  width: 40vw; height: 40vw; max-width: 620px; max-height: 620px;
  bottom: -18%; left: -10%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.30) 0%, transparent 70%);
  animation: oceanDrift2 26s ease-in-out infinite alternate;
}
/* Subtle perspective grid floor */
.rh-grid {
  position: absolute;
  inset: 40% -20% -20% -20%;
  background-image:
    linear-gradient(rgba(0, 163, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 255, 0.10) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(420px) rotateX(62deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(180deg, transparent 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 60%, transparent 100%);
  opacity: 0.6;
}
/* Floating particles */
.rh-particles { position: absolute; inset: 0; }
.rh-particles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 12px 2px rgba(61, 217, 255, 0.7);
  opacity: 0;
  animation: rhFloat 9s ease-in-out infinite;
}
.rh-particles span:nth-child(1)  { left: 8%;  top: 70%; width: 5px; height: 5px; animation-delay: 0s;    }
.rh-particles span:nth-child(2)  { left: 18%; top: 40%; animation-delay: 1.2s; }
.rh-particles span:nth-child(3)  { left: 27%; top: 80%; width: 4px; height: 4px; animation-delay: 2.4s;  }
.rh-particles span:nth-child(4)  { left: 35%; top: 30%; animation-delay: 0.6s; }
.rh-particles span:nth-child(5)  { left: 44%; top: 65%; width: 7px; height: 7px; animation-delay: 3.1s;  }
.rh-particles span:nth-child(6)  { left: 52%; top: 22%; width: 4px; height: 4px; animation-delay: 1.8s;  }
.rh-particles span:nth-child(7)  { left: 60%; top: 75%; animation-delay: 2.9s; }
.rh-particles span:nth-child(8)  { left: 67%; top: 45%; width: 5px; height: 5px; animation-delay: 0.3s;  }
.rh-particles span:nth-child(9)  { left: 74%; top: 18%; animation-delay: 3.6s; }
.rh-particles span:nth-child(10) { left: 81%; top: 68%; width: 4px; height: 4px; animation-delay: 1.1s;  }
.rh-particles span:nth-child(11) { left: 88%; top: 38%; width: 6px; height: 6px; animation-delay: 2.2s;  }
.rh-particles span:nth-child(12) { left: 94%; top: 60%; animation-delay: 0.9s; }
.rh-particles span:nth-child(13) { left: 13%; top: 55%; width: 4px; height: 4px; animation-delay: 4s;    }
.rh-particles span:nth-child(14) { left: 31%; top: 50%; animation-delay: 2.7s; }
.rh-particles span:nth-child(15) { left: 49%; top: 82%; width: 5px; height: 5px; animation-delay: 1.5s;  }
.rh-particles span:nth-child(16) { left: 64%; top: 60%; width: 4px; height: 4px; animation-delay: 3.3s;  }
.rh-particles span:nth-child(17) { left: 78%; top: 80%; animation-delay: 0.4s; }
.rh-particles span:nth-child(18) { left: 90%; top: 14%; width: 5px; height: 5px; animation-delay: 2s;    }
@keyframes rhFloat {
  0%   { transform: translateY(0) scale(1);    opacity: 0; }
  15%  { opacity: 0.9; }
  50%  { transform: translateY(-34px) scale(1.15); opacity: 0.7; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-68px) scale(0.9); opacity: 0; }
}

.reseller-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.reseller-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 18px 0 20px;
}
.reseller-hero-sub {
  color: var(--text-muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  max-width: 640px;
  margin: 0 auto 34px;
}
.reseller-hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.reseller-hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 40px;
}
.rh-stat { text-align: center; }
.rh-stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rh-stat-label {
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ----- Reseller package cards ----- */
.reseller-packages { padding-top: 30px; }
.reseller-grid { align-items: stretch; }
.reseller-credits {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-blue);
}
.plan-card.lifetime .reseller-credits {
  color: #FFD27A;
}

/* ----- How it works ----- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
/* Connecting line behind the step cards */
.how-steps::before {
  content: '';
  position: absolute;
  top: 46px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.5) 20%, rgba(0, 163, 255, 0.5) 80%, transparent);
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(7, 26, 61, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 34px 26px 30px;
  transition: var(--transition);
}
.how-step:hover {
  border-color: rgba(0, 163, 255, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 102, 255, 0.24);
}
.how-step-num {
  width: 34px; height: 34px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px var(--glow-blue);
}
.how-step-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-blue);
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.3);
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-step p { color: var(--text-muted); font-size: 0.92rem; }

/* ----- Why become a reseller grid ----- */
.reseller-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.why-card {
  background: rgba(7, 26, 61, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(0, 163, 255, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 102, 255, 0.2);
}
.why-icon {
  width: 50px; height: 50px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-blue);
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 163, 255, 0.3);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ----- Reseller responsive ----- */
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; max-width: 460px; }
  .how-steps::before { display: none; }
  .reseller-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reseller-hero { min-height: auto; padding: 120px 0 70px; }
}
@media (max-width: 560px) {
  .reseller-why-grid { grid-template-columns: 1fr; }
  .reseller-hero-stats {
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
  }
  .rh-stat {
    flex: 1;
    padding: 0 6px;
    border-right: 1px solid var(--border-subtle);
  }
  .rh-stat:last-child { border-right: none; }
  .rh-stat-num { font-size: 1.1rem; }
  .rh-stat-label { font-size: 0.62rem; }
  .reseller-hero-btns { flex-direction: column; align-items: center; }
  .reseller-hero-btns a { width: 100%; max-width: 320px; justify-content: center; }
}
/* ============================================================
   RTL SUPPORT (right-to-left languages)
   Activated by <html dir="rtl"> set in setLanguage(). Most of the
   layout is centered/symmetrical; these rules flip the few
   direction-dependent pieces so RTL languages read correctly.
   ============================================================ */
[dir="rtl"] .hero-left,
[dir="rtl"] .reseller-hero-inner,
[dir="rtl"] .pf-info { text-align: right; }

[dir="rtl"] .nav-menu a.active::after { left: auto; right: 0; }

/* Dropdowns & absolutely-positioned chips flip sides */
[dir="rtl"] .lang-list { right: auto; left: 0; }
[dir="rtl"] .plan-badge { right: auto; left: 16px; }
[dir="rtl"] .pf-tag,
[dir="rtl"] .tc-tag { right: auto; left: 12px; }
[dir="rtl"] .pf-badge,
[dir="rtl"] .tc-badge { left: auto; right: 12px; }

/* Feature checklists & list rows mirror their icon side */
[dir="rtl"] .plan-features li,
[dir="rtl"] .channel-list li { flex-direction: row-reverse; }

/* Tickers keep their animation direction; content order is fine LTR-neutral */
[dir="rtl"] .footer-desc { margin-left: 0; margin-right: 0; }

/* Discounted plan price (Customizer → Pricing) */
.plan-price .plan-price-old {
  font-size: 0.42em;
  color: var(--text-soft, #8FA0B5);
  text-decoration: line-through;
  font-weight: 600;
  margin-right: 8px;
  vertical-align: middle;
}
