/* ===================================================
   ADOPT ME JACKPOT TODAY — Main Stylesheet
   Dark Neon Theme · Mobile-First
=================================================== */

/* ---- CSS Variables ---- */
:root {
  --pink:       #ff00cc;
  --purple:     #7b2ff7;
  --cyan:       #00d4ff;
  --blue:       #0066ff;
  --yellow:     #ffdd00;
  --orange:     #ff8800;
  --green:      #00ff88;

  --bg:         #0d0d1a;
  --bg-card:    rgba(255, 255, 255, 0.04);
  --bg-card-hov:rgba(255, 255, 255, 0.08);
  --border:     rgba(255, 255, 255, 0.1);
  --text:       #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);

  --grad-primary: linear-gradient(135deg, var(--pink), var(--purple));
  --grad-blue:    linear-gradient(135deg, var(--cyan), var(--blue));
  --grad-warm:    linear-gradient(135deg, var(--yellow), var(--orange));

  --radius:     16px;
  --radius-sm:  8px;
  --radius-lg:  24px;

  --shadow-neon: 0 0 30px rgba(123, 47, 247, 0.4);
  --shadow-pink: 0 0 20px rgba(255, 0, 204, 0.3);

  --font-head:  'Fredoka One', 'Poppins', sans-serif;
  --font-body:  'Poppins', sans-serif;
}

/* ---- 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);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: rgba(0, 0, 0, 0.3);
}

/* ---- Gradient Text ---- */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Labels / Eyebrow ---- */
.section-label {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(123, 47, 247, 0.5);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(255, 0, 204, 0.6); }

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: #fff;
}
.btn-secondary:hover { background: var(--bg-card-hov); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.btn-large { padding: 18px 40px; font-size: 1.15rem; }

.btn-hero {
  font-size: 1.2rem;
  padding: 18px 40px;
  letter-spacing: 0.01em;
  margin-top: 32px;
}

.btn-buy {
  background: var(--grad-warm);
  color: #0d0d1a;
  font-size: 1.2rem;
  padding: 20px 48px;
  box-shadow: 0 4px 30px rgba(255, 221, 0, 0.4);
  width: 100%;
  max-width: 500px;
  letter-spacing: 0.01em;
}
.btn-buy:hover {
  box-shadow: 0 8px 40px rgba(255, 136, 0, 0.6);
  filter: brightness(1.08);
}

/* Pulse animation */
.pulse-btn {
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(123, 47, 247, 0.5); }
  50%       { box-shadow: 0 8px 48px rgba(255, 0, 204, 0.7), 0 0 60px rgba(123, 47, 247, 0.3); }
}

/* ===================================================
   LIVE TICKER
=================================================== */
.live-ticker {
  background: rgba(255, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 0, 0, 0.3);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ff4444;
  border-radius: 50%;
  animation: blink 1s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ===================================================
   HERO SECTION
=================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

/* Background orbs */
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float-orb 8s ease-in-out infinite alternate;
}
.orb-1 { width: 500px; height: 500px; background: var(--purple); top: -100px; left: -100px; animation-duration: 9s; }
.orb-2 { width: 400px; height: 400px; background: var(--pink);   bottom: -100px; right: -80px;  animation-duration: 11s; }
.orb-3 { width: 300px; height: 300px; background: var(--cyan);   top: 40%; left: 50%; transform: translate(-50%,-50%); animation-duration: 7s; }

@keyframes float-orb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Badge */
.badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(123, 47, 247, 0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 8px;
}
.hero-subtitle strong { color: #fff; }

/* Hero Jackpot Card */
.hero-jackpot {
  margin: 32px 0 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  backdrop-filter: blur(12px);
  text-align: center;
  min-width: 280px;
  box-shadow: var(--shadow-neon);
}

.jackpot-card-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jackpot-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.location-icon { font-size: 2rem; -webkit-text-fill-color: initial; }

.jackpot-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Hero Trust Bar */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Floating Emojis */
.floating-emojis {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.floating-emojis span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 1.5rem;
  animation: float-emoji 4s ease-in-out var(--d) infinite alternate;
  opacity: 0.5;
}
@keyframes float-emoji {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

/* ===================================================
   COUNTDOWN BANNER
=================================================== */
.countdown-banner {
  background: linear-gradient(90deg, rgba(123,47,247,0.3), rgba(255,0,204,0.3));
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-label {
  font-weight: 700;
  font-size: 1rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  min-width: 64px;
}
.time-block span {
  font-family: var(--font-head);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--yellow);
}
.time-block small { font-size: 0.65rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.1em; }

.time-sep { font-size: 1.8rem; font-weight: 700; color: var(--yellow); margin: 0 2px; padding-bottom: 14px; }

/* ===================================================
   TEASER SECTION
=================================================== */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.teaser-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123,47,247,0.2);
  border-color: rgba(123,47,247,0.4);
}

.teaser-icon { font-size: 2.5rem; margin-bottom: 12px; }
.teaser-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.teaser-card p { color: var(--text-muted); font-size: 0.95rem; }
.teaser-card p strong { color: var(--text); }

/* Locked preview */
.teaser-locked {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(123,47,247,0.3);
}

.locked-preview {
  padding: 24px;
  background: var(--bg-card);
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}
.locked-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
  font-weight: 600;
}
.locked-row:last-child { border-bottom: none; }
.rank { font-size: 1.3rem; }
.blur-text { color: var(--text-muted); letter-spacing: 2px; }

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(13,13,26,0.7);
  backdrop-filter: blur(2px);
  padding: 24px;
  text-align: center;
}
.lock-icon { font-size: 3rem; }
.locked-title { font-weight: 700; font-size: 1.2rem; }
.locked-sub { color: var(--text-muted); font-size: 0.9rem; }

/* ===================================================
   BENEFITS GRID
=================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,0,204,0.4);
  box-shadow: 0 12px 40px rgba(255,0,204,0.15);
}

.benefit-icon { font-size: 2.5rem; margin-bottom: 14px; }
.benefit-card h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Center CTA */
.center-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price-display {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.price-old {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-now {
  font-family: var(--font-head);
  font-size: 2.8rem;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-badge {
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.cta-note { color: var(--text-muted); font-size: 0.9rem; margin-top: -4px; }

/* ===================================================
   TESTIMONIALS
=================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-3px); }

.featured-testi {
  border-color: rgba(255,0,204,0.4);
  background: rgba(255,0,204,0.05);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-stars { font-size: 0.85rem; }

.testimonial-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.testi-time { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* Proof bar */
.proof-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 28px;
  flex: 1;
  min-width: 120px;
}
.proof-number {
  font-family: var(--font-head);
  font-size: 2rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; }
.proof-divider { width: 1px; height: 60px; background: var(--border); }

/* ===================================================
   BUY SECTION
=================================================== */
.section-buy {
  background: radial-gradient(ellipse at center, rgba(123,47,247,0.15) 0%, transparent 70%);
}

.buy-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 24px 80px rgba(123,47,247,0.2);
}

.buy-badge {
  display: inline-block;
  background: var(--grad-warm);
  color: #0d0d1a;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.buy-title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 10px; }
.buy-sub { color: var(--text-muted); margin-bottom: 32px; }

.buy-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}
.buy-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
}

.buy-price-area { margin-bottom: 28px; }
.buy-original { color: var(--text-muted); text-decoration: line-through; font-size: 1rem; margin-bottom: 4px; }
.buy-current {
  font-family: var(--font-head);
  font-size: 4rem;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.buy-per { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }

.buy-guarantees {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===================================================
   GUARANTEE SECTION
=================================================== */
.guarantee-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,255,136,0.08);
}
.guarantee-icon { font-size: 4rem; margin-bottom: 16px; }
.guarantee-title { font-family: var(--font-head); font-size: 2rem; margin-bottom: 32px; }

.guarantee-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-bottom: 36px;
}
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.g-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.guarantee-item strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.guarantee-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ===================================================
   FAQ SECTION
=================================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(123,47,247,0.4); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0.6;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); opacity: 1; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===================================================
   FINAL CTA STRIP
=================================================== */
.final-cta-strip {
  background: var(--grad-primary);
  padding: 20px 0;
}
.final-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.strip-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
}
.strip-emoji { font-size: 1.4rem; }

/* ===================================================
   FOOTER
=================================================== */
#footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  text-align: center;
}
.footer-brand {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 32px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-disclaimer {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}
.footer-disclaimer p { margin-bottom: 8px; }
.footer-disclaimer strong { color: rgba(255,255,255,0.5); }

/* ===================================================
   ANIMATIONS — Fade-in on scroll
=================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE — Tablet / Desktop
=================================================== */
@media (min-width: 640px) {
  .hero-jackpot { min-width: 380px; }

  .buy-guarantees {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}

@media (min-width: 768px) {
  .section { padding: 100px 0; }

  .final-strip-inner { flex-wrap: nowrap; }

  .proof-divider { display: block; }
}

@media (max-width: 640px) {
  .countdown-inner { flex-direction: column; gap: 16px; }
  .buy-card { padding: 32px 20px; }
  .guarantee-card { padding: 32px 20px; }
  .hero-trust { gap: 6px 16px; font-size: 0.78rem; }
  .proof-divider { display: none; }
  .proof-item { min-width: 45%; }
  .final-strip-inner { justify-content: center; text-align: center; }
}
