/* ===========================
   JACKPOTA CASINO — styles.css
   =========================== */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #FFD700;
  --gold-light: #FFE55C;
  --gold-dark: #C8A200;
  --red: #E63946;
  --red-dark: #B5222E;
  --bg-deep: #07070f;
  --bg-dark: #0d0d1a;
  --bg-card: #13132a;
  --bg-card2: #1a1a35;
  --text: #f0f0ff;
  --text-muted: #9999bb;
  --border: rgba(255,215,0,0.15);
  --shadow-gold: 0 0 30px rgba(255,215,0,0.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', 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: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.gold-gradient {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-btn { margin-top: 24px; display: inline-block; }
.mt-section { margin-top: 48px; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(255,215,0,0.55); }
.btn-primary:active { transform: scale(0.97); }

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}
.btn-ghost:hover { background: var(--gold); color: #07070f; }

.btn-outline-sm {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
  min-height: 36px;
}
.btn-outline-sm:hover { background: var(--gold); color: #07070f; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 44px;
}
.btn-nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }

.pulse-btn { animation: pulseglow 2s infinite; }
@keyframes pulseglow {
  0%,100% { box-shadow: 0 4px 20px rgba(255,215,0,0.35); }
  50% { box-shadow: 0 4px 40px rgba(255,215,0,0.7); }
}

/* ---------- Section Common ---------- */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-in-up { opacity: 0; animation: fadeUp 0.9s ease forwards 0.3s; }
.fade-in-right { opacity: 0; animation: fadeRight 0.9s ease forwards 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(40px); } }
@keyframes fadeRight { to { opacity: 1; transform: translateX(0); } from { opacity: 0; transform: translateX(40px); } }
@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-in-up, .fade-in-right, .pulse-btn { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(7,7,15,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.nav-brand-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(255,215,0,0.07); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #070712 0%, #0d0d22 50%, #12081a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px 100px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title-line { display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(240,240,255,0.85);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: flex-start; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-timer {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  width: fit-content;
  flex-wrap: wrap;
  gap: 12px;
}
.timer-label { font-size: 0.85rem; color: var(--text-muted); }
.timer-display { display: flex; align-items: center; gap: 4px; }
.timer-box {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 8px;
  padding: 6px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.timer-box span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.timer-box small { font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }
.timer-sep {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255,215,0,0.12), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.hero-img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,215,0,0.1);
  position: relative;
  z-index: 1;
}
.floating-chip {
  position: absolute;
  background: rgba(13,13,26,0.9);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 50px;
  z-index: 2;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.chip1 { top: 15%; left: -10%; animation: floatY 3s ease-in-out infinite; }
.chip2 { top: 45%; right: -8%; animation: floatY 3.5s ease-in-out infinite 0.5s; }
.chip3 { bottom: 18%; left: -5%; animation: floatY 2.8s ease-in-out infinite 1s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ========================================
   PROMO BANNER
   ======================================== */
.promo-banner {
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  padding: 14px 0;
  text-align: center;
}
.promo-inner p {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: #fff;
}
.promo-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

/* ========================================
   ABOUT
   ======================================== */
.about-section { background: var(--bg-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.about-badge-float {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
}
.about-text p {
  margin-bottom: 16px;
  color: rgba(240,240,255,0.88);
  font-size: 1rem;
}

/* ========================================
   GAMES
   ======================================== */
.games-section {
  background: var(--bg-deep);
  position: relative;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(255,215,0,0.35); }
.game-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.game-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-img { transform: scale(1.06); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,15,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.btn-play-now {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.btn-play-now:hover { transform: scale(1.05); }
.game-body { padding: 20px; }
.game-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}
.game-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.3); box-shadow: var(--shadow-gold); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}
.why-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ========================================
   HOW TO PLAY
   ======================================== */
.howto-section { background: var(--bg-deep); }
.steps-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.3); box-shadow: var(--shadow-gold); }
.step-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255,215,0,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  width: 48px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-connector::after {
  content: '→';
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.review-location { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.stars { font-size: 0.85rem; letter-spacing: 1px; }
.review-text { font-size: 0.92rem; color: rgba(240,240,255,0.85); line-height: 1.7; font-style: italic; }

/* ========================================
   BONUSES
   ======================================== */
.bonuses-section { background: var(--bg-deep); }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.3); box-shadow: var(--shadow-gold); }
.bonus-icon { font-size: 2.2rem; margin-bottom: 14px; }
.bonus-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
}
.bonus-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ========================================
   PRICING / PROMO
   ======================================== */
.promo-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  background: linear-gradient(160deg, rgba(255,215,0,0.08), rgba(13,13,26,0.95));
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-tag {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-coins {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.price-label { font-size: 0.875rem; color: var(--text-muted); }
.price-features { text-align: left; margin: 8px 0; flex: 1; }
.price-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-features li:last-child { border-bottom: none; }
.btn-price {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 20px;
  border-radius: 50px;
  transition: var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.btn-price:hover { transform: scale(1.04); box-shadow: 0 4px 20px rgba(255,215,0,0.4); }

/* ========================================
   FAQ
   ======================================== */
.faq-section { background: var(--bg-deep); }
.faq-list { max-width: 800px; 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-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: rgba(255,215,0,0.35); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  gap: 12px;
  cursor: pointer;
  transition: color 0.3s;
  min-height: 64px;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: rgba(240,240,255,0.8);
  line-height: 1.75;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta-section {
  background: linear-gradient(135deg, #0d0d22, #160d26, #0d0d22);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.cta-coins-left, .cta-coins-right {
  position: absolute;
  font-size: 6rem;
  opacity: 0.06;
  top: 50%;
  transform: translateY(-50%);
}
.cta-coins-left { left: 5%; }
.cta-coins-right { right: 5%; }
.cta-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(240,240,255,0.85);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #050510;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal { max-width: 700px; }
.footer-legal p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-legal a { color: var(--text-muted); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(255,215,0,0.6); }

/* ========================================
   SALES NOTIFICATION POPUP
   ======================================== */
.notif-popup {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 900;
  background: var(--bg-card2);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  max-width: 320px;
  width: calc(100vw - 40px);
  box-shadow: var(--shadow-card);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.notif-popup.show { transform: translateX(0); pointer-events: auto; }
.notif-inner { display: flex; align-items: flex-start; gap: 12px; }
.notif-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-text { flex: 1; }
.notif-text strong { font-family: var(--font-head); font-size: 0.9rem; display: block; }
.notif-text p { font-size: 0.8rem; color: var(--text-muted); margin: 2px 0 0; }
.notif-close {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 2px 4px;
  flex-shrink: 0;
}
.notif-close:hover { color: var(--text); }

/* ========================================
   EXIT INTENT POPUP
   ======================================== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(4px);
}
.exit-overlay.show { opacity: 1; pointer-events: auto; }
.exit-popup {
  background: var(--bg-card);
  border: 1.5px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-gold);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.exit-icon { font-size: 3.5rem; margin-bottom: 16px; }
.exit-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.7rem;
  margin-bottom: 14px;
  color: var(--text);
}
.exit-desc {
  font-size: 1rem;
  color: rgba(240,240,255,0.82);
  margin-bottom: 20px;
  line-height: 1.7;
}
.exit-timer {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: inline-block;
}
.exit-timer strong { color: var(--gold); }
.exit-skip {
  display: block;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}
.exit-skip:hover { color: var(--text); }

/* ========================================
   SCROLL POPUP BAR
   ======================================== */
.scroll-popup-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 850;
  background: linear-gradient(90deg, #1a0a2e, #0d0d22, #1a0a2e);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.scroll-popup-bar.show { transform: translateY(0); }
.scroll-popup-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.scroll-popup-inner > span {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.btn-popup-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.btn-popup-cta:hover { transform: scale(1.04); }
.scroll-popup-close {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color 0.3s;
}
.scroll-popup-close:hover { color: var(--text); }

/* ========================================
   PARTICLE DOTS
   ======================================== */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-600px) scale(1); }
}

/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-timer { margin: 0 auto; }
  .chip1 { top: 5%; left: 0%; font-size: 0.7rem; }
  .chip2 { top: 40%; right: -2%; font-size: 0.7rem; }
  .chip3 { bottom: 5%; left: 0%; font-size: 0.7rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .steps-wrap { flex-direction: column; }
  .step-connector { width: 100%; height: 32px; }
  .step-connector::after { content: '↓'; }
}

/* ========================================
   RESPONSIVE — MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Navbar */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(7,7,15,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav-toggle { display: flex; }
  .btn-nav-cta { display: none; }
  .nav-container { position: relative; }

  /* Hero */
  .hero { min-height: auto; padding-top: 72px; }
  .hero-inner { padding: 48px 20px 80px; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .floating-chip { display: none; }

  /* Grids → 1 col */
  .games-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }

  /* Notification */
  .notif-popup { bottom: 70px; left: 10px; right: 10px; max-width: 100%; }

  /* Exit popup */
  .exit-popup { padding: 36px 24px; }
  .exit-title { font-size: 1.4rem; }

  /* Scroll popup */
  .scroll-popup-inner > span { font-size: 0.8rem; }

  /* CTA trust */
  .cta-trust { gap: 12px; font-size: 0.8rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; }
  .btn-ghost { width: 100%; justify-content: center; }

  /* Scroll to top offset */
  .scroll-top { bottom: 80px; right: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-timer { flex-direction: column; align-items: flex-start; }
  .hero-badge { font-size: 0.72rem; }
}
