/* =====================================================
   BOVADA CASINO – styles.css
   Dark luxury casino theme | Mobile-first
   Fonts: Montserrat (headings) + Open Sans (body)
===================================================== */

/* ── CSS Variables ── */
:root {
  --gold: #f0b429;
  --gold-light: #ffd166;
  --gold-dark: #c88a00;
  --red: #e63946;
  --red-dark: #c62828;
  --dark: #0a0a0f;
  --dark-2: #12121a;
  --dark-3: #1c1c28;
  --dark-4: #252535;
  --text: #e8e8f0;
  --text-muted: #9898b0;
  --border: rgba(240,180,41,0.15);
  --shadow-gold: 0 0 30px rgba(240,180,41,0.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-heading: '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;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { font-size: clamp(0.95rem, 2vw, 1.05rem); color: var(--text-muted); }
p strong { color: var(--text); }

.gradient-text {
  background: linear-gradient(135deg, var(--gold), #fff8a0, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-pad { padding: 80px 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,180,41,0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 50px;
  padding: 14px 28px;
  min-height: 48px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  box-shadow: 0 4px 20px rgba(240,180,41,0.4);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(240,180,41,0.6);
  color: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(240,180,41,0.2);
}

.btn-xl { font-size: 1.05rem; padding: 18px 38px; }
.btn-sm { font-size: 0.85rem; padding: 10px 20px; min-height: 40px; }
.btn-nav {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-nav:hover { transform: scale(1.05); color: #000; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(240,180,41,0.4); }
  50% { box-shadow: 0 4px 40px rgba(240,180,41,0.8), 0 0 60px rgba(240,180,41,0.3); }
}
.btn-pulse { animation: pulse-glow 2s infinite; }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 12px 0;
}
.site-header.scrolled {
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 0 var(--border);
  padding: 8px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.8rem; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.08em;
}
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(240,180,41,0.08); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════
   HERO SECTION
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 30%, rgba(20,10,40,1) 0%, var(--dark) 70%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(240,180,41,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(230,57,70,0.06) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(240,180,41,0.03) 80px,
      rgba(240,180,41,0.03) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(240,180,41,0.03) 80px,
      rgba(240,180,41,0.03) 81px
    );
}

.hero-overlay { position: absolute; inset: 0; background: rgba(10,10,15,0.3); }

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(232,232,240,0.9);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.hero-subtitle strong { color: #fff; }

/* Timer */
.hero-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.timer-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.timer-boxes {
  display: flex;
  align-items: center;
  gap: 8px;
}
.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 64px;
}
.timer-box span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.timer-box small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}
.timer-sep {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.hero-trust span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(232,232,240,0.7);
  letter-spacing: 0.05em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* Hero Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) rotate(0deg); }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100px) rotate(720deg); }
}

/* ── Fade-in animations ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════ */
.about { background: var(--dark-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.img-frame img { width: 100%; border-radius: 0; }
.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
}
.about-text .section-label { text-align: left; }
.about-text .section-title { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

/* ════════════════════════════════════
   BONUS SECTION
════════════════════════════════════ */
.bonus-section { background: var(--dark); }
.bonus-image {
  text-align: center;
  margin-bottom: 50px;
}
.bonus-image img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transition-delay: var(--delay, 0s);
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  border-color: rgba(240,180,41,0.4);
}
.bonus-card--featured {
  background: linear-gradient(145deg, rgba(240,180,41,0.08), var(--dark-3));
  border-color: rgba(240,180,41,0.4);
  transform: scale(1.04);
}
.bonus-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.bonus-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
}
.bonus-icon { font-size: 2.5rem; margin-bottom: 12px; }
.bonus-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.bonus-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.bonus-card p { font-size: 0.9rem; margin-bottom: 20px; }

/* ════════════════════════════════════
   GAMES SECTION
════════════════════════════════════ */
.games-section { background: var(--dark-2); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition-delay: var(--delay, 0s);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}
.game-card:hover img { transform: scale(1.08); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.game-card:hover .game-overlay { background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.1) 100%); }
.game-overlay h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
}
.game-overlay p { font-size: 0.85rem; margin-bottom: 12px; }
.game-overlay .btn { align-self: flex-start; }

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
.how-section { background: var(--dark); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition-delay: var(--delay, 0s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; }
.step-connector {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 900;
  text-align: center;
  opacity: 0.6;
}

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
.reviews-section { background: var(--dark-2); }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 1.05rem;
}
.rating-stars { font-size: 1.3rem; letter-spacing: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition-delay: var(--delay, 0s);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.review-card--featured {
  background: linear-gradient(145deg, rgba(240,180,41,0.06), var(--dark-3));
  border-color: rgba(240,180,41,0.35);
}
.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 12px;
}
.review-stars { font-size: 1.1rem; margin-bottom: 12px; }
blockquote {
  font-style: italic;
  color: rgba(232,232,240,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
blockquote strong { color: #fff; font-style: normal; }
.review-author strong { display: block; color: #fff; font-size: 0.95rem; }
.review-author span { font-size: 0.82rem; color: var(--text-muted); }

/* ════════════════════════════════════
   FEATURES
════════════════════════════════════ */
.features-section { background: var(--dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transition-delay: var(--delay, 0s);
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(240,180,41,0.3);
}
.feature-icon { font-size: 2.2rem; margin-bottom: 12px; }
.feature-item h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.feature-item p { font-size: 0.88rem; }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq-section { background: var(--dark-2); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition-delay: var(--delay, 0s);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--dark-3);
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.faq-question:hover { background: var(--dark-4); color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); background: var(--dark-4); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.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 ease;
  background: var(--dark-4);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 16px 24px 20px;
  font-size: 0.95rem;
  color: rgba(232,232,240,0.85);
}

/* ════════════════════════════════════
   CTA SECTION
════════════════════════════════════ */
.cta-section { background: var(--dark); }
.cta-box {
  position: relative;
  background: linear-gradient(145deg, var(--dark-3), rgba(30,20,50,0.8));
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 60px 40px;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(240,180,41,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse-glow 2s infinite;
}
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-box > .cta-content > p { font-size: 1.05rem; margin-bottom: 24px; }
.cta-img {
  width: 100%;
  max-width: 700px;
  margin: 24px auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}
.cta-features span {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(232,232,240,0.8);
}
.cta-disclaimer { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; }

/* ════════════════════════════════════
   QUICK LINKS
════════════════════════════════════ */
.quicklinks-section { background: var(--dark-3); padding: 40px 0; }
.quicklinks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.quicklinks-list a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}
.quicklinks-list a:hover {
  color: var(--gold);
  border-color: rgba(240,180,41,0.4);
  background: rgba(240,180,41,0.05);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-bottom a { color: var(--gold); }
.footer-disclaimer { font-size: 0.78rem !important; color: rgba(152,152,176,0.6) !important; }

/* ════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(240,180,41,0.4);
  -webkit-tap-highlight-color: transparent;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(240,180,41,0.6); }
.scroll-top:active { transform: scale(0.93); }

/* ════════════════════════════════════
   SALES NOTIFICATION POPUP
════════════════════════════════════ */
.sales-popup {
  position: fixed;
  bottom: 90px;
  left: 16px;
  background: var(--dark-3);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  max-width: 320px;
  width: calc(100vw - 32px);
  z-index: 998;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.sales-popup.show { opacity: 1; transform: translateX(0); pointer-events: all; }
.sales-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}
.sales-popup-inner { display: flex; align-items: center; gap: 12px; }
.sales-avatar { font-size: 2rem; flex-shrink: 0; }
.sales-info { display: flex; flex-direction: column; gap: 2px; }
.sales-info strong { font-size: 0.9rem; color: #fff; }
.sales-info span { font-size: 0.82rem; color: var(--text-muted); }
.sales-info small { font-size: 0.75rem; color: var(--gold); }

/* ════════════════════════════════════
   EXIT INTENT POPUP
════════════════════════════════════ */
.exit-popup-overlay,
.delay-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.exit-popup-overlay.active,
.delay-popup-overlay.active { opacity: 1; visibility: visible; }

.exit-popup,
.delay-popup {
  background: var(--dark-3);
  border: 1px solid rgba(240,180,41,0.4);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-card), 0 0 60px rgba(240,180,41,0.15);
}
.exit-popup-overlay.active .exit-popup,
.delay-popup-overlay.active .delay-popup { transform: scale(1); }

.exit-popup-close,
.delay-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-close:hover,
.delay-popup-close:hover { color: #fff; }

.exit-popup-badge,
.delay-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.exit-popup h2, .delay-popup h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 14px;
}
.exit-popup p, .delay-popup p { font-size: 0.98rem; margin-bottom: 20px; }
.exit-popup-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.exit-popup-features span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.exit-popup-decline,
.delay-dismiss {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  display: block;
  -webkit-tap-highlight-color: transparent;
}
.exit-popup-decline:hover,
.delay-dismiss:hover { color: #fff; }

/* ════════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: 1fr; }
  .bonus-card--featured { transform: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .container { padding: 0 14px; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    padding: 20px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; padding: 12px 24px; }
  .btn-nav { font-size: 1rem; padding: 14px 32px; }

  /* Hero */
  .hero { padding: 100px 0 60px; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-xl { width: 100%; max-width: 360px; font-size: 1rem; padding: 16px 24px; }

  /* Games */
  .games-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* CTA */
  .cta-box { padding: 40px 20px; }

  /* Sales popup */
  .sales-popup {
    bottom: 16px;
    left: 12px;
    right: 12px;
    max-width: none;
    width: auto;
  }

  /* Exit popup */
  .exit-popup, .delay-popup { padding: 32px 20px; }

  /* Footer */
  .footer-brand .logo { flex-direction: row; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 12px; }
  .hero-trust span { font-size: 0.75rem; }
  .timer-box span { font-size: 1.6rem; }
  .cta-features { flex-direction: column; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .fade-in-up { opacity: 1; transform: none; }
}
