@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Exo+2:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ================================================
   RESET & ROOT
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ─── Dark Green Palette ─── */
  --bg:       #020904;
  --bg-2:     #030c06;
  --bg-3:     #040e07;
  --card:     #071614;
  --card-2:   #0a1c17;

  --g-800:    #14532d;
  --g-700:    #15803d;
  --g-600:    #16a34a;
  --g-500:    #22c55e;
  --g-400:    #4ade80;
  --g-glow:   rgba(34,197,94,.22);

  --white:    #f0fdf4;
  --muted:    #86efac;
  --gray:     #4b7c5e;
  --dim:      #2d4a38;

  --border:   rgba(34,197,94,.12);
  --border-b: rgba(34,197,94,.38);

  --grad-g:    linear-gradient(135deg, #14532d 0%, #22c55e 100%);
  --grad-text: linear-gradient(90deg, #4ade80, #22c55e, #a7f3d0);
  --grad-hero: linear-gradient(135deg, #14532d, #16a34a, #22c55e);

  --s-green: 0 0 30px rgba(34,197,94,.35), 0 0 80px rgba(34,197,94,.1);
  --s-card:  0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(34,197,94,.1);

  --ease: cubic-bezier(.4,0,.2,1);
  --t-f:  .18s var(--ease);
  --t-n:  .36s var(--ease);
  --t-s:  .65s var(--ease);

  --r-sm:  6px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-full: 9999px;
  --max: 1220px;
  --pad: 96px 0;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* custom cursor active */
}
@media (hover: none) { body { cursor: auto; } }

h1,h2,h3,h4,h5 { font-family: 'Exo 2', sans-serif; font-weight: 700; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: none; }
@media (hover: none) { button { cursor: pointer; } }

/* ================================================
   CUSTOM CURSOR
   ================================================ */
#cursor {
  position: fixed; pointer-events: none; z-index: 99999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g-500);
  box-shadow: 0 0 10px var(--g-500), 0 0 20px rgba(34,197,94,.4);
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  will-change: left, top;
}
#cursor-ring {
  position: fixed; pointer-events: none; z-index: 99998;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(34,197,94,.4);
  transform: translate(-50%,-50%);
  transition: left .1s var(--ease), top .1s var(--ease), width .3s, height .3s, border-color .3s;
  will-change: left, top;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 14px; height: 14px; }
body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 44px; height: 44px; border-color: rgba(34,197,94,.6); }

/* ================================================
   UTILITIES
   ================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.sec-tag {
  display: inline-block;
  font-family: 'Exo 2', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--g-500); border-left: 3px solid var(--g-500);
  padding: 2px 0 2px 12px; margin-bottom: 20px;
}
.sec-title { font-size: clamp(28px,4vw,52px); margin-bottom: 14px; }
.gtext {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sec-sub { font-size: 17px; color: var(--gray); max-width: 560px; }

/* Reveal — scale+fade instead of translate */
.rev, .rev-l, .rev-r {
  opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rev   { transform: scale(.96); }
.rev-l { transform: translateX(-40px) scale(.98); }
.rev-r { transform: translateX(40px) scale(.98); }
.rev.in, .rev-l.in, .rev-r.in { opacity: 1; transform: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Exo 2', sans-serif; font-size: 15px; font-weight: 700;
  padding: 14px 34px; border-radius: var(--r-sm); border: none;
  cursor: none; position: relative; overflow: hidden; transition: all var(--t-f);
}
.btn-g {
  background: var(--grad-g); color: #020904;
  box-shadow: 0 0 28px var(--g-glow);
}
.btn-g:hover { transform: translateY(-3px); box-shadow: var(--s-green); }
.btn-g::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-g:hover::after { transform: translateX(100%); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--border-b);
}
.btn-outline:hover { background: rgba(34,197,94,.08); border-color: var(--g-500); transform: translateY(-3px); }

/* ================================================
   SCROLL PROGRESS
   ================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--grad-g); z-index: 9999; width: 0;
  box-shadow: 0 0 10px var(--g-glow); transition: width .1s linear;
}

/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: all var(--t-n);
}
#navbar.scrolled {
  background: rgba(2,9,4,.96); backdrop-filter: blur(24px);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', 'Exo 2', sans-serif;
  font-size: 26px; letter-spacing: 2px; cursor: none;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--grad-g); display: flex; align-items: center;
  justify-content: center; font-size: 18px; color: #020904; font-weight: 900;
}
.nav-logo-text { color: var(--g-400); }
.nav-links { display: flex; list-style: none; gap: 2px; }
.nav-links a {
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--gray); letter-spacing: .5px; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-sm); transition: all var(--t-f);
}
.nav-links a:hover { color: var(--g-400); background: rgba(34,197,94,.08); }
.nav-cta {
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 700;
  color: #020904; background: var(--grad-g);
  padding: 9px 22px; border-radius: var(--r-sm); letter-spacing: .5px;
  box-shadow: 0 0 20px var(--g-glow); transition: all var(--t-f);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--s-green); }
.nav-18 {
  font-size: 11px; font-weight: 700; color: rgba(239,68,68,.8);
  border: 1px solid rgba(239,68,68,.4); border-radius: 4px;
  padding: 2px 6px; flex-shrink: 0;
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 8px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t-f); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(2,9,4,.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-family: 'Bebas Neue', 'Exo 2', sans-serif; font-size: 36px; letter-spacing: 3px; color: var(--white); transition: color var(--t-f); }
#mobile-menu a:hover { color: var(--g-400); }
#mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--gray); font-size: 34px; cursor: none; }

/* ================================================
   HERO
   ================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 70% at 15% 55%, rgba(22,163,74,.12) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 85% 35%, rgba(20,83,45,.09) 0%, transparent 55%),
    var(--bg);
}
/* Watermark */
.hero-wm {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; user-select: none; overflow: hidden;
}
.hero-wm span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 20vw, 320px);
  letter-spacing: -5px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(34,197,94,.055);
  white-space: nowrap;
  animation: wm-drift 8s ease-in-out infinite;
}
@keyframes wm-drift { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-10px) scale(1.005)} }

/* Diagonal overlay line */
.hero-line {
  position: absolute; top: 0; right: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--g-700), transparent);
  opacity: .4;
}
.hero-line-2 {
  right: 44%;
  background: linear-gradient(to bottom, transparent 0%, var(--g-600) 40%, transparent 100%);
  opacity: .12; width: 1px;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 140px 28px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--g-500);
  margin-bottom: 24px; animation: fadeInUp .7s both;
}
.hero-kicker::before {
  content: ''; width: 32px; height: 1px; background: var(--g-500);
}
.live-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: live-ring 2s infinite;
}
@keyframes live-ring { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.5)} 70%{box-shadow:0 0 0 8px rgba(34,197,94,0)} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0)} }

.hero-h1 {
  font-family: 'Bebas Neue', 'Exo 2', sans-serif;
  font-size: clamp(38px, 4.8vw, 64px);
  letter-spacing: 2px; line-height: .95;
  margin-bottom: 28px;
  animation: fadeInUp .7s .15s both;
}
.hero-h1 em {
  font-style: normal; display: block;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--gray); line-height: 1.8;
  max-width: 440px; margin-bottom: 38px;
  animation: fadeInUp .7s .28s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  animation: fadeInUp .7s .4s both;
}
.hero-badge-online {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--gray);
}
.hero-stats-row {
  display: flex; gap: 36px; margin-top: 56px; padding-top: 36px;
  border-top: 1px solid var(--border);
  animation: fadeInUp .7s .52s both;
}
.hsr-item {}
.hsr-val { font-family: 'Bebas Neue', 'Exo 2', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--g-400); }
.hsr-lbl { font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: 2px; margin-top: 2px; }

/* Hero right — decorative visual */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: fadeInRight .8s .35s both;
}
.hero-circle-wrap {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.h-circle-outer {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(34,197,94,.12);
  animation: spin-slow 30s linear infinite;
}
.h-circle-outer::before {
  content: ''; position: absolute; inset: 16px; border-radius: 50%;
  border: 1px dashed rgba(34,197,94,.08);
}
.h-circle-inner {
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.08) 0%, transparent 70%);
  border: 1px solid rgba(34,197,94,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: rgba(34,197,94,.15);
}
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* Playing card fan */
.card-fan { position: absolute; inset: 0; pointer-events: none; }
.dcard {
  position: absolute; width: 120px; height: 165px; border-radius: 12px;
  background: linear-gradient(135deg, #071614, #0d2218);
  border: 1px solid rgba(34,197,94,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.dcard-1 { top: 28px; left: 22px; transform: rotate(-22deg); animation: dcard1 5s ease-in-out infinite; }
.dcard-2 { top: 60px; left: 118px; transform: rotate(-8deg); animation: dcard2 6s ease-in-out infinite .4s; z-index: 2; }
.dcard-3 { top: 44px; right: 22px; transform: rotate(14deg); animation: dcard3 4.5s ease-in-out infinite .8s; }
.dcard-4 { bottom: 36px; left: 50%; transform: translateX(-50%) rotate(3deg); animation: dcard4 7s ease-in-out infinite .3s; z-index: 3; }
@keyframes dcard1 { 0%,100%{transform:rotate(-22deg) translateY(0)} 50%{transform:rotate(-20deg) translateY(-9px)} }
@keyframes dcard2 { 0%,100%{transform:rotate(-8deg) translateY(0)} 50%{transform:rotate(-6deg) translateY(-12px)} }
@keyframes dcard3 { 0%,100%{transform:rotate(14deg) translateY(0)} 50%{transform:rotate(13deg) translateY(-7px)} }
@keyframes dcard4 { 0%,100%{transform:translateX(-50%) rotate(3deg)} 50%{transform:translateX(-50%) rotate(2deg) translateY(-6px)} }

/* Game image in circle center */
.hero-game-img {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 180px; height: 220px; object-fit: cover; border-radius: 14px;
  border: 1px solid rgba(34,197,94,.2); box-shadow: 0 0 40px rgba(0,0,0,.7), 0 0 20px rgba(34,197,94,.12);
  z-index: 4;
}

/* hero bottom arrow */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--dim); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  animation: fadeIn 1s 1.2s both;
}
.scroll-chevron { color: var(--g-700); font-size: 22px; animation: chevron-down 1.8s infinite; }
@keyframes chevron-down { 0%,100%{transform:translateY(0);opacity:.4} 50%{transform:translateY(5px);opacity:1} }

/* ================================================
   TRUST BAR
   ================================================ */
#trust-bar {
  background: linear-gradient(90deg, #0a1c11, #0d2415, #0a1c11);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-row {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 32px; border-right: 1px solid var(--border);
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--gray); letter-spacing: .5px;
}
.trust-item:last-child { border-right: none; }
.trust-item span { color: var(--g-500); font-size: 18px; }

/* ================================================
   FEATURES — Editorial numbered list
   ================================================ */
#features { padding: var(--pad); background: var(--bg-2); }
.feat-header { max-width: 580px; margin-bottom: 70px; }
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.feat-item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 36px 40px; border: 1px solid transparent;
  position: relative; transition: all var(--t-n);
  border-bottom: 1px solid var(--border);
}
.feat-item:nth-child(odd) { border-right: 1px solid var(--border); }
.feat-item::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(34,197,94,.04); opacity: 0; transition: opacity var(--t-n);
}
.feat-item:hover::before { opacity: 1; }
.feat-num {
  font-family: 'Bebas Neue', 'Exo 2', sans-serif;
  font-size: 64px; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(34,197,94,.25);
  min-width: 80px; transition: -webkit-text-stroke-color var(--t-n);
  user-select: none;
}
.feat-item:hover .feat-num { -webkit-text-stroke-color: rgba(34,197,94,.6); }
.feat-body { flex: 1; }
.feat-title {
  font-family: 'Exo 2', sans-serif; font-size: 18px; font-weight: 700;
  margin-bottom: 10px; transition: color var(--t-f);
}
.feat-item:hover .feat-title { color: var(--g-400); }
.feat-text { font-size: 14px; color: var(--gray); line-height: 1.8; }

/* ================================================
   GAMES — Horizontal carousel
   ================================================ */
#games { padding: var(--pad); background: var(--bg-3); }
.games-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.games-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.gpill {
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--gray); background: rgba(34,197,94,.06);
  border: 1px solid var(--border); padding: 8px 20px; border-radius: var(--r-sm);
  cursor: none; transition: all var(--t-f); letter-spacing: .5px;
}
.gpill.active, .gpill:hover { color: #020904; background: var(--g-600); border-color: var(--g-600); }
.games-arrows { display: flex; gap: 8px; }
.g-arr {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(34,197,94,.08); border: 1px solid var(--border);
  color: var(--g-400); font-size: 18px; display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all var(--t-f);
}
.g-arr:hover { background: var(--g-700); border-color: var(--g-600); color: var(--white); }

.games-carousel-wrap { position: relative; overflow: hidden; }
.games-carousel {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scroll-behavior: smooth;
  scrollbar-width: thin; scrollbar-color: rgba(34,197,94,.3) transparent;
}
.games-carousel::-webkit-scrollbar { height: 4px; }
.games-carousel::-webkit-scrollbar-track { background: transparent; }
.games-carousel::-webkit-scrollbar-thumb { background: rgba(34,197,94,.3); border-radius: 4px; }

.g-slide {
  flex: 0 0 200px; scroll-snap-align: start;
  border-radius: var(--r-md); overflow: hidden;
  position: relative; cursor: none; aspect-ratio: 3/4;
  background: var(--card); border: 1px solid var(--border);
  transition: transform var(--t-n), border-color var(--t-n), box-shadow var(--t-n);
}
.g-slide:hover { transform: translateY(-8px) scale(1.02); border-color: var(--g-600); box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 20px var(--g-glow); }
.g-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-s); }
.g-slide:hover img { transform: scale(1.08); }
.g-slide-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,9,4,.95) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
  opacity: 0; transition: opacity var(--t-n);
}
.g-slide:hover .g-slide-over { opacity: 1; }
.gname { font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.g-play-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 700;
  color: #020904; background: var(--g-500); padding: 6px 16px;
  border-radius: var(--r-sm); border: none; cursor: none; width: fit-content;
}
.g-tag {
  position: absolute; top: 10px; right: 10px;
  font-family: 'Exo 2', sans-serif; font-size: 9px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.g-tag.rtp  { background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3); color: var(--g-400); }
.g-tag.live { background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); color: #f87171; }
.g-tag.jack { background: rgba(234,179,8,.12); border: 1px solid rgba(234,179,8,.3); color: #fde047; }

/* ================================================
   BONUSES — 3 tall panels
   ================================================ */
#bonuses { padding: var(--pad); background: var(--bg-2); }
.bonuses-panels {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.bonus-panel {
  padding: 52px 36px; position: relative; overflow: hidden;
  border-right: 1px solid var(--border); text-align: center;
  transition: background var(--t-n);
  background: var(--card);
}
.bonus-panel:last-child { border-right: none; }
.bonus-panel.hot {
  background: linear-gradient(160deg, rgba(22,163,74,.12), rgba(14,83,45,.08));
}
.bonus-panel.hot::before {
  content: 'ТОП'; position: absolute; top: 20px; right: -26px;
  background: var(--grad-g); color: #020904;
  font-family: 'Exo 2', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 2px;
  padding: 5px 36px; transform: rotate(45deg);
}
.bonus-panel:hover { background: rgba(22,163,74,.07); }
.bp-icon { font-size: 52px; display: block; margin-bottom: 22px; }
.bp-amount {
  font-family: 'Bebas Neue', 'Exo 2', sans-serif;
  font-size: 52px; letter-spacing: 2px; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.bp-title { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.bp-desc { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 30px; }
.bp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 700;
  color: #020904; background: var(--grad-g); padding: 13px 28px;
  border-radius: var(--r-sm); border: none; cursor: none; width: 100%;
  transition: all var(--t-f); box-shadow: 0 0 20px var(--g-glow);
}
.bp-btn:hover { transform: translateY(-3px); box-shadow: var(--s-green); }
.bp-note { font-size: 11px; color: var(--dim); margin-top: 12px; }

/* ================================================
   STATS — Minimal big numbers
   ================================================ */
#stats {
  padding: 80px 0; background: var(--bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.st-item {
  text-align: center; padding: 40px 16px;
  border-right: 1px solid var(--border);
  position: relative;
}
.st-item:last-child { border-right: none; }
.st-item::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 24px; height: 2px; background: var(--g-600);
}
.st-val {
  font-family: 'Bebas Neue', 'Exo 2', sans-serif;
  font-size: clamp(38px,5vw,64px); letter-spacing: 2px;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 10px;
}
.st-lbl { font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: 3px; }

/* ================================================
   TEXT CONTENT — 2-column editorial
   ================================================ */
#text-content { padding: var(--pad); background: var(--bg-2); }
.text-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start;
}
.text-body > h2:first-child {
  font-size: clamp(24px,3.5vw,38px); margin-bottom: 24px; margin-top: 0;
}
.text-body > h2:first-child::before { display: none; }
.text-body h2 {
  font-size: 24px; margin-top: 50px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.text-body h2::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--g-600); flex-shrink: 0;
}
.text-body h3 { font-size: 18px; margin-top: 28px; margin-bottom: 12px; color: var(--g-400); }
.text-body p  { font-size: 15px; color: var(--gray); line-height: 1.9; margin-bottom: 18px; }
.text-body strong { color: var(--white); font-weight: 600; }
.text-body ol, .text-body ul { padding-left: 22px; margin-bottom: 18px; }
.text-body li { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 8px; }
.text-body li::marker { color: var(--g-500); }
.text-box {
  background: rgba(34,197,94,.06); border-left: 3px solid var(--g-600);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 22px 24px; margin: 24px 0;
}
/* Sidebar */
.text-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 24px;
}
.sidebar-card h4 {
  font-family: 'Exo 2', sans-serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--g-500); margin-bottom: 18px;
}
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sidebar-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray);
}
.sidebar-list li::before { content: '▸'; color: var(--g-500); flex-shrink: 0; }

/* ================================================
   STEPS — Vertical left timeline
   ================================================ */
#steps { padding: var(--pad); background: var(--bg-3); }
.steps-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.steps-text { max-width: 440px; }
.steps-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps-list::before {
  content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--g-700), transparent);
}
.step-row {
  display: flex; gap: 24px; align-items: flex-start; padding: 28px 0;
  border-bottom: 1px solid var(--border); transition: all var(--t-n);
}
.step-row:last-child { border-bottom: none; }
.step-row:hover .step-dot { background: var(--g-500); box-shadow: 0 0 20px var(--g-glow); }
.step-dot {
  width: 47px; height: 47px; flex-shrink: 0; border-radius: 50%;
  background: var(--card-2); border: 1px solid var(--border-b);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', 'Exo 2', sans-serif; font-size: 18px; letter-spacing: 1px;
  color: var(--g-500); position: relative; z-index: 1;
  transition: all var(--t-n);
}
.step-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; padding-top: 8px; }
.step-content p  { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ================================================
   REGISTER — Split layout
   ================================================ */
#register {
  padding: var(--pad); background: var(--bg);
  background-image: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(22,163,74,.07) 0%, transparent 60%);
}
.reg-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.reg-left {}
.reg-left h2 { font-size: clamp(28px,4vw,46px); margin-bottom: 24px; }
.reg-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.reg-benefits li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--gray); line-height: 1.6;
}
.rb-icon {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: var(--r-sm);
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  margin-top: -2px;
}
.reg-right {
  background: var(--card); border: 1px solid var(--border-b); border-radius: var(--r-lg);
  padding: 48px 44px; position: relative;
}
.reg-right::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-g); border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.reg-title { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.reg-sub   { font-size: 14px; color: var(--gray); margin-bottom: 30px; }
.reg-form  { display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.form-field {
  width: 100%; padding: 14px 18px;
  background: rgba(34,197,94,.04); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px; outline: none;
  transition: all var(--t-f);
}
.form-field:focus { border-color: var(--g-600); background: rgba(34,197,94,.07); box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
.form-field::placeholder { color: var(--dim); }
select.form-field {
  cursor: none; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b7c5e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
select.form-field option { background: #0a1c17; }
.reg-agree { font-size: 12px; color: var(--dim); line-height: 1.65; }
.reg-agree a { color: var(--g-500); }
.reg-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.reg-divider span { font-size: 12px; color: var(--dim); white-space: nowrap; }
.reg-divider::before, .reg-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ================================================
   FAQ — Minimal numbered
   ================================================ */
#faq { padding: var(--pad); background: var(--bg-2); }
.faq-cols { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left h2 { font-size: clamp(26px,4vw,44px); margin-bottom: 20px; }
.faq-left p  { font-size: 15px; color: var(--gray); line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--t-f);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 0; cursor: none; user-select: none;
  font-family: 'Exo 2', sans-serif; font-size: 15px; font-weight: 600;
  transition: color var(--t-f);
}
.faq-q:hover { color: var(--g-400); }
.faq-qnum {
  font-family: 'Bebas Neue', 'Exo 2', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--g-600);
  min-width: 28px; letter-spacing: 1px;
}
.faq-qtext { flex: 1; }
.faq-arrow {
  font-size: 18px; color: var(--gray); transition: transform var(--t-n), color var(--t-f);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--g-500); }
.faq-item.open .faq-q { color: var(--g-400); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 0 22px 44px; font-size: 14px; color: var(--gray); line-height: 1.9; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: #010602; border-top: 1px solid var(--border); padding: 64px 0 28px;
}
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand {}
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.f-logo-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--grad-g); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #020904; font-weight: 900; }
.f-logo-name { font-family: 'Bebas Neue', 'Exo 2', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--g-400); }
.f-desc { font-size: 13px; color: var(--dim); line-height: 1.8; max-width: 270px; margin-bottom: 24px; }
.f-socials { display: flex; gap: 8px; }
.f-soc {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  cursor: none; transition: all var(--t-f);
}
.f-soc:hover { background: rgba(34,197,94,.12); border-color: var(--g-600); transform: translateY(-3px); }
.f-col-title {
  font-family: 'Exo 2', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; color: var(--g-600); margin-bottom: 22px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 13px; color: var(--dim); transition: color var(--t-f); }
.f-links a:hover { color: var(--g-400); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.f-copy { font-size: 12px; color: var(--dim); }
.f-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.f-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 5px 12px; font-size: 11px; color: var(--dim);
}
.age-tag {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(239,68,68,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-size: 10px; font-weight: 800; color: rgba(239,68,68,.55);
}

/* Back to top */
#btt {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--card); border: 1px solid var(--border-b);
  color: var(--g-500); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: none; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
#btt.show { opacity: 1; pointer-events: auto; }
#btt:hover { background: var(--g-700); transform: translateY(-4px); }

/* ================================================
   KEYFRAMES
   ================================================ */
@keyframes fadeIn      { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes ripple      { to{transform:scale(180);opacity:0} }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width:1024px) {
  .hero-inner      { grid-template-columns:1fr; }
  .hero-visual     { display:none; }
  .text-layout     { grid-template-columns:1fr; }
  .text-sidebar    { position:static; }
  .reg-split       { grid-template-columns:1fr; }
  .steps-layout    { grid-template-columns:1fr; }
  .steps-text      { display:none; }
  .faq-cols        { grid-template-columns:1fr; }
  .faq-left        { position:static; }
  .footer-top      { grid-template-columns:1fr 1fr; }
  .bonuses-panels  { grid-template-columns:1fr; border-radius:var(--r-md); }
  .bonus-panel     { border-right:none; border-bottom:1px solid var(--border); }
  .bonus-panel:last-child { border-bottom:none; }
  .stats-row       { grid-template-columns:repeat(2,1fr); }
  .st-item         { border-right:none; border-bottom:1px solid var(--border); }
  .st-item:nth-child(2n)  { border-right:none; }
}
@media (max-width:768px) {
  :root { --pad: 64px 0; }
  .nav-links, .nav-cta, .nav-18 { display:none; }
  .nav-burger { display:flex; }
  .hero-h1 { font-size:clamp(34px,8vw,52px); }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .hero-stats-row { gap:20px; flex-wrap:wrap; }
  .feat-grid  { grid-template-columns:1fr; }
  .feat-item:nth-child(odd) { border-right:none; }
  .trust-item { padding:6px 18px; font-size:12px; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .reg-right { padding:32px 22px; }
}
@media (max-width:480px) {
  .g-slide { flex:0 0 160px; }
  .stats-row { grid-template-columns:1fr 1fr; }
  .games-arrows { display:none; }
}
@media (hover:none) { #cursor, #cursor-ring { display:none; } .btn, button { cursor:pointer; } a { cursor:pointer; } }
