/* ============================================================
   BORGATA ONLINE CASINO — styles.css
   Fonts: Montserrat (headings) | Open Sans (body)
   Theme: Dark luxury casino with gold accents
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #FFD700;
  --gold-light: #FFE566;
  --gold-dark: #C8A600;
  --crimson: #C0132C;
  --crimson-dark: #8F0E20;
  --dark: #0A0A0F;
  --dark-2: #11111A;
  --dark-3: #1A1A2E;
  --dark-4: #22223A;
  --dark-card: #16162A;
  --text: #E8E8F0;
  --text-muted: #8888AA;
  --border: rgba(255,215,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(255,215,0,0.2);
  --transition: 0.3s ease;
  --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(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { font-size: clamp(0.92rem, 2vw, 1.05rem); color: var(--text-muted); }
strong { color: var(--text); }
.gold { color: var(--gold); }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; }
.section { padding: 5rem 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  min-height: 48px;
  text-align: center;
  letter-spacing: 0.02em;
}
.btn:active { transform: scale(0.97); }
.btn:hover { transform: scale(1.05); }

.btn-primary {
  background: linear-gradient(135deg, var(--crimson), #8B0000);
  color: #fff;
  border-color: var(--crimson);
  box-shadow: 0 4px 20px rgba(192,19,44,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #D41530, var(--crimson));
  box-shadow: 0 8px 30px rgba(192,19,44,0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(255,215,0,0.5); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: rgba(255,215,0,0.1); }

.btn-xl { font-size: 1.1rem; padding: 1rem 2.25rem; min-height: 56px; }
.btn-lg { font-size: 1rem; padding: 0.9rem 2rem; min-height: 52px; }
.btn-sm { font-size: 0.85rem; padding: 0.55rem 1.25rem; min-height: 42px; }

.pulse-btn { animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(192,19,44,0.4); }
  50% { box-shadow: 0 4px 40px rgba(192,19,44,0.8), 0 0 60px rgba(255,215,0,0.2); }
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal, .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.65s; }

/* ================================================================
   NAVBAR
   ================================================================ */
#main-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all var(--transition); }
.navbar {
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,15,0.97);
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(255,215,0,0.08); }
.nav-cta { font-size: 0.85rem; padding: 0.6rem 1.25rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Mobile Nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 0.75rem 1rem; }
  .nav-cta { display: none; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
  background: radial-gradient(ellipse at 50% 0%, #1a0a0f 0%, var(--dark) 70%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse, rgba(192,19,44,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  text-align: center;
}
.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-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  color: #fff;
}
.hero-brand {
  background: linear-gradient(135deg, var(--gold), #FFF5A0, var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-subtitle strong { color: var(--gold); }

/* Countdown */
.countdown-wrapper { margin: 1.5rem auto 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.countdown-label { font-family: var(--font-head); font-size: 0.85rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.countdown { display: flex; align-items: center; gap: 0.5rem; }
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  min-width: 65px;
}
.countdown-block span { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.countdown-block small { font-size: 0.65rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 2px; }
.countdown-sep { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--crimson); animation: blink 1s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.trust-item {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating Cards */
.hero-cards { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.float-card {
  position: absolute;
  font-size: 3rem;
  opacity: 0.07;
  animation: float-card 8s ease-in-out infinite;
}
.card-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 4rem; }
.card-2 { top: 60%; left: 3%; animation-delay: 1.5s; }
.card-3 { top: 20%; right: 5%; animation-delay: 3s; font-size: 3.5rem; }
.card-4 { top: 70%; right: 8%; animation-delay: 0.8s; }
.card-5 { top: 40%; right: 2%; animation-delay: 2.2s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: rise 6s ease-in infinite;
}
@keyframes rise {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-80vh) scale(0.3); }
}

/* ================================================================
   PROMO BANNER
   ================================================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--crimson-dark), #600010);
  border-top: 1px solid rgba(255,215,0,0.2);
  border-bottom: 1px solid rgba(255,215,0,0.2);
  padding: 1.5rem 1.25rem;
}
.promo-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.promo-icon { font-size: 1.75rem; }
.promo-item div { display: flex; flex-direction: column; }
.promo-item strong { font-family: var(--font-head); font-size: 1.05rem; color: #fff; }
.promo-item small { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.promo-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
@media (max-width: 600px) { .promo-divider { display: none; } }

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 550px; margin: 0 auto; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section { background: var(--dark-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
}
.img-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
.img-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}
.about-content { display: flex; flex-direction: column; gap: 1rem; }
.about-content p { color: var(--text-muted); }
.about-stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.stat-box {
  flex: 1;
  min-width: 90px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-box small { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ================================================================
   SPORTS SECTION
   ================================================================ */
.sports-section { background: var(--dark); }
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sport-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sport-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.sport-img { position: relative; overflow: hidden; }
.sport-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s ease; }
.sport-card:hover .sport-img img { transform: scale(1.07); }
.sport-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.sport-card:hover .sport-overlay { opacity: 1; }
.sport-info { padding: 1.25rem; }
.sport-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.sport-info p { font-size: 0.9rem; margin-bottom: 1rem; }
@media (max-width: 768px) {
  .sports-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SLOTS GRID
   ================================================================ */
.slots-section { background: var(--dark-3); }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.slot-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.slot-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.slot-img-wrap { position: relative; overflow: hidden; }
.slot-img-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.4s ease; }
.slot-card:hover .slot-img-wrap img { transform: scale(1.08); }
.slot-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.jp-badge { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #000; }
.slot-info { padding: 1rem 1.1rem 1.25rem; }
.slot-info h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.slot-info p { font-size: 0.82rem; margin-bottom: 0.75rem; }
@media (max-width: 900px) { .slots-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .slots-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; } }

/* ================================================================
   JACKPOTS SECTION
   ================================================================ */
.jackpots-section { background: var(--dark-2); }
.jackpot-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: var(--dark-card);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem;
  margin-bottom: 2.5rem;
}
.ticker-label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ticker-amount { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--gold); }
.jackpot-card { border-color: rgba(255,215,0,0.25); }
.jackpot-card:hover { box-shadow: 0 0 30px rgba(255,215,0,0.25); }

/* ================================================================
   CLASSICS / LIVE DEALER
   ================================================================ */
.classics-section { background: var(--dark); }
.classics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.classic-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}
.classic-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.4s ease; display: block; }
.classic-card:hover img { transform: scale(1.08); }
.classic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.classic-card:hover .classic-overlay { opacity: 1; }
.classic-overlay h3 { font-size: 0.9rem; color: #fff; margin-bottom: 0.5rem; text-align: center; }
@media (max-width: 900px) { .classics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .classics-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section { background: var(--dark-3); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(255,215,0,0.35); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.why-card h3 { margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .why-grid { grid-template-columns: 1fr; } }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-section { background: var(--dark-2); }
.aggregate-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.aggregate-rating .stars { font-size: 1.4rem; }
.aggregate-rating strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.review-header div { flex: 1; }
.review-header strong { display: block; font-family: var(--font-head); font-size: 0.95rem; }
.review-header small { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { font-size: 1rem; margin-left: auto; }
.review-card > p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.review-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: #4caf50;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ================================================================
   FINAL CTA SECTION
   ================================================================ */
.final-cta-section {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 7rem 0;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-glow-1 {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vh;
  background: radial-gradient(ellipse, rgba(192,19,44,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-glow-2 {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vh;
  background: radial-gradient(ellipse, rgba(255,215,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-coins { position: absolute; inset: 0; overflow: hidden; }
.coin {
  position: absolute;
  font-size: 1.5rem;
  animation: coin-fall 5s ease-in infinite;
  opacity: 0;
}
@keyframes coin-fall {
  0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.final-badge {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: flash 2s ease-in-out infinite;
}
@keyframes flash { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.final-title { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 1rem; font-weight: 900; }
.final-subtitle { font-size: clamp(0.95rem, 2vw, 1.1rem); margin-bottom: 2rem; }
.final-countdown { margin-bottom: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.mega-cta { font-size: 1.2rem; padding: 1.1rem 2.5rem; }
.cta-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; }
.final-trust { margin-top: 2rem; display: flex; justify-content: center; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section { background: var(--dark-2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; font-size: 0.95rem; }

/* ================================================================
   QUICK LINKS
   ================================================================ */
.quick-links-section { background: var(--dark-3); padding: 2rem 0; border-top: 1px solid var(--border); }
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.quick-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.quick-links a:hover { color: var(--gold); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--dark-2); }
.footer-top { padding: 4rem 0 3rem; border-bottom: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a { font-size: 1.4rem; transition: transform var(--transition); }
.footer-social a:hover { transform: scale(1.2); }
.footer-links h4 { font-family: var(--font-head); font-size: 0.95rem; color: var(--gold); margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links li a { color: var(--text-muted); }
.footer-links li:hover, .footer-links li a:hover { color: var(--text); }
.footer-bottom { padding: 1.5rem 1.25rem; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; } }

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
  box-shadow: 0 4px 20px rgba(192,19,44,0.5);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--crimson-dark); transform: translateY(-3px); }

/* ================================================================
   SALES NOTIFICATION POPUP
   ================================================================ */
.sales-popup {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  max-width: 320px;
  box-shadow: var(--shadow);
  z-index: 800;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sales-popup.show { transform: translateX(0); }
.sales-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
}
.sales-popup-close:hover { color: var(--text); }
.sales-popup-content { display: flex; align-items: center; gap: 0.9rem; }
.sales-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.sales-text strong { font-family: var(--font-head); font-size: 0.9rem; display: block; }
.sales-text span { font-size: 0.78rem; color: var(--text-muted); }
.sales-text p { font-size: 0.85rem; margin: 0.1rem 0 0; }
@media (max-width: 480px) {
  .sales-popup { max-width: calc(100vw - 2rem); bottom: 5rem; left: 1rem; right: 1rem; }
}

/* ================================================================
   EXIT INTENT POPUP
   ================================================================ */
.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.overlay-backdrop.show { opacity: 1; pointer-events: all; }

.exit-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.exit-overlay.show { opacity: 1; pointer-events: all; }

.exit-popup {
  background: var(--dark-3);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(255,215,0,0.15), var(--shadow);
  animation: popup-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popup-in {
  from { transform: scale(0.8) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.exit-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.exit-badge {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  animation: flash 1.5s ease-in-out infinite;
}
.exit-popup h2 { font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: 0.75rem; }
.exit-popup p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.exit-offer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--dark-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.exit-offer-item { text-align: center; }
.exit-offer-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.exit-offer-item small { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.exit-decline {
  display: block;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 1rem;
  text-decoration: underline;
  padding: 0.5rem;
  min-height: 40px;
}
.exit-decline:hover { color: var(--text); }

/* ================================================================
   SCROLL POPUP BANNER (Mobile)
   ================================================================ */
.scroll-popup-banner {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 950;
  transform: translateY(-120%);
  transition: transform 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.scroll-popup-banner.show { transform: translateY(0); }
.scroll-banner-content { display: flex; align-items: center; gap: 0.75rem; flex: 1; flex-wrap: wrap; }
.scroll-banner-content span { font-family: var(--font-head); font-size: 0.85rem; color: #fff; }
.scroll-banner-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ================================================================
   RESPONSIVE HELPERS
   ================================================================ */
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero-container { padding: 3rem 1rem; }
  .countdown-block { min-width: 55px; padding: 0.5rem 0.75rem; }
  .countdown-block span { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-xl { font-size: 1rem; padding: 0.9rem 1.5rem; }
  .final-cta-section { padding: 4rem 0; }
  .exit-popup { padding: 2rem 1.25rem; }
  .exit-offer { gap: 1rem; }
}
