/* ============================================================
   BetMGM Casino – styles.css
   Fonts: Montserrat (headings) + Open Sans (body)
   Theme: Dark luxury casino – gold/black/deep purple
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold:        #c9a227;
  --gold-light:  #f0c84a;
  --gold-dark:   #9a7818;
  --bg-deep:     #0a0612;
  --bg-dark:     #120b20;
  --bg-card:     #1a1030;
  --bg-card2:    #22163a;
  --text-main:   #e8e0f5;
  --text-muted:  #9e90bb;
  --text-light:  #ffffff;
  --accent:      #7b3ff5;
  --accent2:     #e0399e;
  --border:      rgba(201,162,39,0.2);
  --shadow-gold: 0 0 30px rgba(201,162,39,0.3);
  --radius:      14px;
  --radius-sm:   8px;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --nav-h:       70px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-light);
}
p { color: var(--text-main); }

/* ---- Utilities ---- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.section-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}
.gold { color: var(--gold); }
.gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-2 { margin-top: 8px; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #0a0612 !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  min-height: 52px;
  transition: background-position .4s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.45);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(201,162,39,0.65);
  color: #0a0612 !important;
}
.btn-primary:active { transform: scale(0.98); }

.btn-xl { font-size: 1.1rem; padding: 16px 38px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  min-height: 52px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-deep) !important; transform: scale(1.05); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: transform .2s, box-shadow .2s;
}
.btn-nav-cta:hover { transform: scale(1.04); box-shadow: var(--shadow-gold); color: var(--bg-deep) !important; }

.btn-game {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 20px;
  border-radius: 30px;
  min-height: 40px;
  transition: all .2s;
}
.btn-game:hover { background: var(--gold); color: var(--bg-deep) !important; transform: scale(1.04); }

.btn-sm-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-deep) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 30px;
  min-height: 44px;
  transition: all .2s;
  white-space: nowrap;
}
.btn-sm-gold:hover { background: var(--gold-light); transform: scale(1.04); }

.pulse-btn {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,162,39,0.45); }
  50% { box-shadow: 0 4px 40px rgba(201,162,39,0.85), 0 0 60px rgba(201,162,39,0.3); }
}

/* ---- Scroll Animations ---- */
.reveal, .fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible, .fade-up.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  .pulse-btn { animation: none !important; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 6, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
#mainNav.scrolled { background: rgba(10, 6, 18, 0.97); }
.navbar { height: 100%; }
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light) !important;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; color: var(--gold); }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: .02em;
  color: var(--text-light);
}
.logo-text strong { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--gold); background: rgba(201,162,39,.08); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, #1e0a4a 0%, #0a0612 60%);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}
.glow-1 { width: 500px; height: 500px; background: #7b3ff5; top: -10%; left: -5%; animation: gFloat 8s ease-in-out infinite; }
.glow-2 { width: 400px; height: 400px; background: var(--gold); bottom: -5%; right: -5%; animation: gFloat 10s ease-in-out infinite reverse; }
@keyframes gFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -30px); } }

.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,162,39,.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 7vw, 5rem);
  margin-bottom: 22px;
  text-shadow: 0 0 60px rgba(201,162,39,.25);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-timer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(201,162,39,.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 28px;
  margin-bottom: 30px;
}
.timer-label { font-size: .85rem; color: var(--gold); font-family: var(--font-head); font-weight: 700; margin-bottom: 8px; }
.timer-digits { display: flex; align-items: center; gap: 6px; }
.digit-box {
  display: flex; flex-direction: column; align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  min-width: 72px;
}
.digit-box span {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.digit-box small { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.digit-sep { font-size: 1.8rem; font-weight: 900; color: var(--gold); margin-bottom: 14px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; color: var(--text-muted); font-size: .85rem; }
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* Slot Cards animation */
.slot-cards { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.slot-card {
  position: absolute;
  font-size: 2rem;
  opacity: .18;
  animation: floatCard 12s linear infinite;
}
.card-1 { left: 5%; top: 20%; animation-duration: 9s; animation-delay: 0s; }
.card-2 { left: 90%; top: 40%; animation-duration: 13s; animation-delay: -3s; }
.card-3 { left: 15%; top: 70%; animation-duration: 11s; animation-delay: -6s; }
.card-4 { left: 80%; top: 15%; animation-duration: 10s; animation-delay: -1s; }
.card-5 { left: 50%; top: 80%; animation-duration: 14s; animation-delay: -5s; }
@keyframes floatCard {
  0% { transform: translateY(0) rotate(0deg); opacity: .18; }
  50% { opacity: .35; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: .18; }
}

/* Particles */
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFly linear infinite;
}
@keyframes particleFly {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: .6; }
  100% { opacity: 0; transform: translateY(-300px) scale(1.5); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  width: 100%;
}
.about-badge-float {
  position: absolute;
  bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .85rem;
  text-align: center;
  padding: 14px 18px;
  border-radius: var(--radius);
  line-height: 1.4;
  box-shadow: 0 8px 30px rgba(201,162,39,.5);
}
.about-content { display: flex; flex-direction: column; gap: 16px; }
.about-content p { color: var(--text-muted); }
.about-content strong { color: var(--text-main); }

/* ============================================================
   OFFER
   ============================================================ */
.offer-section { background: linear-gradient(180deg, var(--bg-dark), var(--bg-deep)); }
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.offer-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #200c3a, #1a0a2e);
  box-shadow: var(--shadow-gold);
}
.offer-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.offer-badge--hot { background: linear-gradient(90deg, var(--accent2), var(--gold)); color: var(--bg-deep); }
.offer-icon { font-size: 2.4rem; margin-bottom: 10px; }
.offer-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-light); }
.offer-amount { font-family: var(--font-head); font-size: 2.6rem; font-weight: 900; color: var(--gold); margin-bottom: 10px; }
.offer-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 20px; }
.offer-img { max-width: 700px; margin: 0 auto; border-radius: var(--radius); opacity: .9; }

/* ============================================================
   GAMES
   ============================================================ */
.games-section { background: var(--bg-deep); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.game-img-wrap { height: 200px; overflow: hidden; background: var(--bg-card2); }
.game-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.game-card:hover .game-img-wrap img { transform: scale(1.06); }
.game-info { padding: 20px 24px; }
.game-info h3 { font-size: 1.15rem; margin-bottom: 8px; }
.game-info p { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: linear-gradient(180deg, var(--bg-dark), var(--bg-deep)); }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: .88rem; color: var(--text-muted); }
.step-arrow {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: .5;
  align-self: center;
  flex-shrink: 0;
  padding: 0 4px;
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses-section { background: var(--bg-deep); }
.bonus-list { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.bonus-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform .2s, box-shadow .2s;
}
.bonus-item:hover { transform: translateX(6px); box-shadow: var(--shadow-gold); }
.bonus-icon { font-size: 2rem; flex-shrink: 0; }
.bonus-text { flex: 1; }
.bonus-text h3 { font-size: 1rem; margin-bottom: 4px; }
.bonus-text p { font-size: .9rem; color: var(--text-muted); }
.bonus-text strong { color: var(--gold); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: linear-gradient(180deg, var(--bg-dark), var(--bg-deep)); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.review-header img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.review-header strong { display: block; color: var(--text-light); font-family: var(--font-head); }
.review-header span { font-size: .82rem; color: var(--text-muted); }
.stars { color: var(--gold); margin-bottom: 12px; font-size: 1rem; }
.review-card p { font-size: .9rem; color: var(--text-muted); }
.review-card strong { color: var(--gold); }
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex-wrap: wrap;
}
.rating-score {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-score span { font-size: 2rem; color: var(--text-muted); }
.big-stars { font-size: 1.4rem; margin-bottom: 6px; }
.rating-info p { color: var(--text-muted); font-size: .9rem; }
.rating-info strong { color: var(--text-main); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section { background: var(--bg-deep); }
.guarantee-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow-gold);
}
.guarantee-img img { width: 180px; border-radius: var(--radius); }
.guarantee-text { display: flex; flex-direction: column; gap: 14px; }
.guarantee-text p { color: var(--text-muted); }
.guarantee-text strong { color: var(--gold); }

/* ============================================================
   BUY SECTION
   ============================================================ */
.buy-section { background: linear-gradient(180deg, var(--bg-dark), var(--bg-deep)); }
.buy-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.buy-reason {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.buy-reason:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.br-icon { font-size: 2.2rem; margin-bottom: 12px; }
.buy-reason h3 { font-size: 1rem; margin-bottom: 8px; }
.buy-reason p { font-size: .88rem; color: var(--text-muted); }
.buy-img { max-width: 800px; margin: 0 auto 36px; border-radius: var(--radius); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg-deep); }
.faq-list { max-width: 800px; margin: 30px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: none;
  color: var(--text-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  text-align: left;
  transition: color .2s, background .2s;
  min-height: 60px;
}
.faq-q:hover { color: var(--gold); background: rgba(201,162,39,.05); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
  font-family: var(--font-head);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p { color: var(--text-muted); font-size: .93rem; }
.faq-a strong { color: var(--gold); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg-dark);
}
.final-cta-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.fc-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .35;
}
.fc-glow-1 { width: 600px; height: 600px; background: var(--accent); top: -30%; left: -10%; animation: gFloat 9s ease-in-out infinite; }
.fc-glow-2 { width: 500px; height: 500px; background: var(--gold); bottom: -20%; right: -10%; animation: gFloat 11s ease-in-out infinite reverse; }
.casino-chips { position: absolute; inset: 0; overflow: hidden; }
.chip {
  position: absolute;
  font-size: 2.5rem;
  opacity: .12;
  animation: chipFloat 15s linear infinite;
}
.c1 { left:8%; top:20%; animation-delay:0s; }
.c2 { left:88%; top:30%; animation-delay:-3s; }
.c3 { left:20%; top:70%; animation-delay:-6s; }
.c4 { left:75%; top:60%; animation-delay:-9s; }
.c5 { left:45%; top:10%; animation-delay:-2s; }
.c6 { left:60%; top:80%; animation-delay:-7s; }
@keyframes chipFloat {
  0% { transform: translate(0,0) rotate(0deg); opacity:.12; }
  50% { opacity:.25; }
  100% { transform: translate(-20px,-140px) rotate(360deg); opacity:.12; }
}
.final-cta-section .container { position: relative; z-index: 2; }
.fc-tag {
  display: inline-block;
  background: rgba(201,162,39,.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.fc-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 18px;
}
.fc-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 32px; }
.fc-sub strong { color: var(--text-main); }
.fc-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,162,39,.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 28px;
  margin-bottom: 30px;
}
.fct-box {
  display: flex; flex-direction: column; align-items: center;
  min-width: 60px;
}
.fct-box span {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.fct-box small { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }
.fct-sep { font-size: 1.8rem; font-weight: 900; color: var(--gold); margin-bottom: 14px; }
.fc-note { font-size: .82rem; color: var(--text-muted); margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050310;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: .9rem; color: var(--text-muted); margin-top: 14px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: .9rem; color: var(--text-muted); margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: .85rem; color: var(--text-muted); margin-bottom: 6px; }
.footer-bottom a { color: var(--gold); }
.disclaimer { font-size: .78rem !important; opacity: .7; }

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,162,39,.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.scroll-top:hover { background: var(--gold-light); transform: scale(1.08); }

/* ============================================================
   SALES NOTIFICATION POPUP
   ============================================================ */
.sales-popup {
  position: fixed;
  bottom: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card2);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  max-width: 320px;
  z-index: 1100;
  box-shadow: 0 8px 30px rgba(0,0,0,.6);
  transform: translateX(-120%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.sales-popup.show { transform: translateX(0); }
.sp-icon { font-size: 1.8rem; flex-shrink: 0; }
.sp-text { flex: 1; min-width: 0; }
.sp-text strong { display: block; font-family: var(--font-head); font-size: .88rem; color: var(--text-light); }
.sp-text span { display: block; font-size: .82rem; color: var(--text-muted); }
.sp-text small { font-size: .75rem; color: var(--gold); }
.sp-close {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: .9rem;
  padding: 4px;
  transition: color .2s;
}
.sp-close:hover { color: var(--text-light); }

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.exit-overlay, .delay-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.exit-overlay.active, .delay-overlay.active { opacity: 1; }
.exit-overlay[hidden], .delay-overlay[hidden] { display: none; }
.exit-popup, .delay-popup {
  background: linear-gradient(160deg, var(--bg-card2), var(--bg-deep));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-gold), 0 20px 60px rgba(0,0,0,.8);
  transform: scale(.92);
  transition: transform .3s;
}
.exit-overlay.active .exit-popup,
.delay-overlay.active .delay-popup { transform: scale(1); }
.exit-close, .delay-close {
  position: absolute;
  top: 14px; right: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 4px 8px;
  transition: color .2s;
}
.exit-close:hover, .delay-close:hover { color: var(--text-light); }
.ep-icon { font-size: 3rem; margin-bottom: 14px; }
.exit-popup h2, .delay-popup h2 { font-size: 1.5rem; margin-bottom: 14px; color: var(--gold); }
.exit-popup p, .delay-popup p { color: var(--text-muted); font-size: .95rem; margin-bottom: 10px; }
.exit-popup strong, .delay-popup strong { color: var(--text-main); }
.exit-popup .btn-primary, .delay-popup .btn-primary { margin: 16px auto 0; display: inline-flex; }
.ep-skip, .dp-skip {
  display: block;
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: .8rem;
  text-decoration: underline;
  transition: color .2s;
}
.ep-skip:hover, .dp-skip:hover { color: var(--text-main); }
.dp-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent2), var(--gold));
  color: var(--bg-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.dp-timer {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  margin: 16px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer-cards { grid-template-columns: repeat(3, 1fr); }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .buy-reasons { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .guarantee-wrap { grid-template-columns: 1fr; text-align: center; padding: 36px; }
  .guarantee-img img { width: 130px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 60px 0; }

  /* Nav mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,6,18,.97);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 24px; font-size: .95rem; }
  .nav-toggle { display: flex; }
  .btn-nav-cta { font-size: .8rem; padding: 8px 16px; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust { gap: 14px; font-size: .8rem; }
  .digit-box { min-width: 60px; padding: 8px 14px; }
  .digit-box span { font-size: 1.6rem; }

  /* Grids */
  .offer-cards { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto 40px; }
  .games-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .buy-reasons { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-card { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); }
  .bonus-item { flex-wrap: wrap; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Popups */
  .exit-popup, .delay-popup { padding: 32px 22px; }
  .sales-popup { max-width: calc(100vw - 32px); left: 16px; right: 16px; bottom: 16px; }

  /* Scroll top */
  .scroll-top { width: 56px; height: 56px; bottom: 80px; }
}

@media (max-width: 480px) {
  .buy-reasons { grid-template-columns: 1fr; }
  .hero-badge { font-size: .72rem; }
  .section-title { font-size: 1.5rem; }
  .offer-amount { font-size: 2rem; }
  .fc-title { font-size: 1.8rem; }
  .btn-xl { font-size: 1rem; padding: 14px 24px; }
  .guarantee-wrap { padding: 26px 18px; }
  .rating-bar { flex-direction: column; text-align: center; }
}

/* Touch feedback */
@media (hover: none) {
  .btn-primary:active, .btn-outline:active, .btn-game:active, .btn-sm-gold:active {
    transform: scale(0.97);
    opacity: .9;
  }
}
