/* Цветовой стиль в духе Kush: тёмный фон, неоновые акценты, фиолетовые градиенты */
:root {
  --bg: #0b0f1a;
  --bg-2: #1a1332;
  --primary: #8a2be2; /* electric purple */
  --accent: #06b6d4;  /* neon cyan */
  --gold: #f4b400;    /* warm gold */
  --text: #e5e7eb;
  --muted: #94a3b8;
  --surface: #111827;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(120deg, var(--bg) 0%, var(--bg-2) 50%, #2a0f5a 100%);
  background-attachment: fixed;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.flex { display: flex; gap: 16px; }
.between { justify-content: space-between; align-items: center; }
.center { align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; }
.small { font-size: 14px; }
.muted { color: var(--muted); }

/* Header */
.site-header {
  position: sticky;
  top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(17, 24, 39, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { width: 40px; height: 40px; object-fit: contain; }
.brand { text-decoration: none; color: var(--text); gap: 12px; }
.brand-name { font-weight: 700; letter-spacing: 0.3px; }
.nav { display: flex; gap: 14px; align-items: center; }
.nav a { color: var(--text); text-decoration: none; padding: 10px 12px; border-radius: 8px; }
.nav a:hover { color: white; background: rgba(255,255,255,0.06); }

/* Hero */
.hero { padding: 48px 0 24px; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 0 0 12px; }
.subtitle { color: var(--muted); font-size: 18px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 18px 0; }
.banner { width: 100%; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.promo { margin-top: 18px; padding: 16px; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; background: linear-gradient(180deg, rgba(138,43,226,0.20), rgba(17,24,39,0.60)); }
.tag { display: inline-block; padding: 6px 10px; border-radius: 999px; background: rgba(6,182,212,0.18); color: #a3e9ff; font-weight: 600; margin-bottom: 8px; }
.promo-actions { display: flex; gap: 10px; margin-top: 8px; }

/* Features */
.features { padding: 26px 0; }
.section-lead { color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--surface); border-radius: 14px; padding: 18px; border: 1px solid rgba(255,255,255,0.06); }
.card h3 { margin-top: 0; }

/* Bonus */
.bonus { padding: 18px 0; }
.bonus-list { margin: 14px 0; }
.bonus .badge { display: grid; place-items: center; width: 200px; height: 200px; border-radius: 999px; background:
  radial-gradient(closest-side, rgba(244,180,0,0.8), rgba(244,180,0,0.1));
  color: #2e1a00; font-weight: 800; font-size: 20px; border: 1px solid rgba(244,180,0,0.4);
}

/* Trust */
.trust { padding: 18px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Mobile */
.mobile { padding: 18px 0; }

/* FAQ */
.faq { padding: 18px 0 30px; }
.faq details { background: var(--surface); border-radius: 12px; margin-bottom: 12px; padding: 14px; border: 1px solid rgba(255,255,255,0.06); }
.faq summary { cursor: pointer; font-weight: 600; }

/* Final CTA */
.cta-final { padding: 20px 0 40px; }
.cta-final h2 { margin-top: 0; text-align: center; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); background: rgba(17,24,39,0.55); padding: 16px 0; }
.footer-nav a { color: var(--muted); text-decoration: none; margin-left: 12px; }
.footer-nav a:hover { color: white; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 12px; padding: 10px 16px; font-weight: 600; transition: all 0.2s ease; }
.btn-sm { padding: 8px 12px; border-radius: 10px; }
.btn-xl { padding: 14px 22px; font-size: 18px; border-radius: 14px; }
.btn-ghost { color: var(--text); background: transparent; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn-outline { color: #a3e9ff; border: 1px solid rgba(6,182,212,0.5); background: rgba(6,182,212,0.12); }
.btn-outline:hover { background: rgba(6,182,212,0.2); }
.btn-kush {
  color: #0b0f1a; background: linear-gradient(90deg,#FEA744,#FFD29E);
  box-shadow: 0 8px 20px rgba(254,167,68,0.35), inset 0 0 8px rgba(255,210,158,0.55);
}
.btn-kush:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Responsive */
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; }
  .trust-grid, .cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .trust-grid, .cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}
.tournaments { padding: 18px 0; }
.cashback { padding: 18px 0; }
.hall-of-fame { padding: 18px 0; }

/* Utility: pills and simple stats (optional future use) */
.pill { display: inline-block; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); color: var(--text); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Icon spacing: ensure space between icons and text */
h1 > i:first-child,
h2 > i:first-child,
h3 > i:first-child,
nav a > i:first-child,
a.btn > i:first-child,
.btn > i:first-child {
  margin-right: 0.5rem;
}

h1 > i:last-child,
h2 > i:last-child,
h3 > i:last-child,
nav a > i:last-child,
a.btn > i:last-child,
.btn > i:last-child {
  margin-left: 0.5rem;
}

i.fa-solid,
i.fa-regular,
i.fa-brands {
  vertical-align: middle;
  font-size: 0.95em;
}