/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #05080a;
  --bg-1:      #0a0f11;
  --bg-2:      #0e1518;
  --bg-3:      #131c20;
  --acc:       #2fe6a8;
  --acc-lt:    #7ffcd0;
  --acc-dp:    #10b083;
  --star:      #f2c14e;
  --text:      #e6efec;
  --muted:     #7c8a86;
  --line:      rgba(47, 230, 168, 0.12);
  --btn-ink:   #04140f;
  --radius:    16px;
  --radius-s:  10px;
  --grad:      linear-gradient(135deg, #7ffcd0 0%, #2fe6a8 45%, #10b083 100%);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(760px circle at 50% -8%, rgba(47,230,168,0.08), transparent 60%),
    radial-gradient(600px circle at 92% 40%, rgba(47,230,168,0.04), transparent 55%);
  pointer-events: none;
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Shared buttons ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: var(--btn-ink);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 10px 34px rgba(47,230,168,.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 46px rgba(47,230,168,.4); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .2s;
}
.btn-ghost:hover { border-color: rgba(47,230,168,.45); color: var(--acc-lt); }

/* ── Header ────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 8, 10, 0.8);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 70px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, rgba(47,230,168,0.16), rgba(47,230,168,0.03));
  border: 1px solid rgba(47,230,168,0.26);
  border-radius: 11px;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.nav { display: flex; gap: 2px; margin-left: auto; }
.nav-link {
  padding: 8px 15px;
  border-radius: var(--radius-s);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s;
}
.nav-link:hover { color: var(--acc-lt); background: rgba(47,230,168,0.06); }

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--acc-lt);
  background: rgba(47,230,168,0.08);
  border: 1px solid rgba(47,230,168,0.28);
  padding: 9px 17px;
  border-radius: 100px;
  transition: all .2s;
}
.header-btn:hover { background: rgba(47,230,168,0.14); }
.hb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 0 rgba(47,230,168,.5);
  animation: pulse-acc 1.6s ease-in-out infinite;
}
@keyframes pulse-acc {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,230,168,.5); }
  50% { box-shadow: 0 0 0 6px rgba(47,230,168,0); }
}

/* ── Hero (centered) ───────────────────────────────── */
.hero { position: relative; padding: 92px 0 60px; overflow: hidden; }

.hero-glow {
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 520px;
  background: radial-gradient(ellipse at center, rgba(47,230,168,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-rings {
  position: absolute;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 720px;
  background:
    radial-gradient(circle, transparent 0 219px, rgba(47,230,168,.05) 220px 221px, transparent 222px),
    radial-gradient(circle, transparent 0 319px, rgba(47,230,168,.04) 320px 321px, transparent 322px);
  border-radius: 50%;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 72%);
}

.hero-inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--acc-lt);
  background: rgba(47,230,168,.06);
  border: 1px solid rgba(47,230,168,.2);
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.tag-star { color: var(--star); }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5.6vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

/* Lead strip (top-3) */
.lead-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 960px;
}
.lead-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  transition: transform .3s, border-color .3s;
}
.lead-card:hover { transform: translateY(-6px); border-color: rgba(47,230,168,.4); }
.lead-1 {
  border-color: rgba(47,230,168,.4);
  box-shadow: 0 24px 60px -28px rgba(47,230,168,.5);
}
.lead-1::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(180deg, rgba(47,230,168,.55), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.lead-badge {
  position: absolute;
  top: -11px; left: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--grad);
  color: var(--btn-ink);
}
.lead-badge.alt {
  background: rgba(47,230,168,.1);
  color: var(--acc-lt);
  border: 1px solid rgba(47,230,168,.28);
}

.lead-body { display: flex; align-items: center; gap: 14px; }
.lead-logo {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.5);
}
.lead-logo img { width: 40px; height: 40px; object-fit: contain; }
.lead-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: #fff; }
.lead-stars { font-size: 13px; color: var(--star); letter-spacing: 1.5px; margin-top: 3px; }
.lead-rv { color: var(--muted); font-size: 12px; letter-spacing: 0; margin-left: 3px; }

.lead-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.lead-1 .lead-amount {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: #fff;
  transition: all .2s;
  margin-top: auto;
}
.lead-btn:hover { background: rgba(47,230,168,.1); border-color: rgba(47,230,168,.4); }
.lead-1 .lead-btn {
  background: var(--grad); border: none; color: var(--btn-ink);
  box-shadow: 0 8px 24px rgba(47,230,168,.3);
}
.lead-1 .lead-btn:hover { transform: translateY(-2px); }

.star-dim { opacity: .26; }

/* ── Stats band ────────────────────────────────────── */
.stats-band {
  background: linear-gradient(90deg, transparent, rgba(47,230,168,.04), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-big::after { content: 'K'; color: var(--acc); }
.stat-star { color: var(--acc-lt); }
.stat-star span { color: var(--star); font-size: 26px; margin-left: 2px; }
.stat-lbl { font-size: 12.5px; color: var(--muted); letter-spacing: .2px; }

/* ── Section head ──────────────────────────────────── */
.sec-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 44px; gap: 12px;
}
.sec-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.6px; color: var(--acc);
  background: rgba(47,230,168,.07);
  border: 1px solid rgba(47,230,168,.22);
  padding: 5px 15px; border-radius: 100px;
}
.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700; color: #fff; letter-spacing: -0.6px;
}
.sec-desc { font-size: 15px; color: var(--muted); max-width: 540px; }

/* ── How it works ──────────────────────────────────── */
.how-section { padding: 84px 0 20px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .3s, border-color .3s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(47,230,168,.35); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(47,230,168,.28);
  line-height: 1; margin-bottom: 18px;
}
.step-ico {
  position: absolute;
  top: 30px; right: 26px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(47,230,168,.08);
  border: 1px solid rgba(47,230,168,.25);
  border-radius: 10px;
  color: var(--star); font-size: 14px;
}
.step-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Showcase / Витрина (leaderboard) ──────────────── */
.showcase-section { padding: 84px 0 20px; }

.filter-tabs { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.ftab {
  padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--line);
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.ftab:hover { color: var(--text); border-color: rgba(47,230,168,.3); }
.ftab.active { background: var(--grad); border-color: transparent; color: var(--btn-ink); }

.bk-list { display: flex; flex-direction: column; gap: 10px; }

.bk-row {
  display: grid;
  grid-template-columns: 40px 54px 1fr auto 120px;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.bk-row:hover {
  transform: translateX(5px);
  border-color: rgba(47,230,168,.4);
  box-shadow: 0 18px 40px -26px rgba(47,230,168,.5);
}
.bk-row.hidden { display: none; }
.bk-top { border-color: rgba(47,230,168,.24); }

.bk-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,.18);
  text-align: center;
}
.bk-top:nth-child(1) .bk-rank {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bk-top .bk-rank { color: var(--acc); }

.bk-logo {
  width: 54px; height: 54px;
  background: #fff; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 5px 18px rgba(0,0,0,.45);
}
.bk-logo img { width: 42px; height: 42px; object-fit: contain; }

.bk-main { min-width: 0; }
.bk-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 17px; color: #fff;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.bk-meta { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.bk-stars { color: var(--star); letter-spacing: 1px; margin-right: 4px; }

.bk-badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 10.5px; font-weight: 700; white-space: nowrap;
}
.badge-bonus   { background: rgba(47,230,168,.1);  color: var(--acc-lt); border: 1px solid rgba(47,230,168,.25); }
.badge-freebet { background: rgba(120,180,255,.08); color: #9cc4ff;      border: 1px solid rgba(120,180,255,.2); }
.badge-promo   { background: rgba(242,193,78,.1);   color: var(--star);   border: 1px solid rgba(242,193,78,.25); }

.bk-bonus { text-align: right; }
.bk-amount { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 21px; color: #fff; letter-spacing: -0.5px; }
.bk-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }

.bk-btn {
  display: block; text-align: center;
  padding: 12px; border-radius: var(--radius-s);
  font-weight: 700; font-size: 13.5px;
  background: var(--grad); color: var(--btn-ink);
  transition: transform .2s, box-shadow .2s;
}
.bk-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(47,230,168,.32); }

/* ── Reviews ───────────────────────────────────────── */
.reviews-section { padding: 84px 0 20px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s, border-color .3s;
}
.review:hover { transform: translateY(-5px); border-color: rgba(47,230,168,.3); }
.rv-stars { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.rv-text { font-size: 14.5px; color: var(--text); line-height: 1.7; flex: 1; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-ava {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px;
  color: var(--btn-ink); background: var(--grad);
}
.rv-name { font-weight: 700; font-size: 14.5px; color: #fff; }
.rv-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-section { padding: 84px 0 20px; }
.faq-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.faq-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; }
.faq-side .sec-tag { align-self: flex-start; }
.faq-side .sec-title { text-align: left; }
.faq-side .sec-desc { text-align: left; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(47,230,168,.25); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 19px 24px; background: none; border: none; color: var(--text);
  font-size: 15.5px; font-weight: 600; cursor: pointer; text-align: left;
  transition: color .2s; font-family: inherit; gap: 12px;
}
.faq-q:hover { color: var(--acc-lt); }
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--acc); }
.faq-q.open svg { transform: rotate(180deg); }
.faq-q.open { color: var(--acc-lt); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--muted); line-height: 1.8;
  transition: all .3s ease;
}
.faq-a.open { max-height: 220px; padding: 0 24px 20px; }

/* ── CTA banner ────────────────────────────────────── */
.cta-banner { padding: 84px 0 0; }
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--bg-2), var(--bg-3));
  border: 1px solid rgba(47,230,168,.28);
  border-radius: 24px;
  padding: 44px 48px;
  overflow: hidden;
}
.cta-glow {
  position: absolute; top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(47,230,168,.16), transparent 65%);
  pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.cta-sub { font-size: 15px; color: var(--muted); margin-top: 8px; }
.cta-btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ── Footer ────────────────────────────────────────── */
.footer { margin-top: 84px; background: var(--bg-1); border-top: 1px solid var(--line); padding: 52px 0 26px; }
.footer-top { display: flex; gap: 60px; padding-bottom: 38px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 4px; }
.footer-desc { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.7; }
.footer-links { display: flex; gap: 56px; margin-left: auto; }
.fl-col { display: flex; flex-direction: column; gap: 11px; }
.fl-title { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--acc); margin-bottom: 4px; }
.fl-col a { font-size: 13.5px; color: var(--muted); transition: color .2s; }
.fl-col a:hover { color: var(--acc-lt); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--muted); line-height: 1.5; max-width: 620px; }
.footer-copy { font-weight: 700; white-space: nowrap; color: var(--text); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 940px) {
  .lead-strip { grid-template-columns: 1fr; max-width: 440px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .stat:nth-child(3) { border-left: none; }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .faq-side { position: static; }
  .faq-side .sec-title, .faq-side .sec-desc { text-align: center; }
  .faq-side { align-items: center; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 620px) {
  .nav { display: none; }
  .hero { padding: 52px 0 40px; }
  .stats-inner { gap: 24px 16px; }
  .stat-val { font-size: 32px; }
  .bk-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "rank main bonus"
      "logo main btn";
    gap: 8px 14px;
    padding: 16px;
  }
  .bk-rank { grid-area: rank; align-self: start; font-size: 18px; }
  .bk-logo { grid-area: logo; width: 44px; height: 44px; }
  .bk-logo img { width: 34px; height: 34px; }
  .bk-main { grid-area: main; }
  .bk-bonus { grid-area: bonus; }
  .bk-amount { font-size: 17px; }
  .bk-btn { grid-area: btn; padding: 10px 16px; align-self: end; }
  .cta-inner { padding: 32px 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
