/* ─────────────────────────────────────────────
   ROYAL CLUB 777 — Casino Landing Page CSS
   Mobile-first · Indonesian audience
───────────────────────────────────────────── */

/* ── DESIGN TOKENS ── */
:root {
  --bg-deep:       #09090F;
  --bg-dark:       #0F0F1A;
  --bg-card:       #13131F;
  --bg-card-hover: #1A1A2E;

  --purple-dark:   #2D1B69;
  --purple-mid:    #4C2A9E;
  --purple-vivid:  #7C3AED;
  --purple-light:  #A855F7;

  --gold-dark:     #92650A;
  --gold-base:     #C9A84C;
  --gold-light:    #F5C842;
  --gold-pale:     #FDE68A;

  --red-hot:       #EF4444;
  --red-dark:      #B91C1C;
  --green-win:     #22C55E;
  --green-dark:    #15803D;

  --text-main:     #F1F0FF;
  --text-muted:    #8B8BA7;
  --text-dim:      #4A4A6A;
  --white:         #FFFFFF;

  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     40px;

  --shadow-card:   0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold:   0 4px 24px rgba(201,168,76,0.45);
  --shadow-purple: 0 4px 24px rgba(124,58,237,0.45);

  --font-display:  'Bebas Neue', 'Impact', sans-serif;
  --font-sub:      'Rajdhani', sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition:    0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:         480px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { display: inline-block; flex-shrink: 0; vertical-align: middle; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 18px;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(9,9,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,0.25);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.7); }

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.nav__logo svg { margin-bottom: 1px; }
.nav__logo-icon { color: var(--gold-light); }
.nav__logo-accent { color: var(--gold-light); }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(124,58,237,0.5);
  color: var(--purple-light);
  background: rgba(124,58,237,0.12);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   ANNOUNCEMENT RIBBON
───────────────────────────────────────────── */
.ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--bg-deep);
  text-align: center;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold-pale) 50%, var(--gold-light) 60%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  animation: ribbon-shimmer 3s infinite linear;
}
.ribbon strong { font-weight: 800; }
.ribbon__icon { color: var(--bg-deep); }

@keyframes ribbon-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  padding: 28px 18px 0;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.22) 0%, transparent 65%);
}

/* hero badges */
.hero__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill--fire {
  background: linear-gradient(135deg, var(--gold-base), var(--gold-light));
  color: var(--bg-deep);
}
.pill--hot {
  background: rgba(239,68,68,0.15);
  border: 1px solid var(--red-hot);
  color: #FCA5A5;
  animation: border-pulse 2s infinite;
}
@keyframes border-pulse {
  0%,100% { border-color: var(--red-hot); box-shadow: none; }
  50%      { border-color: #F87171; box-shadow: 0 0 10px rgba(239,68,68,0.35); }
}

/* product visual */
.hero__visual-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 28px;
}
.hero__glow-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(201,168,76,0.6),
    rgba(124,58,237,0.6),
    rgba(201,168,76,0.6)
  );
  filter: blur(24px);
  animation: ring-spin 8s linear infinite;
  z-index: 0;
}
@keyframes ring-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(124,58,237,0.4), 0 0 0 2px rgba(201,168,76,0.3);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* jackpot badge */
.hero__jackpot-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, #0F0F1A, #1A1A2E);
  border: 1.5px solid var(--gold-base);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
  animation: badge-glow 2.5s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,100% { box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
  50%      { box-shadow: 0 6px 32px rgba(201,168,76,0.65); }
}
.jackpot-badge__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.jackpot-badge__amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(245,200,66,0.6);
}

/* hero content */
.hero__content { padding-top: 24px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text-main);
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__title-gold {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(245,200,66,0.5);
}

.hero__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 340px;
  margin: 0 auto 26px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--text-main); }

/* ─────────────────────────────────────────────
   BONUS BLOCK
───────────────────────────────────────────── */
.bonus-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(135deg, rgba(44,27,105,0.5), rgba(15,15,26,0.9));
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 380px;
}
.bonus-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.bonus-block__item--row {
  flex-direction: row;
  gap: 8px;
}
.bonus-block__icon { color: var(--gold-light); margin-bottom: 2px; }
.bonus-block__val {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  line-height: 1;
}
.bonus-block__label {
  display: block;
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
}
.bonus-divider {
  width: 1px;
  height: 24px;
  background: rgba(124,58,237,0.3);
}

/* ─────────────────────────────────────────────
   COUNTDOWN
───────────────────────────────────────────── */
.countdown {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.05), transparent);
  animation: scan 2s linear infinite;
}
@keyframes scan {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.countdown__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.68rem;
  color: #FCA5A5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.2;
}
.countdown__icon { color: var(--red-hot); filter: drop-shadow(0 0 4px rgba(239,68,68,0.5)); }
.countdown__boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.countdown__box {
  background: rgba(15,15,26,0.9);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  min-width: 62px;
  text-align: center;
}
.countdown__box span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-hot);
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(239,68,68,0.6);
}
.countdown__box small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red-hot);
  padding-bottom: 14px;
  text-shadow: 0 0 8px rgba(239,68,68,0.5);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  margin-bottom: 22px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 22px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}
.btn:active { transform: scale(0.97); }

/* Primary — Gold pulsing */
.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
  background-size: 200% 100%;
  animation: btn-shimmer 2.5s linear infinite;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes btn-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 36px rgba(245,200,66,0.6);
}

/* WhatsApp */
.btn--whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  font-size: 0.88rem;
}
.btn--whatsapp:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* Large */
.btn--large { padding: 18px 28px; font-size: 0.95rem; }

/* Sticky */
.btn--sticky { padding: 13px 22px; font-size: 0.85rem; border-radius: var(--radius-xl); }

/* ─────────────────────────────────────────────
   MICRO TRUST
───────────────────────────────────────────── */
.micro-trust {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0 36px;
}
.micro-trust__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.micro-trust__item svg { color: var(--purple-light); }

/* ─────────────────────────────────────────────
   LIVE WINNERS TICKER
───────────────────────────────────────────── */
.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(15,15,26,0.9);
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  overflow: hidden;
  height: 40px;
}
.ticker__label {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-deep);
  background: var(--red-hot);
  height: 100%;
  flex-shrink: 0;
  white-space: nowrap;
  border-right: 2px solid rgba(255,255,255,0.2);
}
.ticker__track {
  overflow: hidden;
  flex: 1;
}
.ticker {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.ticker span {
  font-size: 0.74rem;
  color: var(--text-muted);
  padding: 0 28px;
  border-right: 1px solid rgba(124,58,237,0.15);
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 40px;
}
.ticker span strong { color: var(--green-win); }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   SECTIONS (shared)
───────────────────────────────────────────── */
.section { padding: 52px 0; }

.section__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.1;
}

.section__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 320px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   GAMES SECTION
───────────────────────────────────────────── */
.games { background: var(--bg-dark); }

.game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.4);
  background: var(--bg-card-hover);
}
.game-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.game-card__icon-wrap--purple { background: rgba(124,58,237,0.2); color: var(--purple-light); }
.game-card__icon-wrap--gold   { background: rgba(201,168,76,0.2);  color: var(--gold-light); }
.game-card__icon-wrap--red    { background: rgba(239,68,68,0.2);   color: #F87171; }
.game-card__icon-wrap--green  { background: rgba(34,197,94,0.2);   color: var(--green-win); }

.game-card h3 {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}
.game-card p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.game-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--purple-light);
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   BONUSES SECTION
───────────────────────────────────────────── */
.bonuses { background: var(--bg-deep); }

.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.bonus-promo-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.bonus-promo-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,0.35); }
.bonus-promo-card--featured {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, rgba(44,27,105,0.3), var(--bg-card));
  box-shadow: 0 4px 32px rgba(124,58,237,0.2);
}

.bonus-promo-card__badge {
  position: absolute;
  top: -1px; right: 18px;
  background: linear-gradient(135deg, var(--gold-base), var(--gold-light));
  color: var(--bg-deep);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.bonus-promo-card__icon { color: var(--gold-light); }

.bonus-promo-card h3 {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}
.bonus-promo-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.bonus-promo-card__val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-shadow: 0 0 14px rgba(245,200,66,0.4);
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   WHY US
───────────────────────────────────────────── */
.whyus { background: var(--bg-dark); }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: border-color var(--transition), transform var(--transition);
}
.why-item:hover { border-color: rgba(124,58,237,0.35); transform: translateX(4px); }

.why-item__icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
}
.why-item__text strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.why-item__text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   REVIEWS
───────────────────────────────────────────── */
.reviews { background: var(--bg-deep); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.rating-summary__score {
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(245,200,66,0.4);
}
.stars { display: flex; gap: 3px; color: var(--gold-light); }
.rating-summary__right span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: transform var(--transition), border-color var(--transition);
}
.review-card:hover { transform: translateY(-2px); border-color: rgba(201,168,76,0.25); }

.review-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-base), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--bg-deep);
}
.review-card__header > div:nth-child(2) strong {
  display: block; font-size: 0.88rem; color: var(--text-main);
}
.review-card__loc {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.7rem; color: var(--text-muted);
}
.review-card__loc svg { color: var(--purple-light); }
.review-card__stars { margin-left: auto; display: flex; gap: 2px; color: var(--gold-light); }

.review-card__win {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 7px;
}
.review-card__win strong { color: var(--green-win); }

.review-card__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.review-card__verified {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.67rem; color: var(--green-win); font-weight: 700;
}

/* ─────────────────────────────────────────────
   HOW TO START
───────────────────────────────────────────── */
.howto { background: var(--bg-dark); }

.steps {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 0;
  margin-top: 32px;
  max-width: 380px;
  margin-left: auto; margin-right: auto;
}
.step {
  display: flex; gap: 16px; align-items: flex-start; width: 100%;
}
.step__num {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-vivid));
  border: 2px solid rgba(124,58,237,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-main);
  box-shadow: 0 0 16px rgba(124,58,237,0.3);
}
.step__text { padding-top: 10px; }
.step__text strong {
  display: block; font-size: 0.95rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 4px;
}
.step__text p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

.step__connector {
  width: 2px; height: 28px;
  background: linear-gradient(to bottom, var(--purple-vivid), transparent);
  margin-left: 23px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq { background: var(--bg-deep); }

.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}
.faq-q {
  width: 100%; display: flex; align-items: center;
  padding: 15px 16px; gap: 10px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--text-main); text-align: left;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(124,58,237,0.1); }

.faq-q__icon { color: var(--purple-light); flex-shrink: 0; }
.faq-chevron {
  margin-left: auto; color: var(--gold-base); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q.open .faq-chevron { transform: rotate(90deg); }
.faq-q.open { background: rgba(124,58,237,0.1); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-a p {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.7; padding: 0 16px 16px;
}

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.final-cta {
  background: radial-gradient(ellipse at 50% 0%, rgba(76,42,158,0.35) 0%, var(--bg-deep) 65%);
  padding: 52px 0 100px;
}
.final-cta__card {
  background: linear-gradient(135deg, rgba(44,27,105,0.5) 0%, rgba(15,15,26,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(76,42,158,0.3);
}
.final-cta__glow-top {
  position: absolute;
  top: -1px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-base), var(--purple-vivid), var(--gold-base), transparent);
  border-radius: 24px 24px 0 0;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--text-main);
  margin: 10px 0 22px;
}
.final-cta__title-gold {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(245,200,66,0.4);
}

.final-cta__perks {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-bottom: 26px;
}
.final-cta__perks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: var(--text-muted);
  padding: 5px 0;
}
.final-cta__perks li svg { color: var(--green-win); flex-shrink: 0; }

.final-cta__note {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
  font-size: 0.68rem; color: var(--text-dim); margin-top: 14px; line-height: 1.6;
}
.final-cta__note svg { color: var(--text-muted); }

/* ─────────────────────────────────────────────
   STICKY BOTTOM CTA
───────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(9,9,15,0.97);
  border-top: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__bonus {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}
.sticky-cta__sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(124,58,237,0.15);
  padding: 36px 18px 28px;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--text-main);
  margin-bottom: 4px;
}
.footer__logo-accent { color: var(--gold-light); }
.footer__tagline {
  font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.footer__links {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.footer__links a {
  font-size: 0.75rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__links span { color: var(--text-dim); }
.footer__legal {
  font-size: 0.66rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
[data-anim] { opacity: 0; transition: opacity 0.55s ease, transform 0.55s ease; }
[data-anim="slide-up"]    { transform: translateY(28px); }
[data-anim="slide-right"] { transform: translateX(-20px); }
[data-anim].in-view       { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (min-width: 580px) {
  .hero__visual-wrap { width: 340px; height: 340px; }
  .hero__title { font-size: 3.5rem; }
  .review-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .review-cards .review-card:last-child { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  :root { --max-w: 740px; }
  .hero {
    flex-direction: row; text-align: left; gap: 48px;
    padding: 44px 20px; align-items: center;
  }
  .hero__badges { justify-content: flex-start; }
  .hero__eyebrow, .hero__sub { margin-left: 0; margin-right: 0; }
  .cta-group { align-items: flex-start; }
  .micro-trust { justify-content: flex-start; }
  .hero__visual-wrap { flex-shrink: 0; }
  .hero__content { flex: 1; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .review-cards { grid-template-columns: repeat(3, 1fr); }
  .review-cards .review-card:last-child { grid-column: auto; }
  .bonus-cards { flex-direction: row; }
  .bonus-promo-card { flex: 1; }
}
