:root {
  --bg-primary: #f4f7fc;
  --bg-secondary: #edf1f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8faff;
  --bg-header: rgba(255,255,255,0.96);
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: rgba(37,99,235,0.1);
  --accent-medium: rgba(37,99,235,0.18);
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --border-light: #d1d5db;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 2px 16px rgba(37,99,235,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-btn: 0 4px 14px rgba(37,99,235,0.35);
  --shadow-hover: 0 8px 28px rgba(37,99,235,0.14);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 44px;
}

/* ── BUTTONS ─────────────────────────────────────── */

.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 28px;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
}

.btn-accent:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-light);
}

.btn-sm {
  font-size: 14px;
  padding: 8px 20px;
}

.btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

.btn-hero {
  font-size: 16px;
  padding: 14px 34px;
}

.btn-slot {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-slot:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-slot:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ── HEADER ──────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}

.logo {
  flex-shrink: 0;
  text-decoration: none;
}

.logo-olimp {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-img {
  height: 24px;
  width: auto;
  display: block;
}

.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: var(--bg-secondary);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.burger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle.is-open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .burger-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ─────────────────────────────────────────── */

.hero {
  background: linear-gradient(150deg, #ffffff 0%, #eef3ff 50%, #ddeaff 100%);
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.hero-content {
  max-width: 560px;
}

.hero-h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
}

.hero-badge {
  position: relative;
  z-index: 2;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 30px;
  text-align: center;
  box-shadow: var(--shadow-btn);
}

.badge-num {
  display: block;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.badge-txt {
  display: block;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.15);
}

.hero-ring--1 {
  width: 210px;
  height: 210px;
}

.hero-ring--2 {
  width: 290px;
  height: 290px;
  border-color: rgba(37,99,235,0.07);
}

.coin {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.coin--1 { width: 18px; height: 18px; top: 24px; right: 28px; opacity: 0.2; }
.coin--2 { width: 12px; height: 12px; bottom: 44px; left: 22px; opacity: 0.15; }
.coin--3 { width: 8px; height: 8px; top: 84px; left: 44px; opacity: 0.12; }

.stats-strip {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 8px 0;
}

.stat-val {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-lbl {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── ADVANTAGES ───────────────────────────────────── */

.advantages {
  background: var(--bg-secondary);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,99,235,0.2);
}

.adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: var(--accent-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-icon::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background-color: var(--accent);
  -webkit-mask-size: cover;
  mask-size: cover;
}

.adv-icon--catalog::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='3' width='7' height='7' rx='1'/%3E%3Crect x='9' y='3' width='7' height='7' rx='1'/%3E%3Crect x='16' y='3' width='6' height='7' rx='1'/%3E%3Crect x='2' y='12' width='7' height='9' rx='1'/%3E%3Crect x='9' y='12' width='7' height='9' rx='1'/%3E%3Crect x='16' y='12' width='6' height='9' rx='1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='3' width='7' height='7' rx='1'/%3E%3Crect x='9' y='3' width='7' height='7' rx='1'/%3E%3Crect x='16' y='3' width='6' height='7' rx='1'/%3E%3Crect x='2' y='12' width='7' height='9' rx='1'/%3E%3Crect x='9' y='12' width='7' height='9' rx='1'/%3E%3Crect x='16' y='12' width='6' height='9' rx='1'/%3E%3C/svg%3E");
}

.adv-icon--mobile::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='2' width='14' height='20' rx='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='17' r='1.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='2' width='14' height='20' rx='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='17' r='1.5'/%3E%3C/svg%3E");
}

.adv-icon--bonus::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12v10H4V12M22 7H2v5h20V7zM12 22V7M12 7H7.5A2.5 2.5 0 0 1 7.5 2C10 2 12 7 12 7zM12 7h4.5A2.5 2.5 0 0 0 16.5 2C14 2 12 7 12 7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12v10H4V12M22 7H2v5h20V7zM12 22V7M12 7H7.5A2.5 2.5 0 0 1 7.5 2C10 2 12 7 12 7zM12 7h4.5A2.5 2.5 0 0 0 16.5 2C14 2 12 7 12 7z'/%3E%3C/svg%3E");
}

.adv-icon--support::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
}

.adv-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.adv-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── SLOTS ─────────────────────────────────────────── */

.slots-section {
  background: var(--bg-primary);
}

.slots-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border-light);
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.filter-btn.is-active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(37,99,235,0.3);
}

.filter-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,99,235,0.2);
}

.slot-card.is-hidden {
  display: none;
}

.slot-img-wrap {
  background: var(--bg-secondary);
  overflow: hidden;
}

.slot-img-wrap img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.slot-card:hover .slot-img-wrap img {
  transform: scale(1.04);
}

.slot-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px 8px;
  flex: 1;
}

.slot-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.slot-provider {
  font-size: 12px;
  color: var(--text-muted);
}

.slot-card .btn-slot {
  margin: 0 14px 14px;
}

.slots-cta-row {
  text-align: center;
}

/* ── HOW TO START ─────────────────────────────────── */

.howto {
  background: var(--bg-secondary);
}

.steps-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.step-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,99,235,0.2);
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body {
  flex: 1;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── BONUSES ──────────────────────────────────────── */

.bonuses {
  background: var(--bg-primary);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,99,235,0.2);
}

.bonus-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.bonus-badge--spin {
  background: rgba(14,165,233,0.1);
  color: #0ea5e9;
  border-color: rgba(14,165,233,0.2);
}

.bonus-badge--loyalty {
  background: rgba(16,185,129,0.1);
  color: #059669;
  border-color: rgba(16,185,129,0.2);
}

.bonus-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
}

.bonus-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.bonus-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.bonus-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── REVIEW TEXT ──────────────────────────────────── */

.review-section {
  background: var(--bg-secondary);
}

.review-body {
  max-width: 800px;
  margin: 0 auto;
}

.review-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.review-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}

/* ── FAQ ──────────────────────────────────────────── */

.faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: rgba(37,99,235,0.2);
}

.faq-q {
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.faq-q:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.faq-q:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.2s;
  position: relative;
}

.faq-arrow::before,
.faq-arrow::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.25s;
}

.faq-arrow::before {
  width: 8px;
  height: 2px;
  transform: rotate(-45deg) translateX(2px);
}

.faq-arrow::after {
  width: 8px;
  height: 2px;
  transform: rotate(45deg) translateX(-2px);
}

.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  background: var(--accent-medium);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-a.is-open {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq-a p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── FOOTER ───────────────────────────────────────── */

.site-footer {
  background: #1e293b;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-logo {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #60a5fa;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-nav-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: #ffffff;
}

.footer-nav-list a:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimer,
.footer-rg,
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-rg {
  color: rgba(255,255,255,0.45);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* ── STICKY CTA ───────────────────────────────────── */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--accent);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.5);
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}

.sticky-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 30px rgba(37,99,235,0.6);
}

.sticky-cta:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ── ANIMATIONS ───────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── RESPONSIVE ───────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: 40px;
  }

  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-header {
    display: none;
  }

  .adv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid .stat-item:last-child:nth-child(odd) {
    grid-column: span 2;
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta-row .btn-hero {
    text-align: center;
  }

  .sticky-cta {
    display: block;
  }
}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .btn-hero {
    font-size: 15px;
    padding: 12px 24px;
  }

  .stat-val {
    font-size: 22px;
  }

  .step-item {
    flex-direction: column;
    gap: 12px;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card {
    padding: 20px;
  }

  .faq-q {
    font-size: 15px;
    padding: 16px;
  }
}

/* ── DESIGN ENHANCEMENTS ─────────────────────────── */

@keyframes ring-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ring-spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes badge-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.95); }
}

.hero {
  position: relative;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 480px;
  height: 480px;
  background: rgba(37, 99, 235, 0.09);
  top: -120px;
  right: -80px;
  animation: blob-drift 14s ease-in-out infinite;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.07);
  bottom: -60px;
  left: -60px;
  animation: blob-drift 18s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.stats-strip {
  position: relative;
  z-index: 1;
}

.hero-ring--1 {
  animation: ring-spin-slow 22s linear infinite;
}

.hero-ring--2 {
  animation: ring-spin-rev 30s linear infinite;
}

.hero-badge {
  animation: badge-bob 4s ease-in-out infinite;
}

.section-title {
  position: relative;
  padding-bottom: 18px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.adv-card {
  border-top: 3px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, border-top-color 0.2s;
}

.adv-card:hover {
  border-top-color: var(--accent);
}

.bonus-card:first-child { border-top: 3px solid var(--accent); }
.bonus-card:nth-child(2) { border-top: 3px solid #0ea5e9; }
.bonus-card:nth-child(3) { border-top: 3px solid #059669; }

.slot-img-wrap {
  position: relative;
}

.step-item:hover {
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.14), inset 3px 0 0 var(--accent);
}

.platform-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.platform-table thead th {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.platform-table tbody tr {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.platform-table tbody tr:last-child {
  border-bottom: none;
}

.platform-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.platform-table td {
  padding: 13px 20px;
  color: var(--text-secondary);
  vertical-align: middle;
}

.platform-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  width: 38%;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: var(--border);
}

.header-cta {
  flex-shrink: 0;
  font-size: 14px;
  padding: 9px 22px;
  margin-left: auto;
}

.site-footer {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .hero-ring--1,
  .hero-ring--2,
  .hero-badge,
  .hero::before,
  .hero::after {
    animation: none;
  }
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }

  .stat-item::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .platform-table {
    font-size: 14px;
  }

  .platform-table td,
  .platform-table thead th {
    padding: 10px 14px;
  }

  .platform-table td:first-child {
    width: auto;
  }
}

/* ── HERO VISUAL CHIPS ───────────────────────────── */

@keyframes chip-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-9px) rotate(-2deg); }
}

@keyframes chip-float-b {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50%       { transform: translateY(-11px) rotate(1.5deg); }
}

@keyframes chip-float-c {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-7px) rotate(-1deg); }
}

@keyframes coin-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes badge-pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,99,235,0.4), 0 0 0 0 rgba(37,99,235,0.28); }
  55%       { box-shadow: 0 4px 14px rgba(37,99,235,0.4), 0 0 0 14px rgba(37,99,235,0); }
}

.hero-badge {
  animation: badge-bob 4s ease-in-out infinite, badge-pulse-glow 2.8s ease-in-out infinite;
}

.coin--1 { animation: coin-bob 2.6s ease-in-out infinite 0s; }
.coin--2 { animation: coin-bob 3.2s ease-in-out infinite 0.6s; }
.coin--3 { animation: coin-bob 2s ease-in-out infinite 1.2s; }

.hero-chip {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  white-space: nowrap;
  z-index: 3;
  cursor: default;
  user-select: none;
}

.hero-chip:hover {
  box-shadow: 0 8px 26px rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.25);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.chip-dot--green  { background: #059669; }
.chip-dot--orange { background: #f59e0b; }

.chip-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.1px;
}

.hero-chip--1 {
  top: 18px;
  left: 0;
  animation: chip-float-a 3.6s ease-in-out infinite;
}

.hero-chip--2 {
  bottom: 22px;
  right: 0;
  animation: chip-float-b 4.2s ease-in-out infinite 0.5s;
}

.hero-chip--3 {
  bottom: 68px;
  left: 8px;
  animation: chip-float-c 3s ease-in-out infinite 1s;
}

/* ── STATS APPEARANCE ANIMATION ─────────────────── */

.stat-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stats-strip.is-visible .stat-item {
  opacity: 1;
  transform: translateY(0);
}

.stats-strip.is-visible .stat-item:nth-child(1) { transition-delay: 0.05s; }
.stats-strip.is-visible .stat-item:nth-child(2) { transition-delay: 0.17s; }
.stats-strip.is-visible .stat-item:nth-child(3) { transition-delay: 0.29s; }
.stats-strip.is-visible .stat-item:nth-child(4) { transition-delay: 0.41s; }

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
  .stat-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── HERO PANEL ──────────────────────────────────── */

.hero-visual {
  height: auto;
  align-items: flex-start;
}

.hero-panel {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(37,99,235,0.13), 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}

.panel-tabs {
  display: flex;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.panel-tab {
  flex: 1;
  padding: 11px 6px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.1px;
}

.panel-tab:hover {
  color: var(--accent);
  background: rgba(37,99,235,0.05);
}

.panel-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: #ffffff;
  font-weight: 700;
}

.panel-tab:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.panel-body {
  padding: 20px 22px 22px;
}

.panel-h {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.panel-steps {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.panel-steps li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.2;
}

.panel-big {
  font-size: 34px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}

.panel-big-plus {
  font-size: 21px;
  font-weight: 700;
  opacity: 0.72;
  letter-spacing: 0;
}

.panel-muted {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
