@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:wght@400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0e1a;
  --bg2:       #0f1525;
  --bg3:       #151c30;
  --gold:      #f5c842;
  --gold2:     #ffdf6b;
  --gold3:     #c99a00;
  --purple:    #6c3fc5;
  --purple2:   #8b5cf6;
  --teal:      #00c9b1;
  --pink:      #ff6eb4;
  --white:     #ffffff;
  --off:       rgba(255,255,255,0.7);
  --muted:     rgba(255,255,255,0.4);
  --border:    rgba(255,255,255,0.08);
  --r:         16px;
  --r-sm:      10px;
  --r-lg:      24px;
  --shadow:    0 8px 40px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Nunito', sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── STARS BG ── */
body::before {
  content:'';
  position:fixed;
  inset:0;
  background:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 8%,  rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  85%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 33% 70%, rgba(255,255,255,0.5) 0%, transparent 100%);
  pointer-events:none;
  z-index:0;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.nav-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
}
.nav-logo-text em { color: var(--gold); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--off);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-nav-login {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-nav-login:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav-signup {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--gold);
  color: #1a0f00;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  display: inline-block;
}
.btn-nav-signup:hover { background: var(--gold2); transform: scale(1.03); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 16px 44px;
  border-radius: 50px;
  background: var(--gold);
  color: #1a0f00;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(245,200,66,0.35);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,200,66,0.45); }
.btn-secondary {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-sm {
  font-size: 0.88rem;
  padding: 10px 24px;
}

/* ── LAYOUT ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.section { padding: 5rem 0; position: relative; z-index: 1; }
.section-sm { padding: 3rem 0; }

/* ── GLOW ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-gold  { background: rgba(245,200,66,0.18); }
.orb-purple{ background: rgba(108,63,197,0.22); }
.orb-teal  { background: rgba(0,201,177,0.15); }
.orb-pink  { background: rgba(255,110,180,0.12); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  max-width: 820px;
  margin: 0 auto 1.25rem;
}
.hero h1 .line-gold { color: var(--gold); display: block; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--off);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(245,200,66,0.1);
  border: 1.5px solid rgba(245,200,66,0.3);
  border-radius: 50px;
  padding: 10px 24px 10px 12px;
  margin-bottom: 2rem;
}
.hbp-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hbp-text strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold);
}
.hbp-text span { font-size: 0.78rem; color: var(--muted); }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-disclaimer {
  font-size: 0.73rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-disclaimer a { color: rgba(245,200,66,0.6); text-decoration: underline; }

/* SLOT REEL ILLUSTRATION */
.reel-showcase {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.reel-card {
  width: 100px;
  height: 100px;
  border-radius: var(--r);
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 2.2rem;
  position: relative;
  overflow: hidden;
}
.reel-card::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg,rgba(255,255,255,0.04) 0%,transparent 60%);
}
.reel-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 1.25rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--off);
  white-space: nowrap;
}
.trust-icon { font-size: 1.1rem; }

/* ── HOW IT WORKS ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.section-sub {
  font-size: 1rem;
  color: var(--off);
  max-width: 520px;
  line-height: 1.7;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: rgba(245,200,66,0.35); transform: translateY(-3px); }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,200,66,0.15);
  border: 2px solid rgba(245,200,66,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.step-card p { font-size: 0.87rem; color: var(--off); line-height: 1.6; }

/* ── COIN EXPLAINER ── */
.coin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.coin-card {
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.coin-card.gc {
  background: linear-gradient(135deg, #1a1500 0%, #2a2000 100%);
  border: 1px solid rgba(245,200,66,0.3);
}
.coin-card.sc {
  background: linear-gradient(135deg, #001525 0%, #002035 100%);
  border: 1px solid rgba(0,201,177,0.3);
}
.coin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.gc .coin-badge { background: rgba(245,200,66,0.2); color: var(--gold); }
.sc .coin-badge { background: rgba(0,201,177,0.2); color: var(--teal); }
.coin-card h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.gc h3 { color: var(--gold); }
.sc h3 { color: var(--teal); }
.coin-card p { font-size: 0.9rem; color: var(--off); line-height: 1.65; margin-bottom: 1.25rem; }
.coin-perks { list-style: none; }
.coin-perks li {
  font-size: 0.87rem;
  color: var(--off);
  padding: 5px 0;
  padding-left: 1.4rem;
  position: relative;
}
.gc .coin-perks li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 7px; }
.sc .coin-perks li::before { content: '✦'; position: absolute; left: 0; color: var(--teal); font-size: 0.7rem; top: 7px; }

/* ── GAMES LOBBY ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.game-tile {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.game-tile:hover {
  border-color: rgba(245,200,66,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.game-tile::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg,rgba(255,255,255,0.03) 0%,transparent 60%);
}
.game-emoji { font-size: 2.8rem; margin-bottom: 0.75rem; }
.game-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; margin-bottom: 4px; color: var(--white); }
.game-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
}
.game-tag.jackpot { background: rgba(245,200,66,0.15); color: var(--gold); }
.game-tag.new     { background: rgba(0,201,177,0.15); color: var(--teal); }
.game-tag.hot     { background: rgba(255,110,180,0.15); color: var(--pink); }
.game-tag.classic { background: rgba(108,63,197,0.15); color: var(--purple2); }

/* ── BONUS CARDS ── */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.bonus-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
}
.bonus-card:hover { border-color: rgba(245,200,66,0.35); transform: translateY(-3px); }
.bonus-card.featured {
  border-color: rgba(245,200,66,0.5);
  background: linear-gradient(160deg,rgba(245,200,66,0.08) 0%,var(--bg3) 50%);
}
.bonus-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a0f00;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 3px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.bonus-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.bonus-amount {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1.1;
}
.bonus-label { font-size: 0.82rem; color: var(--off); margin-bottom: 0.75rem; }
.bonus-price { font-size: 0.8rem; color: var(--muted); font-weight: 700; }

/* ── CTA BANNER ── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0f00 0%, #0f1525 50%, #0a001a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 6rem 2rem;
}
.cta-section h2 { font-size: clamp(1.8rem,4vw,3rem); font-weight:900; margin-bottom:1rem; }
.cta-section h2 em { color:var(--gold); font-style:normal; }
.cta-section p { color:var(--off); margin-bottom:2.5rem; font-size:1.05rem; max-width:480px; margin-left:auto; margin-right:auto; }
.cta-badges { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-top:2rem; }
.cta-badge {
  display:flex; align-items:center; gap:6px;
  background:rgba(255,255,255,0.06);
  border:1px solid var(--border);
  border-radius:50px;
  padding:7px 16px;
  font-size:0.8rem;
  font-weight:700;
  color:var(--off);
}

/* ── STATES ── */
.states-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:1.5rem; }
.state-ok  { background:rgba(0,201,177,0.12); color:var(--teal); font-size:.78rem; font-weight:700; padding:5px 12px; border-radius:8px; border:1px solid rgba(0,201,177,0.2); }
.state-no  { background:rgba(255,80,80,0.1); color:#ff7070; font-size:.78rem; font-weight:700; padding:5px 12px; border-radius:8px; border:1px solid rgba(255,80,80,0.2); }

/* ── FAQ ── */
.faq-list { margin-top:2rem; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q {
  padding:1.1rem 0; font-weight:700; font-size:.95rem;
  cursor:pointer; display:flex; justify-content:space-between;
  align-items:center; color:var(--white); user-select:none;
  gap:1rem;
}
.faq-q::after { content:'+'; font-size:1.4rem; color:var(--gold); font-weight:400; flex-shrink:0; transition:transform .2s; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a { display:none; padding-bottom:1rem; font-size:.9rem; color:var(--off); line-height:1.7; }
.faq-item.open .faq-a { display:block; }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand p { font-size:.83rem; color:var(--muted); margin-top:.75rem; line-height:1.7; max-width:260px; }
.footer-col h5 { font-family:'Nunito',sans-serif; font-weight:800; font-size:.78rem; text-transform:uppercase; letter-spacing:1.5px; color:var(--muted); margin-bottom:1rem; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:.5rem; }
.footer-col ul li a { font-size:.84rem; color:rgba(255,255,255,.45); transition:color .2s; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid var(--border);
  padding:1.5rem 0;
  font-size:.73rem;
  color:var(--muted);
  line-height:1.7;
}
.footer-bottom strong { color:rgba(255,255,255,.5); }
.footer-badges { display:flex; gap:8px; flex-wrap:wrap; margin-top:1rem; }
.footer-badge {
  font-size:.68rem; font-weight:700; padding:4px 12px;
  border-radius:50px; border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.35);
}
.footer-badge.gold { border-color:rgba(245,200,66,.25); color:rgba(245,200,66,.6); }

/* ── INNER PAGE HERO ── */
.inner-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.inner-hero h1 { font-size:clamp(1.8rem,4vw,3rem); font-weight:900; margin-bottom:.75rem; }
.inner-hero h1 em { color:var(--gold); font-style:normal; }
.inner-hero p { color:var(--off); font-size:1rem; max-width:520px; margin:0 auto; }
.page-disc { background:rgba(255,80,80,0.08); border:1px solid rgba(255,80,80,0.2); border-radius:8px; padding:.75rem 1.25rem; font-size:.75rem; color:rgba(255,150,150,.8); text-align:center; margin-bottom:1.5rem; }

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .steps-grid { grid-template-columns:repeat(2,1fr); }
  .bonus-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:680px){
  .nav-links { display:none; }
  .coin-grid { grid-template-columns:1fr; }
  .games-grid { grid-template-columns:repeat(2,1fr); }
  .steps-grid { grid-template-columns:1fr; }
  .bonus-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .trust-inner { gap:1.25rem; }
  .hero h1 { font-size:2.2rem; }
  .cta-section { padding:4rem 1.5rem; }
}
