/* ============================================================
   WILD CASINO — styles.css
   Fonts: Montserrat (headings) | Open Sans (body)
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gold: #C8973A;
  --gold-light: #F0C060;
  --gold-dark: #8B6420;
  --dark: #0A0C12;
  --dark-2: #10131C;
  --dark-3: #181D2B;
  --dark-4: #222840;
  --text: #E8EAED;
  --text-muted: #8A90A0;
  --red: #E03A3A;
  --green: #27AE60;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 24px rgba(200,151,58,0.35);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --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;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
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; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }

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

/* ── Section shared ── */
.section {
  padding: 90px 0;
}

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

.section-tag {
  display: inline-block;
  background: rgba(200,151,58,0.15);
  border: 1px solid rgba(200,151,58,0.4);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0A0C12;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,151,58,0.4);
  min-height: 52px;
  min-width: 48px;
  text-align: center;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(200,151,58,0.6);
}

.btn-primary:active { transform: scale(0.98); }

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

.btn-primary.btn-xl {
  font-size: 1.2rem;
  padding: 20px 52px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(200,151,58,0.6);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--transition);
  min-height: 52px;
}

.btn-secondary:hover {
  background: rgba(200,151,58,0.15);
  border-color: var(--gold-light);
  transform: scale(1.03);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 100px;
  transition: var(--transition);
  min-height: 48px;
}

.btn-outline:hover {
  background: var(--gold);
  color: #0A0C12;
}

.btn-outline-sm {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 100px;
  transition: var(--transition);
  min-height: 36px;
}

.btn-outline-sm:hover {
  background: var(--gold);
  color: #0A0C12;
}

.btn-primary-sm {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0A0C12;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 100px;
  min-height: 40px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-primary-sm:hover { transform: scale(1.05); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0A0C12;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 100px;
  transition: var(--transition);
  min-height: 44px;
  display: inline-block;
}

.btn-nav-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }

/* ── Pulse animation ── */
.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,151,58,0.4); }
  50% { box-shadow: 0 4px 40px rgba(200,151,58,0.8), 0 0 60px rgba(200,151,58,0.3); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

#main-nav.scrolled {
  background: rgba(10,12,18,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

nav { padding: 0; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span { color: var(--text); }
.nav-logo strong { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #1a1020 0%, var(--dark) 70%);
  padding-top: 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 20%, rgba(200,151,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(200,151,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 100px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,151,58,0.15);
  border: 1px solid rgba(200,151,58,0.5);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-subtitle strong { color: var(--text); }

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px 32px;
  max-width: 640px;
  margin: 0 auto 36px;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Countdown */
.countdown-wrapper {
  text-align: center;
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,58,58,0.12);
  border: 1px solid rgba(224,58,58,0.4);
  border-radius: 16px;
  padding: 12px 28px;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-block span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  min-width: 2.5ch;
  text-align: center;
}

.time-block small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 3px;
}

.time-sep {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.7;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* Scroll arrow */
.hero-scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll-arrow a { color: rgba(200,151,58,0.6); display: block; }
.hero-scroll-arrow svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Fade-in animation */
.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); }
}

/* Particle dots */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-120vh) scale(1.2); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(200,151,58,0.2);
  border-bottom: 1px solid rgba(200,151,58,0.2);
  padding: 14px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.trust-item {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--dark-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-card {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(200,151,58,0.2);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow);
}

.about-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: radial-gradient(ellipse at 50% 30%, rgba(200,151,58,0.12), transparent 70%);
}

.casino-visual {
  display: flex;
  gap: 16px;
  font-size: 4rem;
}

.slot-reel {
  width: 80px;
  height: 90px;
  background: var(--dark);
  border: 2px solid rgba(200,151,58,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  animation: spinSlot 3s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.slot-reel.gold {
  border-color: var(--gold);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 0 20px rgba(200,151,58,0.3);
  animation-delay: 0.3s;
}

@keyframes spinSlot {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-img-badge {
  background: rgba(200,151,58,0.15);
  border: 1px solid rgba(200,151,58,0.4);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 100px;
}

.about-text-col { display: flex; flex-direction: column; }

.section-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.section-text strong { color: var(--text); }

/* ============================================================
   BONUS SECTION
   ============================================================ */
.bonus-section { background: var(--dark); }

.bonus-highlight-card {
  background: linear-gradient(135deg, rgba(200,151,58,0.15), rgba(200,151,58,0.05));
  border: 2px solid var(--gold);
  border-radius: 28px;
  padding: 52px 40px;
  text-align: center;
  margin-bottom: 48px;
  box-shadow: 0 0 60px rgba(200,151,58,0.2);
  position: relative;
  overflow: hidden;
}

.bonus-highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,151,58,0.08), transparent 70%);
  pointer-events: none;
}

.bonus-main-amount {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-main-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.bonus-plus {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.bonus-plus strong { color: var(--gold-light); }

.bonus-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.bonus-note strong { color: var(--gold-light); }

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-card:hover {
  border-color: rgba(200,151,58,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.bonus-card-icon { font-size: 2.2rem; }

.bonus-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.bonus-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.bonus-card p strong { color: var(--text); }

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-section { background: var(--dark-2); }

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

.game-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover {
  border-color: rgba(200,151,58,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.game-card:hover::before { opacity: 1; }

.game-card-icon { font-size: 2.5rem; margin-bottom: 14px; }

.game-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.game-card p strong { color: var(--text); }

.game-tag {
  display: inline-block;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.3);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.games-cta-banner {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(200,151,58,0.25);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.games-cta-banner p {
  font-size: 1rem;
  color: var(--text-muted);
}

.games-cta-banner p strong { color: var(--text); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--dark); }

.steps-container {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.step-card {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: rgba(200,151,58,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(200,151,58,0.12);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 20px;
}

.step-icon { font-size: 2.5rem; margin-bottom: 14px; position: relative; z-index: 1; }

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-card p strong { color: var(--text); }

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  padding: 0 8px;
  flex-shrink: 0;
  opacity: 0.5;
}

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

.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

.payment-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.payment-item:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.payments-note {
  text-align: center;
  background: rgba(200,151,58,0.06);
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
}

.payments-note p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.payments-note p strong { color: var(--text); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--dark); }

.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.overall-rating {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold-light);
}

.rating-details .stars-display { font-size: 1.4rem; margin-bottom: 4px; }

.rating-details p { font-size: 0.88rem; color: var(--text-muted); }
.rating-details p strong { color: var(--text); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(200,151,58,0.3);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #0A0C12;
  flex-shrink: 0;
}

.reviewer-info { flex: 1; }

.reviewer-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars { font-size: 0.85rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-text strong { color: var(--text); }

.review-verified {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}

/* ============================================================
   WEEKLY PROMOS
   ============================================================ */
.promos-section { background: var(--dark-2); }

.promos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}

.promo-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(200,151,58,0.1), var(--dark-3));
  box-shadow: var(--shadow-gold);
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,151,58,0.4);
}

.promo-day {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.promo-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.promo-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.promo-card p strong { color: var(--text); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--dark); }

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(200,151,58,0.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
  min-height: 48px;
}

.faq-question:hover { color: var(--gold-light); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer p strong { color: var(--text); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,151,58,0.15), transparent 70%), var(--dark-2);
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8973A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta-content { position: relative; z-index: 2; }

.cta-badge {
  display: inline-block;
  background: rgba(224,58,58,0.2);
  border: 1px solid rgba(224,58,58,0.5);
  color: #ff7070;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: blink-border 2s infinite;
}

@keyframes blink-border {
  50% { border-color: rgba(224,58,58,0.9); box-shadow: 0 0 20px rgba(224,58,58,0.3); }
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.final-cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.final-cta-subtitle strong { color: var(--text); }

.final-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  margin-bottom: 40px;
}

.final-cta-features span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.final-cta-disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(138,144,160,0.6);
}

/* ============================================================
   QUICK LINKS BAR
   ============================================================ */
.quick-links-bar {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.quick-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
}

.quick-links-grid a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 4px 0;
}

.quick-links-grid a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 20px 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo strong { color: var(--gold-light); }

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover { border-color: var(--gold); transform: scale(1.1); }

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 20px;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(138,144,160,0.6);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(138,144,160,0.4);
  text-align: center;
}

.footer-copy a { color: var(--gold-dark); }

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0A0C12;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: var(--shadow);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top-btn:hover { transform: scale(1.1); }

/* ============================================================
   SALES NOTIFICATION POPUP
   ============================================================ */
.sales-popup {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 9000;
  opacity: 0;
  transform: translateX(-120%);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  max-width: 340px;
  width: calc(100vw - 40px);
}

.sales-popup.show {
  opacity: 1;
  transform: translateX(0);
}

.sales-popup-inner {
  background: var(--dark-3);
  border: 1px solid rgba(200,151,58,0.4);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.sales-popup-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sales-popup-text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.sales-popup-text strong { color: #fff; display: block; }

.sales-popup-close {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sales-popup-close:hover { color: #fff; }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.exit-popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.exit-popup {
  background: var(--dark-3);
  border: 2px solid var(--gold);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 80px rgba(200,151,58,0.3), var(--shadow);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.exit-popup-overlay.open .exit-popup { transform: scale(1); }

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-popup-close:hover { color: #fff; }

.exit-popup-badge {
  display: inline-block;
  background: rgba(224,58,58,0.2);
  border: 1px solid rgba(224,58,58,0.5);
  color: #ff7070;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.exit-popup h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.exit-popup > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.exit-countdown {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.exit-popup-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
  text-align: left;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.exit-popup-features div {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.exit-decline {
  display: block;
  margin: 14px auto 0;
  font-size: 0.78rem;
  color: rgba(138,144,160,0.5);
  text-decoration: underline;
  cursor: pointer;
}

.exit-decline:hover { color: var(--text-muted); }

/* ============================================================
   SCROLL BANNER POPUP
   ============================================================ */
.scroll-popup-banner {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8000;
  transition: bottom 0.5s cubic-bezier(0.4,0,0.2,1);
  width: calc(100vw - 40px);
  max-width: 680px;
}

.scroll-popup-banner.show { bottom: 90px; }

.scroll-popup-inner {
  background: linear-gradient(135deg, var(--dark-4), var(--dark-3));
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-gold), var(--shadow);
  flex-wrap: wrap;
}

.scroll-popup-emoji { font-size: 1.4rem; flex-shrink: 0; }

.scroll-popup-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
  min-width: 180px;
}

.scroll-popup-text strong { color: #fff; }

.scroll-popup-close {
  font-size: 1.1rem;
  color: var(--text-muted);
  padding: 4px 8px;
  flex-shrink: 0;
  min-width: 32px;
  min-height: 32px;
}

.scroll-popup-close:hover { color: #fff; }

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bonus-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,12,18,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    padding: 40px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 14px 20px; min-height: 56px; }
  .nav-cta-item { margin-top: 16px; }

  /* Hero */
  .hero { padding-top: 72px; }
  .hero-content { padding: 40px 16px 80px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 0; padding: 16px; }
  .stat-item { padding: 0 14px; }
  .stat-num { font-size: 1.3rem; }

  /* Sections */
  .section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-card { aspect-ratio: 4/3; max-width: 400px; margin: 0 auto; }
  .casino-visual { font-size: 2.5rem; }
  .slot-reel { width: 60px; height: 70px; font-size: 1.8rem; }

  /* Bonus */
  .bonus-highlight-card { padding: 36px 24px; }
  .bonus-cards-grid { grid-template-columns: 1fr; }

  /* Games */
  .games-grid { grid-template-columns: 1fr; }
  .games-cta-banner { flex-direction: column; text-align: center; }

  /* Steps */
  .steps-container { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-rating-summary { flex-direction: column; text-align: center; }

  /* Promos */
  .promos-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 24px; }

  /* Exit popup */
  .exit-popup { padding: 36px 20px; }
  .exit-popup-features { grid-template-columns: 1fr; max-width: 220px; }

  /* Scroll popup */
  .scroll-popup-banner.show { bottom: 80px; }

  /* Trust bar */
  .trust-bar-inner { gap: 6px 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 20px; }
  .trust-item { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .btn-primary.btn-xl { font-size: 1rem; padding: 16px 28px; }
  .sales-popup { max-width: calc(100vw - 32px); }
  .bonus-main-amount { font-size: 3.5rem; }
  .final-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;
  }
}
