/* reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-main:       #031B19;
  --bg-secondary:  #062723;
  --bg-card:       #082E29;
  --green:         #00C96B;
  --green-bright:  #18E777;
  --green-dark:    #008C4A;
  --gold:          #F0A800;
  --gold-bright:   #FFC200;
  --text:          #FFFFFF;
  --text-muted:    #B7C6C2;
  --border:        rgba(24,231,119,0.30);
  --radius:        14px;
  --radius-sm:     8px;
  --transition:    0.25s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: var(--bg-main);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* font type */
h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 700; }
h1 {
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.08;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -1.5px;
}
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: 1rem; }

.green { color: var(--green-bright); }
.gold  { color: var(--gold); }

.hero-brand {
  color: var(--green-bright);
  font-weight: 900;
  font-size: 1.15em;
  letter-spacing: 3px;
}

/* button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 52px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* Glass shine sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
  border-radius: inherit;
}
.btn:not(.btn-has-badge) { overflow: hidden; }
.btn-has-badge::before { display: none; }
.btn:hover::before { left: 130%; }

.btn-primary {
  background: radial-gradient(ellipse at center, #052e15 0%, #0a6b30 55%, #18e777 100%);
  color: #fff;
  border: 2px solid #18e777;
  box-shadow:
    0 0 14px rgba(24,231,119,0.55),
    0 0 32px rgba(24,231,119,0.20),
    inset 0 0 20px rgba(0,0,0,0.35);
  text-shadow: 0 0 8px rgba(24,231,119,0.6);
}
.btn-primary:hover {
  background: radial-gradient(ellipse at center, #073d1c 0%, #0f8a3e 50%, #25ff88 100%);
  border-color: #25ff88;
  box-shadow:
    0 0 22px rgba(24,231,119,0.80),
    0 0 50px rgba(24,231,119,0.35),
    inset 0 0 20px rgba(0,0,0,0.30);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 10px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(24, 231, 119, 0.6);
  color: var(--green-bright);
  box-shadow:
    0 0 18px rgba(24,231,119,0.25),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-orange {
  background: radial-gradient(ellipse at center, #3d1800 0%, #8a3500 55%, #ff7a00 100%);
  color: #fff;
  border: 2px solid #ff7a00;
  box-shadow:
    0 0 14px rgba(255,122,0,0.55),
    0 0 32px rgba(255,122,0,0.20),
    inset 0 0 20px rgba(0,0,0,0.35);
  text-shadow: 0 0 8px rgba(255,122,0,0.6);
}
.btn-orange:hover {
  background: radial-gradient(ellipse at center, #4d2000 0%, #a04200 50%, #ff9a30 100%);
  border-color: #ff9a30;
  box-shadow:
    0 0 22px rgba(255,122,0,0.80),
    0 0 50px rgba(255,122,0,0.35),
    inset 0 0 20px rgba(0,0,0,0.30);
}

.btn-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.2;
}

.btn-has-badge { position: relative; overflow: visible; }

.btn-badge {
  position: absolute;
  top: -10px;
  right: -6px;
  left: auto;
  transform: none;
  background: #e63946;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(230,57,70,0.5);
  pointer-events: none;
}

/* header */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,27,25,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
#header.scrolled { background: rgba(3,27,25,0.98); }

.header-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  font-weight: 500;
}
.nav-links a:hover { color: var(--green-bright); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 69px; left: 0; right: 0;
  background: rgba(6,39,35,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 24px;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--green-bright); background: rgba(24,231,119,0.05); }

/* heor */
#hero {
  min-height: 100vh;
  padding: 110px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-content { z-index: 2; }
.hero-content h1 { margin-bottom: 18px; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-labels {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.trust-item .trust-icon {
  font-size: 1.1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.72rem;
  flex-shrink: 0;
  line-height: 1;
}
.trust-badge-flag { font-size: 1.1rem; background: transparent; }
.trust-badge-mxn  { background: transparent; color: #F5B928; font-size: 1rem; font-weight: 800; border: 2px solid var(--gold); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.roulette-bg {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,107,0.08) 0%, rgba(0,201,107,0.02) 50%, transparent 70%);
  border: 2px solid rgba(0,201,107,0.15);
  animation: rotateSlow 30s linear infinite;
}
.roulette-bg::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(245,185,40,0.1);
}
.roulette-bg::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px dashed rgba(0,201,107,0.1);
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* Phone image */
.phone-img {
  position: relative;
  z-index: 3;
  width: 420px;
  max-width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* glowing treasure effect */

/* Pulsing gold aura — left and right sides of phone */
.chest-aura {
  position: absolute;
  z-index: 1;
  width: 160px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,210,40,0.55) 0%, rgba(245,140,0,0.25) 45%, transparent 70%);
  filter: blur(22px);
  animation: auraBreath 3s ease-in-out infinite;
  top: 50%; transform: translateY(-50%);
  left: 0%;
}
.chest-aura-2 {
  left: auto;
  right: 0%;
  background: radial-gradient(ellipse at center, rgba(255,220,60,0.50) 0%, rgba(255,160,0,0.20) 45%, transparent 70%);
  filter: blur(18px);
  animation-delay: 1.5s;
}

@keyframes auraBreath {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(0.85); }
  50%       { opacity: 1;  transform: translateY(-50%) scale(1.18); }
}

/* rising/floating light motes — surrounding the phone */
.mote {
  position: absolute;
  z-index: 2; /* below phone z-index:3 — motes never overlap the phone */
  border-radius: 50%;
  background: #ffe566;
  animation: moteFloat 3.2s ease-in-out infinite;
}

/* left side */
.m-1  { top: 18%; left: 5%;  animation-delay: 0s;    width: 7px;  height: 7px;  box-shadow: 0 0 10px 5px rgba(255,220,40,0.85); }
.m-2  { top: 48%; left: 2%;  animation-delay: 1.0s;  width: 5px;  height: 5px;  box-shadow: 0 0 8px 4px rgba(255,200,40,0.75); }
.m-3  { top: 70%; left: 7%;  animation-delay: 2.0s;  width: 6px;  height: 6px;  box-shadow: 0 0 9px 4px rgba(255,210,40,0.80); }
.m-8  { top: 30%; left: 10%; animation-delay: 0.7s;  width: 6px;  height: 6px;  box-shadow: 0 0 9px 4px rgba(255,210,40,0.75); }
.m-7  { top: 85%; left: 8%;  animation-delay: 2.8s;  width: 5px;  height: 5px;  box-shadow: 0 0 8px 3px rgba(255,220,40,0.70); }
/* right side */
.m-4  { top: 12%; right: 4%; animation-delay: 0.5s;  width: 6px;  height: 6px;  box-shadow: 0 0 9px 4px rgba(255,220,40,0.80); }
.m-5  { top: 38%; right: 2%; animation-delay: 1.5s;  width: 7px;  height: 7px;  box-shadow: 0 0 10px 5px rgba(255,200,40,0.85); }
.m-6  { top: 63%; right: 6%; animation-delay: 2.5s;  width: 5px;  height: 5px;  box-shadow: 0 0 8px 3px rgba(255,215,40,0.75); }
.m-9  { top: 55%; right: 9%; animation-delay: 1.8s;  width: 5px;  height: 5px;  box-shadow: 0 0 8px 3px rgba(255,220,40,0.80); }
.m-10 { top: 82%; right: 7%; animation-delay: 3.2s;  width: 6px;  height: 6px;  box-shadow: 0 0 9px 4px rgba(255,200,40,0.70); }

@keyframes moteFloat {
  0%, 100% { opacity: 0;   transform: scale(0.5); }
  40%       { opacity: 1;  transform: scale(1.1); }
  60%       { opacity: 0.8; transform: scale(1);  }
}

/* shine animation - bonus */
.gift-shine-wrap {
  position: relative;
  display: inline-block;
}
.gift-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,90,0.45) 0%, rgba(245,185,40,0.15) 45%, transparent 70%);
  animation: coinGlow 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.bonus-gift-img { position: relative; z-index: 1; }

@keyframes coinGlow {
  0%, 100% { opacity: 0.2; transform: scale(0.9);  }
  40%       { opacity: 1;   transform: scale(1.05); }
  60%       { opacity: 0.8; transform: scale(1.08); }
}

/* bonus */
#bonus {
  background: linear-gradient(135deg, #0d3d2a 0%, #082E29 50%, #0d3d2a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.bonus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
/* keep all items except disclaimer on one row */
.bonus-inner > *:not(.bonus-disclaimer) { flex-shrink: 0; }
.bonus-disclaimer { order: 99; flex-basis: 100%; margin-top: 4px; }
.bonus-gift { flex-shrink: 0; }
.bonus-gift-img { width: 340px; height: auto; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4)); }
.bonus-main h2 { font-size: 1rem; color: var(--text-muted); margin-bottom: 4px; white-space: nowrap; }
.bonus-amount { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--gold); line-height: 1; }

.bonus-divider { font-size: 2rem; color: var(--text-muted); font-weight: 300; flex-shrink: 0; }

.bonus-extra { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.bonus-extra-num { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--gold); line-height: 1; }
.bonus-extra-label { font-size: 0.8rem; color: var(--text-muted); max-width: 120px; line-height: 1.3; }

.bonus-pct-num { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--gold); line-height: 1; }
.bonus-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  opacity: 0.7;
}

/* categories */
#categories {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 8px;
}
.section-title { text-align: center; margin-bottom: 40px; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cat-card {
  background: transparent;
  border: none;
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 24px rgba(24,231,119,0.2));
}
.cat-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); }
.cat-name { font-weight: 700; font-size: 0.95rem; }
.cat-desc { font-size: 0.75rem; color: var(--text-muted); }

/* trustbar */
#trust {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.trust-bar {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-block-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(24,231,119,0.08);
  border: 2px solid var(--green-bright);
  box-shadow: 0 0 10px rgba(24,231,119,0.35), inset 0 0 10px rgba(24,231,119,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  flex-shrink: 0;
}
.trust-block-text h4 { font-size: 0.9rem; margin-bottom: 3px; }
.trust-block-text p  { font-size: 0.75rem; color: var(--text-muted); }

/* =how it work */
#how {
  padding: 70px 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  margin-top: 48px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--green-bright);
  background: rgba(24,231,119,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 20px rgba(24,231,119,0.15);
}
.step-title { font-weight: 700; font-size: 0.95rem; }
.step-desc { font-size: 0.78rem; color: var(--text-muted); max-width: 160px; }
.step-arrow { color: var(--green-bright); font-size: 1.8rem; opacity: 0.6; align-self: start; margin-top: 20px; }

/* games */
#games {
  padding: 70px 0;
}
.games-heading {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 24px;
}
.games-carousel-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.games-track {
  display: flex;
  width: max-content;
  animation: carouselScroll 30s linear infinite;
  padding: 8px 0 16px;
}
@keyframes carouselScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (hover: hover) {
  .games-carousel-wrap:hover .games-track {
    animation-play-state: paused;
  }
}
.game-card {
  width: 182px;
  flex-shrink: 0;
  margin-right: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 32px rgba(245,185,40,0.2); }
.game-art {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-card);
}
.game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.game-card:hover .game-art img { transform: scale(1.06); }

.game-name {
  background: var(--bg-card);
  padding: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--border);
}

/* cta */
#final-cta {
  background: linear-gradient(135deg, #062723 0%, #031B19 50%, #062723 100%);
  border-top: 1px solid var(--border);
  padding: 70px 24px;
}
.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  text-align: center;
}
.final-cta-content { text-align: center; }
.final-cta-deco { flex-shrink: 0; }
.cta-deco-img { width: 140px; height: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.final-cta-content { flex: 1; }
.final-cta-content h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 10px; }
.final-cta-content p { color: var(--text-muted); margin-bottom: 24px; }
.final-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* footer */
#footer {
  background: #020e0d;
  border-top: 1px solid var(--border);
  padding: 52px 24px 24px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green-bright); }

.footer-rg p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; }
.footer-rg a { color: var(--green-bright); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 0.76rem; color: var(--text-muted); }
.age-badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* sticky mobile cta */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(6,39,35,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
}
.sticky-mobile-cta .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 12px 16px; }

/* responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


@media (max-width: 768px) {
  .nav-links, #header .btn { display: none; }
  .hamburger { display: flex; }

  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 80px;
  }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .trust-labels { justify-content: center; }
  .hero-visual { order: -1; min-height: 340px; }
  .phone-img { width: 280px; }
  .roulette-bg { width: 260px; height: 260px; }

  .bonus-inner { gap: 16px; flex-wrap: wrap; }
  .bonus-gift-img { width: 240px; }
  .bonus-divider { display: none; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .trust-bar { grid-template-columns: 1fr 1fr; }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-arrow { transform: rotate(90deg); }

  .games-track .game-card { width: 150px; }

  .final-cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .final-cta-btns { justify-content: center; }
  .final-cta-deco { display: flex; justify-content: center; }
  .final-cta-deco .cta-deco-img { width: 120px; }

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

  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .games-track .game-card { width: 140px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
