/* ============================================================
   AfriStream – Global Stylesheet
   afristream.online  |  Premium IPTV Streaming Platform
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary:   #070711;
  --bg-secondary: #0e0e1a;
  --bg-card:      rgba(255,255,255,0.04);
  --purple:       #7c3aed;
  --purple-light: #a855f7;
  --cyan:         #06b6d4;
  --blue:         #3b82f6;
  --pink:         #ec4899;
  --gold:         #f59e0b;
  --red:          #ef4444;
  --text-primary: #f1f5f9;
  --text-muted:   #94a3b8;
  --border:       rgba(255,255,255,0.08);
  --glow-purple:  0 0 40px rgba(124,58,237,0.4);
  --glow-cyan:    0 0 40px rgba(6,182,212,0.4);
  --glow-blue:    0 0 40px rgba(59,130,246,0.4);
  --glow-red:     0 0 40px rgba(239,68,68,0.4);
  --radius-lg:    1.25rem;
  --radius-xl:    1.75rem;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--purple), var(--red)); border-radius: 99px; }

/* ---------- Selection ---------- */
::selection { background: rgba(239,68,68,0.35); color: #fff; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(7,7,17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--red) 55%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(7,7,17,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--red));
  color: #fff;
  box-shadow: 0 4px 24px rgba(239,68,68,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(239,68,68,0.55);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border: 1.5px solid var(--purple);
}

.btn-outline:hover {
  background: rgba(124,58,237,0.12);
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), #0284c7);
  color: #fff;
  box-shadow: 0 4px 24px rgba(6,182,212,0.4);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(6,182,212,0.55);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: #fff;
  box-shadow: 0 4px 24px rgba(239,68,68,0.4);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(239,68,68,0.6);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  border-radius: 1rem;
}

.btn-xl {
  padding: 1.125rem 3rem;
  font-size: 1.125rem;
  border-radius: 1rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(124,58,237,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(6,182,212,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(59,130,246,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 90% 20%, rgba(239,68,68,0.14) 0%, transparent 60%),
    linear-gradient(170deg, #0d0d1f 0%, #070711 50%, #0a0014 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(239,68,68,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #f87171;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--red) 35%, var(--purple-light) 65%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-device-mockup {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-screen {
  background: #111827;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(239,68,68,0.2),
    0 32px 64px rgba(0,0,0,0.7),
    0 0 60px rgba(239,68,68,0.12),
    var(--glow-purple);
  aspect-ratio: 16/10;
  position: relative;
}

.hero-screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1035 0%, #0f1729 50%, #0a1a2e 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.movie-card-hero {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  max-width: 220px;
}

.movie-card-hero h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.movie-card-hero p { font-size: 0.75rem; color: var(--text-muted); }

.floating-card {
  position: absolute;
  background: rgba(14,14,26,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
}

.floating-card:nth-child(2) { animation-delay: -1.5s; }
.floating-card:nth-child(3) { animation-delay: -3s; }

.floating-card-top {
  top: -1.5rem;
  right: -1.5rem;
}

.floating-card-bottom {
  bottom: -1.5rem;
  left: -1.5rem;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
  padding: 6rem 0;
}

.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-eyebrow-red {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-title .gradient-text {
  background: linear-gradient(135deg, var(--red), var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Dividers ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, rgba(124,58,237,0.04) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover::before { opacity: 1; }
.card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--glow-purple);
}

.card-glow-cyan:hover {
  border-color: rgba(6,182,212,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--glow-cyan);
}

.card-glow-red:hover {
  border-color: rgba(239,68,68,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--glow-red);
}

.card:nth-child(3n):hover {
  border-color: rgba(239,68,68,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(239,68,68,0.15);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(239,68,68,0.18), rgba(124,58,237,0.15));
  border: 1px solid rgba(239,68,68,0.2);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* =============================================
   GLASSMORPHISM
   ============================================= */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
}

.glass-dark {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* =============================================
   PRICING CARDS
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.pricing-card.featured {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 0 60px rgba(124,58,237,0.25), 0 16px 48px rgba(0,0,0,0.4);
  transform: scale(1.02);
}

.pricing-card.featured::before { opacity: 1; }

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  color: #fff;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-start;
  padding-top: 0.5rem;
}

.pricing-price .period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6875rem;
  color: var(--purple-light);
}

.pricing-features li .check-cyan {
  background: rgba(6,182,212,0.15);
  border-color: rgba(6,182,212,0.35);
  color: var(--cyan);
}

/* =============================================
   CHANNEL CARDS
   ============================================= */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}

.channel-card {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  padding: 0.75rem;
}

.channel-card:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.35);
  color: #fff;
  transform: scale(1.05);
}

.channel-card:last-child:hover {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.5);
  box-shadow: var(--glow-red);
}

.channel-card:nth-child(5n):hover {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.3);
}

.channel-card .ch-icon {
  font-size: 1.75rem;
  line-height: 1;
}

/* =============================================
   MOVIE CARDS
   ============================================= */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.movie-card {
  border-radius: 0.875rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 2/3;
  cursor: pointer;
  transition: all var(--transition);
}

.movie-card:hover { transform: scale(1.04) translateY(-4px); }
.movie-card:hover .movie-card-overlay { opacity: 1; }

.movie-card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-secondary);
}

.movie-card-poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  padding: 0.75rem;
}

.movie-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.875rem;
}

.movie-card-overlay h4 {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.movie-card-overlay p {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.movie-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.movie-card:hover .movie-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =============================================
   DEVICE ICONS SECTION
   ============================================= */
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: center;
}

.device-card:hover {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.2);
}

.device-card:nth-child(even):hover {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.35);
  box-shadow: 0 12px 40px rgba(239,68,68,0.18);
}

.device-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.device-icon i {
  color: var(--purple-light);
  transition: color var(--transition);
}

.device-card:hover .device-icon i {
  color: #fff;
}

.device-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.device-card:hover .device-name { color: #fff; }

/* =============================================
   STEPS / HOW IT WORKS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(124,58,237,0.12);
  border: 2px solid rgba(124,58,237,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--purple-light);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-card:nth-child(even) .step-number {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.4);
  color: #f87171;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-3px);
}

.testimonial-card:nth-child(3n) {
  border-top: 2px solid rgba(239,68,68,0.4);
}

.testimonial-card:nth-child(3n):hover {
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 8px 32px rgba(239,68,68,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.875rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--purple));
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(124,58,237,0.3);
}

.faq-item:nth-child(even).open {
  border-color: rgba(239,68,68,0.35);
}

.faq-item:nth-child(even).open .faq-icon {
  background: rgba(239,68,68,0.2);
  border-color: rgba(239,68,68,0.4);
  color: #f87171;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--purple-light); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--purple-light);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(124,58,237,0.25);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.trust-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(239,68,68,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(239,68,68,0.1) 0%, transparent 60%),
    linear-gradient(170deg, rgba(124,58,237,0.05) 0%, transparent 50%);
}

.cta-content { position: relative; z-index: 1; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #050509;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--purple-light); }

.footer-links li:nth-child(odd) a:hover { color: #f87171; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(239,68,68,0.15);
  border-color: rgba(239,68,68,0.45);
  transform: translateY(-2px);
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-form {
  display: flex;
  gap: 0.875rem;
  max-width: 480px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: rgba(239,68,68,0.5); box-shadow: 0 0 0 3px rgba(239,68,68,0.08); }

/* =============================================
   TABS
   ============================================= */
.tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 0.375rem;
  width: fit-content;
  margin: 0 auto 3rem;
}

.tab-btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  background: none;
  color: var(--text-muted);
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--red));
  color: #fff;
  box-shadow: 0 4px 16px rgba(239,68,68,0.35);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239,68,68,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 20px rgba(239,68,68,0.08);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1035, #0f1729);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 10% 50%, rgba(239,68,68,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 90% 50%, rgba(239,68,68,0.08) 0%, transparent 60%),
    linear-gradient(170deg, #0e0e1a 0%, var(--bg-primary) 100%);
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--purple-light); }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--text-primary);
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
  color: var(--text-primary);
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul li, .legal-content ol li { margin-bottom: 0.5rem; }

.legal-content a { color: var(--purple-light); text-decoration: underline; }

/* =============================================
   SUPPORT PAGE
   ============================================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* =============================================
   DASHBOARD
   ============================================= */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: #0a0a14;
  border-right: 1px solid var(--border);
  padding: 2rem 1.25rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
}

.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(239,68,68,0.1);
  color: #f87171;
}

.sidebar-nav a.active { border-left: 3px solid var(--red); padding-left: calc(1rem - 3px); }

.dashboard-main {
  background: var(--bg-primary);
  padding: 2rem;
  overflow-y: auto;
}

/* =============================================
   BADGE STATUS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success {
  background: rgba(16,185,129,0.12);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.25);
}

.badge-warning {
  background: rgba(245,158,11,0.12);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.25);
}

.badge-info {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.25);
}

.badge-danger {
  background: rgba(239,68,68,0.12);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  33% { transform: translateY(-20px) rotate(120deg); opacity: 0.6; }
  66% { transform: translateY(10px) rotate(240deg); opacity: 0.3; }
}

@keyframes shimmer {
  from { left: -100%; }
  to { left: 100%; }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---------- Scroll Animation classes ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal-right.visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-gradient {
  background: linear-gradient(135deg, var(--red), var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-red {
  background: linear-gradient(135deg, var(--red), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.w-full { width: 100%; }
.hidden { display: none; }

.glow-purple { box-shadow: var(--glow-purple); }
.glow-cyan   { box-shadow: var(--glow-cyan); }
.glow-red    { box-shadow: var(--glow-red); }

/* =============================================
   TABLE
   ============================================= */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

thead tr {
  background: rgba(124,58,237,0.08);
  border-bottom: 1px solid var(--border);
}

thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-muted);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.02); }

tbody td {
  padding: 1rem 1.25rem;
  color: var(--text-muted);
}

tbody td:first-child { color: var(--text-primary); font-weight: 500; }

.check-yes { color: #34d399; }
.check-no  { color: #f87171; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .sidebar { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured { transform: none; }

  .tabs { flex-wrap: wrap; }

  table { font-size: 0.8125rem; }
  thead th, tbody td { padding: 0.75rem 0.875rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .hero-stats { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  .movies-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .channel-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
}

/* =============================================
   NEON GLOW EFFECTS
   ============================================= */
.neon-text-purple {
  text-shadow: 0 0 20px rgba(124,58,237,0.8), 0 0 40px rgba(124,58,237,0.4);
}

.neon-text-cyan {
  text-shadow: 0 0 20px rgba(6,182,212,0.8), 0 0 40px rgba(6,182,212,0.4);
}

.neon-border-purple {
  box-shadow: 0 0 20px rgba(124,58,237,0.4), inset 0 0 20px rgba(124,58,237,0.05);
}

/* Progress bar */
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 99px;
}

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.625rem;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-dot {
  width: 5px; height: 5px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Notification dot */
.notif-dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}

/* Loading spinner */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.12);
  border-top-color: var(--purple-light);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
