/* Базовые переменные */
:root {
  --bg: #0f1021;
  --bg2: #13142a;
  --text: #e6e7f2;
  --muted: #b8b9c7;
  --brand: #6d28d9; /* фиолетовый */
  --accent: #22d3ee; /* сине-бирюзовый */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Header */
.SiteHeader { position: sticky; top: 0; z-index: 20; background: rgba(19,20,42,0.8); backdrop-filter: blur(6px); border-bottom: 1px solid #1f2140; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav .menu { display: flex; align-items: center; gap: 16px; list-style: none; margin: 0; padding: 0; }
.nav a { color: var(--text); text-decoration: none; opacity: 0.9; }
.nav a:hover { color: var(--accent); }
.burger { display: none; background: transparent; color: var(--text); border: 1px solid #2a2c55; border-radius: 8px; padding: 6px 10px; }

/* Hero */
.MainHeroSection { padding: 56px 0 24px; }
.hero-inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; align-items: center; }
.hero-copy h1 { font-size: 32px; line-height: 1.2; margin: 0 0 12px; }
.hero-copy p { color: var(--muted); margin: 0 0 20px; }
.cta { display: inline-flex; padding: 12px 18px; border-radius: 12px; background: linear-gradient(90deg, var(--brand), var(--accent)); color: #0b0c18; font-weight: 700; text-decoration: none; box-shadow: 0 10px 20px rgba(34,211,238,0.25); }
.cta:hover { filter: brightness(1.05); }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0)} 50% { transform: translateY(-8px)} }

/* Advantages */
.TopAdvantagesSection { padding: 40px 0; }
.TopAdvantagesSection h2 { margin: 0 0 16px; }
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.adv-item { background: #151733; border: 1px solid #22264f; border-radius: 14px; padding: 16px; }
.adv-icon { font-size: 24px; margin-bottom: 8px; }
.adv-item h3 { margin: 0 0 8px; font-size: 18px; }
.adv-item p { margin: 0; color: var(--muted); }

/* Slots */
.SlotsShowcaseSection { padding: 32px 0; }
.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.slot-card { background: #151733; border: 1px solid #22264f; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.slot-media { aspect-ratio: 16 / 10; background: #0c0d1a; display: grid; place-items: center; }
.slot-media img { width: 100%; height: 100%; object-fit: cover; }
.slot-body { padding: 12px; display: grid; gap: 6px; }
.slot-title { font-weight: 700; }
.slot-provider { color: var(--muted); font-size: 14px; }
.slot-actions { display: flex; justify-content: space-between; align-items: center; }
.slot-actions .play { display: inline-flex; padding: 8px 12px; border-radius: 10px; background: linear-gradient(90deg, var(--brand), var(--accent)); color: #0b0c18; font-weight: 700; text-decoration: none; }

/* Bonus */
.BonusProgramSection { padding: 32px 0; }
.bonus-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bonus-item { background: #151733; border: 1px solid #22264f; border-radius: 14px; padding: 16px; }

/* Crash */
.CrashAndSlotsSection { padding: 32px 0; }
.crash-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.crash-grid figure { background: #151733; border: 1px solid #22264f; border-radius: 12px; padding: 12px; text-align: center; }
.crash-grid figcaption { color: var(--muted); font-size: 14px; }

/* Mobile */
.MobileExperienceSection { padding: 32px 0; }
.mobile-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mobile-list li { background: #151733; border: 1px solid #22264f; border-radius: 12px; padding: 12px; }

/* Payments */
.PaymentMethodsSection { padding: 32px 0; }
.payments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; padding: 0; margin: 0; }
.payments li { background: #151733; border: 1px solid #22264f; border-radius: 12px; padding: 12px; }

/* FAQ */
.FAQSection { padding: 32px 0; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: #151733; border: 1px solid #22264f; border-radius: 12px; padding: 16px; }
.faq-q { margin: 0 0 8px; font-size: 18px; }
.faq-a { margin: 0; color: var(--muted); }

/* SEO text */
.GeoSEOTailTextSection { padding: 32px 0; }
.GeoSEOTailTextSection article p { color: var(--muted); }

/* Footer */
.FooterSection { border-top: 1px solid #1f2140; padding: 24px 0; background: rgba(19,20,42,0.6); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-links { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

/* Адаптивность */
@media (max-width: 960px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-wrap { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-list { grid-template-columns: 1fr; }
  .mobile-list { grid-template-columns: 1fr 1fr; }
  .crash-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .burger { display: inline-flex; }
  .nav .menu { display: none; }
  .nav.open .menu { display: flex; position: absolute; right: 16px; top: 56px; background: #151733; border: 1px solid #22264f; border-radius: 12px; padding: 12px; flex-direction: column; gap: 8px; }
  .slots-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .bonus-wrap { grid-template-columns: 1fr; }
  .mobile-list { grid-template-columns: 1fr; }
  .crash-grid { grid-template-columns: repeat(2, 1fr); }
}