/* ═══════════════════════════════════════════════════════════════════
   Pretty Live – Landing Page Styles
   Semi-modern + semi-classic design
═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --clr-primary:   #c0397a;   /* rose */
  --clr-primary-d: #9b2060;
  --clr-primary-l: #e05596;
  --clr-accent:    #9b59b6;   /* purple */
  --clr-gold:      #d4a843;
  --clr-dark:      #1a0a2e;   /* deep night */
  --clr-dark-2:    #250f3e;
  --clr-dark-3:    #31145a;
  --clr-warm-bg:   #1e0d35;
  --bg-section:    #f9f4ff;
  --bg-dark-sec:   #160828;
  --bg-warm-sec:   #1c0c34;

  --txt-primary:   #1a0a2e;
  --txt-muted:     #7a6b8a;
  --txt-light:     rgba(255,255,255,0.85);
  --txt-lighter:   rgba(255,255,255,0.55);

  --grad-hero:     linear-gradient(135deg, #1a0a2e 0%, #3a0e6e 50%, #1a0a2e 100%);
  --grad-primary:  linear-gradient(135deg, #c0397a, #9b59b6);
  --grad-gold:     linear-gradient(135deg, #d4a843, #f5c842);
  --grad-card:     linear-gradient(145deg, #2a1050, #1a0a2e);
  --grad-warm:     linear-gradient(135deg, #3d0e5a, #1a1035);

  --shadow-sm:     0 2px 12px rgba(192,57,122,0.12);
  --shadow-md:     0 8px 32px rgba(155,89,182,0.20);
  --shadow-lg:     0 20px 60px rgba(26,10,46,0.40);
  --shadow-rose:   0 8px 30px rgba(192,57,122,0.40);
  --shadow-glow:   0 0 40px rgba(192,57,122,0.25);

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --radius-pill:   999px;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --nav-h:         70px;
  --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--txt-primary);
  background: var(--clr-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── CONTAINER ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION ────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark-sec); }
.section-warm { background: var(--bg-warm-sec); }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(192,57,122,0.55); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-nav {
  background: var(--grad-primary);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow-rose); }

/* ── SECTION HEADER ─────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(192,57,122,0.15);
  border: 1px solid rgba(192,57,122,0.3);
  color: var(--clr-primary-l);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-dark);
  margin-bottom: 16px;
}
.section-header h2 em { font-style: italic; color: var(--clr-primary); }
.section-header p {
  font-size: 1.05rem;
  color: var(--txt-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Overrides for dark background sections */
.hero .section-header h2,
.section-dark .section-header h2,
.section-warm .section-header h2,
.download-section .section-header h2 { color: #fff; }

.hero .section-header h2 em,
.section-dark .section-header h2 em,
.section-warm .section-header h2 em,
.download-section .section-header h2 em { color: var(--clr-primary-l); }

.hero .section-header p,
.section-dark .section-header p,
.section-warm .section-header p,
.download-section .section-header p { color: var(--txt-lighter); }


/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(22,8,40,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(192,57,122,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-accent { color: var(--clr-primary-l); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: var(--txt-lighter);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--clr-primary-l);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { left: 0; right: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,4,25,0.97);
  backdrop-filter: blur(16px);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.close-btn {
  position: absolute;
  top: 24px; right: 24px;
  color: #fff;
  font-size: 1.6rem;
  padding: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-link {
  color: #fff;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--clr-primary-l); }
.btn-cta-mobile {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 8px;
  box-shadow: var(--shadow-rose);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c0397a, transparent 70%);
  top: -200px; right: -100px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #9b59b6, transparent 70%);
  bottom: -150px; left: -150px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #d4a843, transparent 70%);
  top: 40%; left: 40%;
  opacity: 0.12;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-text { position: relative; z-index: 2; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(192,57,122,0.2);
  border: 1px solid rgba(192,57,122,0.4);
  border-radius: var(--radius-pill);
  color: #ff9ecb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,122,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(192,57,122,0); }
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-text h1 em {
  font-style: italic;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.stat-item:first-child { padding-left: 0; }
.stat-item strong {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1;
}
.stat-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ── PHONE MOCKUP ───────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.phone-mockup { position: relative; }
.phone-frame {
  width: 280px;
  height: 570px;
  background: linear-gradient(160deg, #2a1050, #0f0520);
  border-radius: 44px;
  border: 2px solid rgba(192,57,122,0.4);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 6px rgba(155,89,182,0.1),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone-notch {
  width: 100px;
  height: 28px;
  background: #0f0520;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 0;
  padding: 0;
  overflow: hidden;
}

.stream-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #3d0e5e 0%, #1a0835 60%, #0d0420 100%);
}
.stream-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 36px 12px 10px;
}
.stream-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.stream-info { flex: 1; }
.stream-name { display: block; font-size: 0.75rem; font-weight: 700; color: #fff; }
.live-badge {
  display: inline-block;
  font-size: 0.6rem;
  padding: 1px 6px;
  background: #e5273f;
  border-radius: 3px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  animation: live-blink 2s infinite;
}
@keyframes live-blink {
  0%,100% { opacity:1; }
  50% { opacity: 0.6; }
}
.viewer-count { font-size: 0.7rem; color: rgba(255,255,255,0.7); }

.stream-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 10px 12px;
  background: url('streamer.png') center center / cover no-repeat;
}
.stream-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,4,50,0.15) 0%,
    rgba(20,4,50,0.05) 40%,
    rgba(20,4,50,0.55) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.stream-content > * { position: relative; z-index: 1; }
.floating-hearts { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.fh {
  position: absolute;
  font-size: 1.1rem;
  animation: floatHeart 3s ease-in infinite;
  opacity: 0;
}
.fh-1 { left: 20%;  animation-delay: 0s; }
.fh-2 { left: 40%;  animation-delay: 0.6s; }
.fh-3 { left: 60%;  animation-delay: 1.2s; }
.fh-4 { left: 75%;  animation-delay: 0.3s; }
.fh-5 { left: 10%;  animation-delay: 1.8s; }
@keyframes floatHeart {
  0%   { bottom: 10%; opacity: 0; transform: scale(0.6) translateX(0); }
  20%  { opacity: 1; }
  100% { bottom: 90%; opacity: 0; transform: scale(1) translateX(20px); }
}
.gift-notification {
  position: absolute;
  bottom: 12px; left: 8px; right: 8px;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.65rem;
  color: #f5c842;
  backdrop-filter: blur(8px);
}

.stream-chat {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 100px;
  overflow: hidden;
}
.chat-msg { font-size: 0.62rem; color: rgba(255,255,255,0.75); }
.chat-user { font-weight: 700; margin-right: 4px; }
.u1 { color: #ff9ecb; }
.u2 { color: #b39ddb; }
.u3 { color: #f5c842; }

.stream-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 16px;
}
.quick-gifts { display: flex; gap: 8px; }
.gift-btn { font-size: 1.1rem; cursor: pointer; transition: transform 0.2s; }
.gift-btn:hover { transform: scale(1.2); }
.go-live-btn {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(192,57,122,0.5);
}

.phone-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(192,57,122,0.25), transparent 70%);
  bottom: -80px; left: 0;
  filter: blur(30px);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(30,10,60,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(192,57,122,0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card span { font-size: 1.6rem; }
.floating-card strong { display: block; font-size: 0.82rem; color: #fff; }
.floating-card small { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.card-top { top: 40px; right: -110px; animation-delay: 0s; }
.card-bottom { bottom: 80px; right: -120px; animation-delay: 1.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── HERO WAVE ──────────────────────────────────────────────────── */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ═══════════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-section);
  padding: 32px 0;
  border-top: 1px solid rgba(155,89,182,0.08);
  border-bottom: 1px solid rgba(155,89,182,0.08);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.trust-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt-muted);
  letter-spacing: 0.01em;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.trust-logo:hover { opacity: 0.85; }

/* ═══════════════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════════════ */
.features { background: var(--bg-section); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(155,89,182,0.1);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat-card-highlight {
  background: linear-gradient(145deg, #3d0e5e, #1a0835);
  border-color: rgba(192,57,122,0.3);
}
.feat-card-highlight h3 { color: #fff; }
.feat-card-highlight p { color: rgba(255,255,255,0.65); }
.feat-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--txt-primary);
  margin-bottom: 12px;
}
.feature-card p { font-size: 0.92rem; color: var(--txt-muted); line-height: 1.7; }
.feat-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 3px 12px;
  background: rgba(192,57,122,0.1);
  border: 1px solid rgba(192,57,122,0.2);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.feat-card-highlight .feat-tag {
  background: rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.3);
  color: #f5c842;
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════════ */
.steps-container {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,57,122,0.12);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  max-width: 300px;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(192,57,122,0.15); }
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.25;
}
.step-icon { font-size: 2.4rem; margin-bottom: 16px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.step p { font-size: 0.9rem; color: var(--txt-lighter); line-height: 1.7; }

.steps-connector {
  display: flex;
  align-items: center;
  padding: 0 12px;
  flex-shrink: 0;
}
.connector-line {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,57,122,0.4), transparent);
}
.connector-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
  box-shadow: 0 0 12px rgba(192,57,122,0.6);
}

/* ═══════════════════════════════════════════════════════════════════
   TOP STREAMERS
═══════════════════════════════════════════════════════════════════ */
.top-streamers { background: var(--bg-section); }
.streamers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.streamer-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 20px 24px;
  border: 1px solid rgba(155,89,182,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.streamer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card-featured {
  background: linear-gradient(145deg, #3d0e5e, #1a0835);
  border-color: rgba(212,168,67,0.3);
  box-shadow: 0 8px 32px rgba(212,168,67,0.15);
}
.card-featured h4, .card-featured .streamer-tag, .card-featured .streamer-stats strong,
.card-featured .streamer-stats small { color: #fff !important; }
.card-featured .streamer-stats small { color: rgba(255,255,255,0.5) !important; }
.card-featured .streamer-rank { color: #f5c842; }

.streamer-rank {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--txt-muted);
  letter-spacing: 0.04em;
}
.rank-1 { color: #d4a843; }
.rank-2 { color: #9e9e9e; }
.rank-3 { color: #c07840; }

.streamer-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
  background: var(--grad-primary);
}
.av-1 { background: linear-gradient(135deg, #e05596, #9b59b6); }
.av-2 { background: linear-gradient(135deg, #d4a843, #c07840); }
.av-3 { background: linear-gradient(135deg, #c0397a, #3d0e5e); }
.av-4 { background: linear-gradient(135deg, #9b59b6, #3d0e5e); }
.av-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
}
.av-live {
  position: absolute;
  bottom: 0; right: 0;
  background: #e5273f;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  letter-spacing: 0.06em;
  animation: live-blink 2s infinite;
}
.av-live.off { background: #666; animation: none; }

.streamer-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt-primary);
  margin-bottom: 4px;
}
.streamer-tag {
  font-size: 0.75rem;
  color: var(--clr-primary);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.streamer-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.streamer-stats strong { display: block; font-size: 1rem; font-weight: 700; color: var(--txt-primary); }
.streamer-stats small { font-size: 0.7rem; color: var(--txt-muted); text-transform: uppercase; }

.btn-follow {
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-follow:hover { transform: scale(1.05); box-shadow: var(--shadow-rose); }

/* ═══════════════════════════════════════════════════════════════════
   GIFTS SECTION
═══════════════════════════════════════════════════════════════════ */
.gifts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.gifts-text .section-badge { margin-bottom: 16px; }
.gifts-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.gifts-text h2 em { font-style: italic; color: var(--clr-primary-l); }
.gifts-text p { font-size: 1rem; color: var(--txt-lighter); margin-bottom: 28px; line-height: 1.7; }
.gifts-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.gifts-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}
.gifts-perks li span { flex: 1; }

/* Gifts radial layout */
.gifts-visual { display: flex; align-items: center; justify-content: center; }
.gifts-showcase {
  width: 300px; height: 300px;
  position: relative;
  border-radius: 50%;
}
.gift-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}
.gift-pulse {
  font-size: 2.8rem;
  animation: giftPulse 2s ease-in-out infinite;
  display: block;
}
@keyframes giftPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.gift-center span {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 4px;
}
.gift-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(192,57,122,0.2);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  font-size: 1.5rem;
  min-width: 60px;
  text-align: center;
  transition: transform var(--transition);
  animation: floatOrbit 6s ease-in-out infinite;
}
.gift-item span { font-size: 0.55rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; }
.gift-item:hover { transform: scale(1.15) !important; z-index: 10; }

/* Position items around the circle */
.gi-1 { top: -30px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.gi-2 { top: 10px; right: -20px; animation-delay: 0.75s; }
.gi-3 { top: 50%; right: -35px; transform: translateY(-50%); animation-delay: 1.5s; }
.gi-4 { bottom: 10px; right: -20px; animation-delay: 2.25s; }
.gi-5 { bottom: -30px; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.gi-6 { bottom: 10px; left: -20px; animation-delay: 3.75s; }
.gi-7 { top: 50%; left: -35px; transform: translateY(-50%); animation-delay: 4.5s; }
.gi-8 { top: 10px; left: -20px; animation-delay: 5.25s; }

@keyframes floatOrbit {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(3px); }
}
/* Overrides for items with existing transforms */
.gi-1 { animation: floatOrbitV 5s ease-in-out infinite; }
.gi-5 { animation: floatOrbitV 5s ease-in-out infinite; animation-delay: 2.5s; }
@keyframes floatOrbitV {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════ */
.testimonials { background: var(--bg-section); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(155,89,182,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-featured {
  background: linear-gradient(145deg, #3d0e5e, #1a0835);
  border-color: rgba(192,57,122,0.3);
}
.testi-featured p, .testi-featured strong { color: #fff !important; }
.testi-featured small { color: rgba(255,255,255,0.5) !important; }
.testi-stars { font-size: 1rem; color: #f5c842; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p {
  font-size: 0.92rem;
  color: var(--txt-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ta-1 { background: linear-gradient(135deg, #e05596, #9b59b6); }
.ta-2 { background: linear-gradient(135deg, #d4a843, #c07840); }
.ta-3 { background: linear-gradient(135deg, #c0397a, #1a0835); }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--txt-primary); font-weight: 700; }
.testi-author small { font-size: 0.75rem; color: var(--txt-muted); }

/* ═══════════════════════════════════════════════════════════════════
   DOWNLOAD SECTION
═══════════════════════════════════════════════════════════════════ */
.download-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #3a0e6e 50%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.download-text .section-badge { margin-bottom: 16px; }
.download-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.download-text h2 em { font-style: italic; color: var(--clr-primary-l); }
.download-text p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.download-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: #fff;
  transition: var(--transition);
  min-width: 160px;
  backdrop-filter: blur(8px);
}
.store-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); border-color: rgba(192,57,122,0.4); }
.store-icon { flex-shrink: 0; color: #fff; }
.store-text small { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.store-text strong { display: block; font-size: 1rem; font-weight: 700; }

.qr-area { display: flex; align-items: center; gap: 16px; }
.qr-placeholder {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.qr-inner {
  width: 60px; height: 60px;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.15) 0px,
    rgba(255,255,255,0.15) 3px,
    transparent 3px,
    transparent 6px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.15) 0px,
    rgba(255,255,255,0.15) 3px,
    transparent 3px,
    transparent 6px
  );
  border-radius: 4px;
}
.qr-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-style: italic; }

/* Download visual / floating emojis */
.download-visual { position: relative; height: 300px; }
.download-orbs { position: absolute; inset: 0; pointer-events: none; }
.dorb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.dorb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,57,122,0.3), transparent 70%);
  top: -50px; right: 0;
}
.dorb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(155,89,182,0.3), transparent 70%);
  bottom: 0; left: 20%;
}
.d-emoji-float { position: relative; width: 100%; height: 100%; }
.de {
  position: absolute;
  font-size: 2.5rem;
  animation: deFloat 4s ease-in-out infinite;
}
.de1 { top: 10%; left: 15%; animation-delay: 0s; }
.de2 { top: 5%; right: 20%; animation-delay: 0.6s; font-size: 2rem; }
.de3 { top: 40%; left: 30%; animation-delay: 1.2s; font-size: 2.2rem; }
.de4 { top: 60%; right: 15%; animation-delay: 1.8s; font-size: 2.8rem; }
.de5 { bottom: 15%; left: 10%; animation-delay: 2.4s; font-size: 2rem; }
.de6 { bottom: 20%; right: 30%; animation-delay: 3s; font-size: 2.4rem; }
@keyframes deFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(-8px) rotate(-3deg); }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer { background: #0d0420; padding: 80px 0 0; border-top: 1px solid rgba(192,57,122,0.1); }
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin: 16px 0 24px;
  line-height: 1.7;
}
.social-links { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-icon:hover { background: rgba(192,57,122,0.2); border-color: rgba(192,57,122,0.4); color: #fff; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--clr-primary-l); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--clr-primary-l); }

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS (scroll)
═══════════════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 960px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-overlay { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-text h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .streamers-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-container { flex-direction: column; align-items: center; gap: 20px; }
  .steps-connector { transform: rotate(90deg); padding: 0; }

  .gifts-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .gifts-text p, .gifts-visual { margin: 0 auto; }
  .gifts-perks { align-items: center; }
  .gifts-text .btn { margin: 0 auto; display: inline-flex; }

  .download-inner { grid-template-columns: 1fr; gap: 40px; }
  .download-visual { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .card-top, .card-bottom { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .section { padding: 70px 0; }

  .hero-text h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { gap: 0; }
  .stat-item strong { font-size: 1.3rem; }

  .features-grid { grid-template-columns: 1fr; }
  .streamers-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 1.8rem; }
  .section-header { margin-bottom: 44px; }

  .step { max-width: 100%; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .gifts-showcase { width: 240px; height: 240px; }
  .gift-item { padding: 7px 6px; font-size: 1.1rem; min-width: 48px; }

  .download-btns { flex-direction: column; align-items: flex-start; }
  .store-btn { width: 100%; max-width: 260px; }

  .phone-frame { width: 240px; height: 490px; }

  .trust-logos { gap: 24px; }
  .trust-logo { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-dark); }
::-webkit-scrollbar-thumb { background: rgba(192,57,122,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(192,57,122,0.7); }
