/* ===================================================
   ADLEARN PRO v2 – style.css
   =================================================== */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:      #a855f7;
  --purple-d:    #7c3aed;
  --purple-l:    #c084fc;
  --gold:        #f59e0b;
  --gold-d:      #d97706;
  --green:       #10b981;
  --blue:        #3b82f6;
  --red:         #ef4444;
  --bg:          #07071180;
  --bg-solid:    #070711;
  --bg-2:        #0d0d1f;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-card-h:   rgba(255,255,255,0.07);
  --border:      rgba(255,255,255,0.08);
  --border-h:    rgba(168,85,247,0.4);
  --text:        #f1f5f9;
  --text-muted:  #94a3b8;
  --text-dim:    #64748b;
  --grad:        linear-gradient(135deg,#a855f7,#f59e0b);
  --grad-btn:    linear-gradient(135deg,#7c3aed 0%,#a855f7 50%,#f59e0b 100%);
  --grad-dark:   linear-gradient(135deg,rgba(168,85,247,.15),rgba(245,158,11,.08));
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow:      0 20px 60px rgba(0,0,0,.5);
  --shadow-glow: 0 8px 40px rgba(168,85,247,.4);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-solid);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
button { font-family: 'Outfit', sans-serif; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-solid); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ---- UTILITIES ---- */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  background: rgba(168,85,247,.12);
  border: 1px solid rgba(168,85,247,.28);
  color: var(--purple-l);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-title {
  font-size: clamp(1.9rem,4vw,3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
  padding: 0 24px;
}
.navbar.scrolled {
  background: rgba(7,7,17,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  height: 70px; display: flex; align-items: center; gap: 28px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-icon { display: flex; filter: drop-shadow(0 0 8px rgba(168,85,247,.5)); }
.logo-text  { font-size: 1.35rem; font-weight: 800; letter-spacing: -.4px; }
.logo-pro   { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(168,85,247,.4);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(168,85,247,.6); }

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

.mobile-menu {
  display: none;
  background: rgba(7,7,17,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 1.05rem; color: var(--text-muted); }
.mobile-menu a:hover { color: var(--text); }
.mobile-cta {
  display: inline-block;
  background: var(--grad); color: #fff !important;
  padding: 12px 24px; border-radius: 50px; font-weight: 700; text-align: center;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 24px 60px; overflow: hidden;
}

/* Orbs */
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3; animation: drift 10s ease-in-out infinite alternate; }
.orb-1 { width: 700px; height: 700px; background: radial-gradient(circle,#7c3aed,transparent 70%); top: -250px; left: -200px; }
.orb-2 { width: 550px; height: 550px; background: radial-gradient(circle,#f59e0b,transparent 70%); bottom: -120px; right: -120px; animation-delay: 3s; }
.orb-3 { width: 350px; height: 350px; background: radial-gradient(circle,#10b981,transparent 70%); top: 45%; left: 48%; transform: translate(-50%,-50%); animation-delay: 6s; }

@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(50px,35px) scale(1.12); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Floating coins */
.coins-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.coin { position: absolute; font-size: 1.6rem; opacity: .55; animation: floatCoin 7s ease-in-out infinite; }
.coin-1 { top: 14%; left: 7%;  animation-delay: 0s; }
.coin-2 { top: 22%; right: 9%; animation-delay: 1.3s; }
.coin-3 { top: 58%; left: 4%;  animation-delay: 2.5s; }
.coin-4 { top: 68%; right: 7%; animation-delay: 0.9s; }
.coin-5 { top: 38%; left: 2%;  animation-delay: 3.2s; }
.coin-6 { top: 82%; right: 13%; animation-delay: 1.8s; }

@keyframes floatCoin {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-22px) rotate(12deg); }
}

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 820px; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.22);
  color: var(--purple-l); padding: 8px 20px; border-radius: 50px;
  font-size: .88rem; font-weight: 600; margin-bottom: 28px;
  animation: fadeDown .8s ease both;
}
.badge-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: blink 1.2s ease infinite; }

@keyframes blink {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,.7); }
  50%     { opacity: .7; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

.hero-title {
  font-size: clamp(2.8rem,7vw,5.5rem); font-weight: 900;
  line-height: 1.08; margin-bottom: 22px; letter-spacing: -1px;
  animation: fadeDown .8s .15s ease both;
}

.hero-subtitle {
  font-size: clamp(.98rem,2.5vw,1.2rem); color: var(--text-muted);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.75;
  animation: fadeDown .8s .3s ease both;
}

/* Stats */
.hero-stats {
  display: flex; justify-content: center; gap: 36px; margin-bottom: 40px;
  animation: fadeDown .8s .45s ease both; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num-wrap { display: flex; align-items: baseline; }
.stat-num {
  font-size: 1.9rem; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-left: 1px; }
.stat-label { font-size: .75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .6px; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* Hero actions */
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px; animation: fadeDown .8s .6s ease both;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-btn); background-size: 200% 200%;
  color: #fff; border: none; padding: 15px 30px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow-glow); white-space: nowrap;
  animation: gradShift 3s ease infinite;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(168,85,247,.7); }
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
  padding: 15px 28px; border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; backdrop-filter: blur(10px);
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-secondary:hover { border-color: var(--purple); background: rgba(168,85,247,.08); transform: translateY(-2px); }

.btn-icon  { font-size: 1rem; }
.btn-arrow { font-size: 1rem; transition: transform .2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-xl    { padding: 20px 44px; font-size: 1.1rem; }

@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(168,85,247,.5); }
  50%     { box-shadow: 0 8px 60px rgba(168,85,247,.9), 0 0 120px rgba(245,158,11,.25); }
}
.glow-pulse { animation: gradShift 3s ease infinite, glowPulse 2.5s ease infinite; }

/* Trust badges */
.trust-badges {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  animation: fadeDown .8s .75s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .85rem; color: var(--text-muted);
}

/* Live ticker */
.live-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; height: 46px; overflow: hidden;
  backdrop-filter: blur(10px);
}
.ticker-label {
  background: var(--grad); padding: 0 20px; height: 100%;
  display: flex; align-items: center;
  font-size: .82rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.ticker-track  { flex: 1; overflow: hidden; }
.ticker-content {
  display: inline-flex; gap: 64px; white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
  font-size: .82rem; color: var(--text-muted);
}
@keyframes tickerScroll { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: linear-gradient(180deg, var(--bg-solid) 0%, var(--bg-2) 100%); }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; }

.step-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 28px; text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-dark); opacity: 0; transition: opacity .3s;
}
.step-card:hover { border-color: var(--border-h); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(168,85,247,.15); }
.step-card:hover::before { opacity: 1; }

.step-number {
  font-size: 4.5rem; font-weight: 900; opacity: .06;
  position: absolute; top: 12px; right: 16px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-icon {
  width: 70px; height: 70px;
  background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.25);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: var(--purple);
  transition: transform .3s, background .3s; position: relative;
}
.step-card:hover .step-icon { transform: scale(1.1) rotate(-3deg); background: rgba(168,85,247,.2); }
.step-icon-gold  { background: rgba(245,158,11,.12)!important; border-color: rgba(245,158,11,.25)!important; color: var(--gold)!important; }
.step-icon-green { background: rgba(16,185,129,.12)!important; border-color: rgba(16,185,129,.25)!important; color: var(--green)!important; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.step-card p  { color: var(--text-muted); line-height: 1.7; font-size: .95rem; }

/* ===== AD WATCH / POINTS SECTION ===== */
.ad-watch-section { background: var(--bg-2); }
.adwatch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* Points explainer */
.points-explainer .section-title { font-size: clamp(1.6rem,3vw,2.3rem); }
.points-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.points-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: .95rem; transition: background .2s; }
.points-row:last-child { border-bottom: none; }
.points-row:hover { background: var(--bg-card); }
.points-row-header { background: rgba(168,85,247,.08); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); }
.points-row-special { background: rgba(168,85,247,.06); font-weight: 600; }
.pts-val { font-weight: 700; color: var(--gold); white-space: nowrap; }

.conversion-note {
  display: flex; align-items: center; gap: 8px;
  background: rgba(168,85,247,.08); border: 1px solid rgba(168,85,247,.2);
  border-radius: 10px; padding: 12px 16px; font-size: .88rem; color: var(--text-muted);
}
.conversion-note strong { color: var(--text); }
.conversion-note svg { flex-shrink: 0; color: var(--purple-l); }

/* Ad card */
.ad-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.ad-card-glow { position: absolute; inset: -2px; background: var(--grad); border-radius: inherit; z-index: 0; animation: glowBorder 3s ease infinite; }
@keyframes glowBorder { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
.ad-card-inner {
  position: relative; z-index: 1;
  background: linear-gradient(145deg, #0f0f26, #1a1a38);
  border-radius: calc(var(--radius-lg) - 2px); padding: 36px 32px;
}

.ad-label-top {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.25);
  color: #f87171; padding: 6px 14px; border-radius: 50px; font-size: .82rem; font-weight: 600; margin-bottom: 24px;
}
.live-dot { width: 7px; height: 7px; background: #ef4444; border-radius: 50%; animation: blink 1.2s ease infinite; }

.reward-display {
  display: flex; align-items: center; gap: 14px;
  background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.2);
  border-radius: var(--radius); padding: 16px 24px; margin-bottom: 24px;
}
.reward-icon { font-size: 2.2rem; }
.reward-amount { font-size: 1.7rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.reward-per   { font-size: .85rem; color: var(--text-muted); }

.ad-title { font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.ad-desc  { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; font-size: .95rem; }

.progress-wrap { margin-bottom: 28px; }
.progress-label { display: flex; justify-content: space-between; font-size: .82rem; color: var(--text-muted); margin-bottom: 6px; }
.ad-progress-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; width: 73%; background: var(--grad); border-radius: 3px; animation: progressPulse 2.5s ease infinite; }
@keyframes progressPulse { 0%,100% { opacity: 1; } 50% { opacity: .7; } }

/* BIG BUTTON */
.btn-watch-ad {
  position: relative; width: 100%;
  background: var(--grad-btn); background-size: 200% 200%;
  border: none; border-radius: var(--radius); padding: 18px 24px;
  cursor: pointer; margin-bottom: 22px; overflow: hidden;
  animation: gradShift 3s ease infinite;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 40px rgba(168,85,247,.5);
}
.btn-watch-ad:hover { transform: scale(1.02); box-shadow: 0 12px 50px rgba(168,85,247,.7); }
.btn-watch-ad:active { transform: scale(.99); }

.watch-btn-inner { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.watch-play-icon { font-size: 1.8rem; color: #fff; flex-shrink: 0; }
.watch-btn-text  { display: flex; flex-direction: column; text-align: left; flex: 1; }
.watch-btn-main  { font-size: 1.15rem; font-weight: 800; color: #fff; }
.watch-btn-sub   { font-size: .8rem; color: rgba(255,255,255,.72); font-weight: 400; }
.watch-btn-coin  { font-size: 1.8rem; }

.btn-shine {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-15deg); animation: shineMove 3.5s ease infinite 1s;
}
@keyframes shineMove { 0% { left: -100%; } 50%,100% { left: 200%; } }

.ad-perks { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.perk-item { display: flex; align-items: center; gap: 5px; font-size: .85rem; color: var(--text-muted); }

.mini-counter {
  text-align: center; font-size: .82rem; color: var(--text-dim);
  padding: 10px; background: rgba(255,255,255,.03); border-radius: 8px;
}
.mini-counter strong { color: var(--gold); font-size: .95rem; }

/* ===== LIVE STATS ===== */
.live-stats-section { background: var(--bg-solid); }
.live-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.live-stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: border-color .3s, transform .3s;
}
.live-stat-card:hover { border-color: var(--border-h); transform: translateY(-5px); }
.live-stat-icon { font-size: 2rem; margin-bottom: 12px; }
.live-stat-num { font-size: 2rem; font-weight: 900; margin-bottom: 6px; }
.live-stat-label { font-size: .82rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.live-stat-delta { font-size: .8rem; color: var(--green); }

/* ===== FEATURES ===== */
.features-section { background: var(--bg-2); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.feature-card:hover { border-color: rgba(168,85,247,.3); transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(168,85,247,.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--icon-color, var(--purple));
  transition: transform .3s;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }

/* ===== PAYMENTS ===== */
.payments-section { background: var(--bg-solid); }

.payout-threshold-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  background: var(--grad-dark); border: 1px solid rgba(168,85,247,.25);
  border-radius: var(--radius); padding: 24px 32px; margin-bottom: 48px;
}
.threshold-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); margin-bottom: 4px; }
.threshold-amount { font-size: 2.5rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.threshold-amount span { font-size: 1rem; color: var(--text-muted); -webkit-text-fill-color: var(--text-muted); }
.threshold-features { display: flex; gap: 20px; flex-wrap: wrap; }
.threshold-features span { font-size: .88rem; color: var(--text-muted); }

.payments-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 24px; }

.pay-category { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; }
.pay-cat-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.pay-cat-icon { font-size: 1.3rem; }

.pay-methods { display: flex; flex-direction: column; gap: 14px; }
.pay-method { display: flex; align-items: center; gap: 14px; padding: 12px 14px; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 10px; transition: border-color .2s, background .2s; }
.pay-method:hover { border-color: rgba(168,85,247,.3); background: rgba(168,85,247,.05); }

.pay-logo {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; flex-shrink: 0;
}
.paypal  { background: #003087; color: #009cde; }
.skrill  { background: #862165; color: #fff; }
.neteller { background: #114c93; color: #fff; }
.payoneer { background: #ff4800; color: #fff; }
.bitcoin { background: #f7931a; color: #fff; font-size: 1.2rem; }
.usdt    { background: #26a17b; color: #fff; font-size: 1.1rem; }
.eth     { background: #627eea; color: #fff; font-size: 1.1rem; }
.bnb     { background: #f3ba2f; color: #000; font-size: .75rem; }
.upi     { background: linear-gradient(135deg,#097939,#5fb88d); color: #fff; font-size: .75rem; }
.bank    { background: rgba(59,130,246,.2); color: var(--blue); }
.paytm   { background: #002970; color: #00baf2; }
.pm      { background: #be2b2b; color: #fff; font-size: .7rem; }
.amazon  { background: #ff9900; color: #000; font-weight: 900; font-size: 1.1rem; }
.google  { background: #4285f4; color: #fff; font-weight: 900; font-size: 1rem; }
.steam   { background: #1b2838; color: #c7d5e0; }
.itunes  { background: #fc3c44; color: #fff; }

.pay-info { display: flex; flex-direction: column; gap: 2px; }
.pay-name { font-size: .9rem; font-weight: 600; }
.pay-time { font-size: .75rem; color: var(--green); }

.pay-note {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--text-dim);
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
}
.pay-note svg { flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-2); }
.testimonials-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.featured-testimonial {
  border-color: rgba(168,85,247,.4);
  background: linear-gradient(145deg,rgba(168,85,247,.08),rgba(245,158,11,.04));
  transform: scale(1.03);
}
.featured-testimonial:hover { transform: scale(1.03) translateY(-6px); }
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; font-size: .93rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg,var(--purple),var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .92rem; margin-bottom: 2px; }
.testimonial-author span  { font-size: .78rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-solid); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq-item:hover { border-color: rgba(168,85,247,.28); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none;
  color: var(--text); font-size: .98rem; font-weight: 600;
  cursor: pointer; text-align: left; gap: 16px;
}
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--purple); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 250px; }
.faq-answer p { color: var(--text-muted); padding: 0 24px 20px; line-height: 1.75; font-size: .93rem; }

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative; padding: 120px 24px; text-align: center; overflow: hidden;
  background: var(--bg-2);
}
.cta-bg { position: absolute; inset: 0; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.cta-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(168,85,247,.28),transparent); top: -200px; left: -100px; }
.cta-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle,rgba(245,158,11,.22),transparent); bottom: -150px; right: -100px; }
.cta-content { position: relative; z-index: 10; max-width: 700px; margin: 0 auto; }
.cta-badge {
  display: inline-block; background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.28);
  color: var(--gold); padding: 7px 20px; border-radius: 50px; font-size: .88rem; font-weight: 600; margin-bottom: 22px;
}
.final-cta h2 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 900; margin-bottom: 18px; }
.final-cta > .container > .cta-content > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }
.cta-note { font-size: .85rem; color: var(--text-dim); margin-top: 22px; }

/* ===== FOOTER ===== */
.footer { background: #040410; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-top { display: grid; grid-template-columns: 380px 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: .9rem; line-height: 1.75; margin-bottom: 16px; }
.footer-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-trust span { font-size: .8rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { color: var(--text-dim); font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: var(--purple-l); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p    { font-size: .82rem; color: var(--text-dim); }
.footer-disclaimer  { font-size: .75rem !important; font-style: italic; max-width: 600px; text-align: right; }
.footer-disclaimer a { color: var(--purple-l); }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: rgba(10,10,25,.96); border: 1px solid rgba(168,85,247,.3); border-left: 4px solid var(--purple);
  color: var(--text); padding: 12px 18px; border-radius: 12px; font-size: .87rem; min-width: 270px;
  max-width: 320px; backdrop-filter: blur(20px); animation: slideInR .3s ease; box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.toast.earning { border-left-color: var(--gold); }
.toast.success { border-left-color: var(--green); }
.toast.info    { border-left-color: var(--blue); }

@keyframes slideInR { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutR { from { transform: translateX(0); opacity: 1; } to { transform: translateX(120%); opacity: 0; } }

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(4,4,16,.92); z-index: 9000;
  align-items: center; justify-content: center; backdrop-filter: blur(12px);
}
.loading-overlay.active { display: flex; }
.loader-content { text-align: center; }
.loader-spinner {
  width: 68px; height: 68px;
  border: 3px solid rgba(255,255,255,.08);
  border-top-color: var(--purple); border-right-color: var(--gold);
  border-radius: 50%; animation: spin .75s linear infinite; margin: 0 auto 18px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-content p       { font-size: 1rem; color: var(--text-muted); margin-bottom: 6px; }
.loader-note { font-size: .85rem !important; color: var(--text-dim) !important; margin-bottom: 16px !important; }
.loader-bar  { width: 200px; height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar-fill { height: 100%; background: var(--grad); border-radius: 2px; animation: loadFill 1.5s ease forwards; }
@keyframes loadFill { from { width: 0%; } to { width: 100%; } }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .live-stats-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid   { grid-template-columns: repeat(2,1fr); }
  .adwatch-grid    { grid-template-columns: 1fr; }
  .payments-grid   { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta        { display: none; }
  .hamburger      { display: flex; }
  .steps-grid     { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-testimonial { transform: none; }
  .live-stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats      { gap: 20px; }
  .stat-num        { font-size: 1.5rem; }
  .footer-links    { gap: 28px; flex-wrap: wrap; }
  .coins-container { display: none; }
  .payments-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions    { flex-direction: column; }
  .btn-primary,
  .btn-secondary   { width: 100%; justify-content: center; }
  .hero-stats      { gap: 16px; flex-wrap: wrap; }
  .stat-divider    { display: none; }
  .live-stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .trust-badges    { gap: 10px; }
  .payout-threshold-bar { flex-direction: column; align-items: flex-start; }
  .threshold-features { flex-direction: column; gap: 8px; }
}

/* ===================================================
   AUTH MODAL, DASHBOARD, SEO SECTION — Additional CSS
   =================================================== */

.hidden { display: none !important; }

/* ===== AUTH OVERLAY ===== */
.auth-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(4,4,16,.86); backdrop-filter: blur(14px);
  align-items: center; justify-content: center; padding: 16px;
}
.auth-overlay.active { display: flex; }
.auth-modal {
  background: linear-gradient(145deg,#0f0f26,#1a1a38);
  border: 1px solid rgba(168,85,247,.3); border-radius: var(--radius-xl);
  padding: 40px 36px; width: 100%; max-width: 460px; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.7),0 0 60px rgba(168,85,247,.15);
  animation: modalIn .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalIn { from { opacity:0;transform:scale(.92) translateY(-20px);} to { opacity:1;transform:scale(1) translateY(0);} }
.auth-close {
  position: absolute; top: 16px; right: 18px;
  background: rgba(255,255,255,.08); border: 1px solid var(--border);
  color: var(--text-muted); width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s,color .2s;
}
.auth-close:hover { background: rgba(239,68,68,.2); color: #f87171; }
.auth-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.auth-logo strong { color: var(--gold); }
.auth-title { font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; }
.auth-sub { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }
.auth-sub strong { color: var(--gold); }
.auth-tab-content.hidden { display: none; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: 6px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.form-group input,.form-group select {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--text); padding: 12px 14px; border-radius: 10px; font-size: .95rem;
  font-family: 'Outfit',sans-serif; transition: border-color .2s,background .2s; outline: none;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus,.form-group select:focus { border-color: var(--purple); background: rgba(168,85,247,.06); }
.form-group select option { background: #1a1a38; color: var(--text); }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-size: .83rem; color: var(--text-muted); }
.form-check input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--purple); margin-top: 2px; }
.form-check a { color: var(--purple-l); }
.btn-auth {
  width: 100%; background: var(--grad-btn); background-size: 200%;
  border: none; color: #fff; padding: 15px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer; font-family: 'Outfit',sans-serif;
  box-shadow: 0 8px 30px rgba(168,85,247,.5); animation: gradShift 3s ease infinite;
  transition: transform .2s,box-shadow .2s;
}
.btn-auth:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(168,85,247,.7); }
.btn-auth:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.auth-switch { margin-top: 18px; text-align: center; font-size: .86rem; color: var(--text-muted); }
.auth-switch button { background: none; border: none; color: var(--purple-l); cursor: pointer; font-weight: 700; font-size: .86rem; font-family: 'Outfit',sans-serif; }

/* ===== NAV USER ===== */
.nav-user { display: flex; align-items: center; gap: 12px; position: relative; }
.nav-guest { display: flex; align-items: center; gap: 10px; }
.btn-nav-login {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  padding: 9px 18px; border-radius: 50px; font-size: .88rem; font-weight: 600;
  cursor: pointer; font-family: 'Outfit',sans-serif; transition: border-color .2s,color .2s;
}
.btn-nav-login:hover { border-color: var(--purple); color: var(--text); }
.nav-pts-badge {
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25);
  color: var(--gold); padding: 7px 14px; border-radius: 50px;
  font-size: .85rem; font-weight: 700; white-space: nowrap;
  animation: ptsPulse 3s ease infinite;
}
@keyframes ptsPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,.3);} 50% { box-shadow: 0 0 0 6px rgba(245,158,11,0);} }
.nav-profile-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--text);
  padding: 6px 12px 6px 6px; border-radius: 50px; cursor: pointer;
  font-size: .88rem; font-weight: 600; font-family: 'Outfit',sans-serif; transition: background .2s;
}
.nav-profile-btn:hover { background: rgba(168,85,247,.1); border-color: rgba(168,85,247,.3); }
.nav-avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; color: #fff;
}
.profile-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #11112a; border: 1px solid rgba(168,85,247,.25);
  border-radius: var(--radius); padding: 8px; min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6); z-index: 500;
}
.profile-dropdown.hidden { display: none; }
.dropdown-header { padding: 10px 12px 14px; border-bottom: 1px solid var(--border); font-size: .8rem; color: var(--text-muted); margin-bottom: 6px; }
.profile-dropdown a { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 8px; font-size: .9rem; color: var(--text-muted); transition: background .2s,color .2s; }
.profile-dropdown a:hover { background: rgba(168,85,247,.1); color: var(--text); }

/* ===== DASHBOARD ===== */
.dashboard-section { padding: 90px 0 0; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.dashboard-card {
  background: linear-gradient(145deg,rgba(168,85,247,.06),rgba(245,158,11,.03));
  border: 1px solid rgba(168,85,247,.22); border-radius: var(--radius-xl);
  padding: 40px; position: relative; overflow: hidden; margin-bottom: 0;
}
.dashboard-card::before { content:''; position: absolute; top:-100px; right:-100px; width:300px; height:300px; background: radial-gradient(circle,rgba(168,85,247,.1),transparent); border-radius: 50%; }
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.dash-header h2 { font-size: 1.8rem; font-weight: 800; }
.dash-sub { color: var(--text-muted); font-size: .9rem; margin-top: 4px; }
.dash-streak { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.28); color: var(--gold); padding: 10px 20px; border-radius: 50px; font-size: .9rem; font-weight: 700; }
.dash-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.dash-stat { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: border-color .3s,transform .3s; }
.dash-stat:hover { border-color: rgba(168,85,247,.3); transform: translateY(-3px); }
.dash-stat-icon { font-size: 1.8rem; margin-bottom: 8px; }
.dash-stat-val { font-size: 1.5rem; font-weight: 900; margin-bottom: 4px; }
.dash-stat-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.payout-progress { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.pp-header { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: .9rem; font-weight: 600; }
.pp-bar { height: 14px; background: rgba(255,255,255,.08); border-radius: 7px; overflow: visible; position: relative; margin-bottom: 8px; }
.pp-fill { height: 100%; background: var(--grad); border-radius: 7px; transition: width 1.2s cubic-bezier(.34,1.2,.64,1); position: relative; min-width: 4px; }
.pp-fill::after { content:''; position: absolute; right:0; top:0; bottom:0; width:20px; background: rgba(255,255,255,.25); border-radius: 7px; animation: shimmer 2s ease infinite; }
@keyframes shimmer { 0%,100% { opacity:.5;} 50% { opacity:1;} }
.pp-labels { display: flex; justify-content: space-between; font-size: .8rem; color: var(--text-muted); }
.pp-labels span:first-child { color: var(--green); font-weight: 700; }
.earn-history { margin-bottom: 28px; }
.earn-history h3 { font-size: .95rem; font-weight: 700; margin-bottom: 14px; }
.earn-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; padding: 0 4px; }
.earn-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.earn-bar { width: 100%; border-radius: 4px 4px 0 0; background: var(--grad); opacity: .7; transition: opacity .2s; min-height: 4px; }
.earn-bar:hover { opacity: 1; }
.earn-bar-day { font-size: .6rem; color: var(--text-dim); }
.dash-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== SEO CONTENT ===== */
.seo-content-section { background: var(--bg-solid); }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.seo-block h2 { font-size: 1.45rem; font-weight: 800; margin-bottom: 16px; }
.seo-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; font-size: .93rem; }
.seo-block p strong { color: var(--text); }
.seo-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.seo-list li { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }
.seo-list li strong { color: var(--text); }

/* Responsive additions */
@media (max-width: 768px) {
  .auth-modal { padding: 28px 22px; }
  .dash-stats-grid { grid-template-columns: repeat(2,1fr); }
  .dash-actions { flex-direction: column; }
  .seo-grid { grid-template-columns: 1fr; }
  .nav-pts-badge { display: none; }
  .dash-header h2 { font-size: 1.4rem; }
  .dashboard-card { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .dash-stats-grid { grid-template-columns: 1fr 1fr; }
  .earn-bars { height: 60px; }
}
