/* ============================================================
   BISON CASINO — main.css
   ============================================================ */

/* 1. CUSTOM PROPERTIES */
:root {
  --bg:          #0b0d18;
  --bg-card:     #151a28;
  --bg-header:   #0f1220;
  --bg-footer:   #080a13;
  --green:       #3aba65;
  --green-hover: #2fa057;
  --gold:        #f0c040;
  --white:       #ffffff;
  --text-sec:    #8b94b0;
  --border:      rgba(255,255,255,0.08);
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --container:   1240px;
  --transition:  0.22s ease;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* 3. TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* 4. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* 5. HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 36px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  padding: 9px 20px; border-radius: var(--radius); transition: all var(--transition); white-space: nowrap; }
.btn-outline { border: 1.5px solid var(--border); color: var(--white); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(58,186,101,0.35); }
.btn-lg { font-size: 16px; padding: 14px 32px; border-radius: var(--radius-lg); }
.btn-gold { background: var(--gold); color: #0b0d18; }
.btn-gold:hover { background: #d9a800; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,192,64,0.4); }

/* Mobile header CTA */
.header-mobile-cta { display: none; font-size: 13px; padding: 7px 16px; border-radius: var(--radius); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--bg-header);
  border-bottom: 1px solid var(--border); padding: 16px 20px 24px; z-index: 999;
  flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px;
  padding: 12px 16px; border-radius: var(--radius); color: var(--text-sec); transition: all var(--transition); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* 6. HERO SLIDER */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-card);
  min-height: 340px;
}
.slider { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.slide.active { opacity: 1; position: relative; }
.slide img { width: 100%; height: 380px; object-fit: cover; object-position: center; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,13,24,0.88) 0%, rgba(11,13,24,0.5) 50%, rgba(11,13,24,0.15) 100%);
  display: flex; align-items: center;
  justify-content: center;
}
.slide-content {
  width: 100%;
  max-width: var(--container);
  padding: 0 20px;
}
.slide-content > * { max-width: 560px; }
.slide-badge {
  display: inline-block; background: var(--gold); color: #0b0d18;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 11px;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.slide-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(24px, 4vw, 42px); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; }
.slide-title span { color: var(--green); }
.slide-sub { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all var(--transition); }
.slider-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* 7. SECTION COMMON */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-title {
  font-size: clamp(20px, 3vw, 30px);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 200px; }
.section-subtitle { color: var(--text-sec); font-size: 15px; margin-bottom: 32px; }

/* 8. REASONS STRIP */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.reason-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.reason-card:hover { border-color: rgba(58,186,101,0.4); transform: translateY(-3px); }
.reason-icon { font-size: 32px; margin-bottom: 10px; }
.reason-value { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--green); margin-bottom: 4px; }
.reason-label { font-size: 13px; color: var(--text-sec); }

/* 9. PROMO CARDS */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.promo-card img { width: 100%; aspect-ratio: 404/176; object-fit: cover; }
.promo-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,13,24,0.85));
  padding: 12px 14px 14px;
}
.promo-card-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; }
.promo-card-cta { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 4px; }

/* 10. GAME TILES */
.game-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.game-filter-btn {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 20px; border: 1.5px solid var(--border);
  color: var(--text-sec); transition: all var(--transition); background: none;
}
.game-filter-btn:hover { border-color: var(--green); color: var(--white); }
.game-filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.game-tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  aspect-ratio: 3/4;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-tile:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(0,0,0,0.6); z-index: 2; }
.game-tile img { width: 100%; height: 100%; object-fit: cover; }
.game-tile-overlay {
  position: absolute; inset: 0; background: rgba(11,13,24,0.75);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity var(--transition);
}
.game-tile:hover .game-tile-overlay { opacity: 1; }
.game-tile-overlay .btn { font-size: 12px; padding: 8px 18px; }
.game-tile-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,13,24,0.9));
  padding: 20px 8px 8px;
  font-size: 11px; font-weight: 600; font-family: 'Montserrat', sans-serif;
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.games-cta { text-align: center; margin-top: 32px; }

/* 11. STATS BAR */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.stats-inner {
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; }
.stat-value { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: var(--green); }
.stat-label { font-size: 13px; color: var(--text-sec); margin-top: 2px; }

/* 12. STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  transition: border-color var(--transition);
}
.step-card:hover { border-color: rgba(58,186,101,0.3); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
  margin-bottom: 14px; flex-shrink: 0;
}
.step-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-sec); line-height: 1.55; }
.step-time { font-size: 11px; color: var(--gold); margin-top: 8px; font-weight: 600; }

/* 13. BONUS CARDS */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover { border-color: rgba(58,186,101,0.35); transform: translateY(-4px); }
.bonus-card.featured { border-color: var(--green); }
.bonus-badge {
  display: inline-block; font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--green); color: #fff; width: fit-content;
}
.bonus-badge.gold { background: var(--gold); color: #0b0d18; }
.bonus-amount { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: var(--green); line-height: 1.1; }
.bonus-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; }
.bonus-details { list-style: none; }
.bonus-details li { font-size: 13px; color: var(--text-sec); padding: 5px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px; }
.bonus-details li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* 14. SEO TEXT BLOCK */
.seo-block {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 64px 0 80px;
}
.seo-content { max-width: 900px; margin: 0 auto; }
.seo-content h1 { font-size: clamp(22px, 3vw, 32px); margin-top: 0; margin-bottom: 24px; color: var(--white); padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.seo-content h2 { font-size: clamp(20px, 2.5vw, 26px); margin-top: 48px; margin-bottom: 16px; color: var(--white); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.seo-content h3 { font-size: clamp(17px, 2vw, 21px); margin-top: 36px; margin-bottom: 12px; color: var(--white); }
.seo-content h4 { font-size: 17px; margin-top: 28px; margin-bottom: 10px; color: var(--white); }
.seo-content p { margin-bottom: 16px; color: rgba(255,255,255,0.85); line-height: 1.75; font-size: 15px; }
.seo-content strong { color: var(--white); font-weight: 700; }
.seo-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.seo-content a:hover { color: var(--gold); }
.seo-content ul, .seo-content ol { margin-bottom: 18px; padding-left: 6px; }
.seo-content ul li, .seo-content ol li { padding: 5px 0 5px 22px; position: relative; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.65; }
.seo-content ul li::before { content: '▸'; color: var(--green); position: absolute; left: 0; font-size: 12px; top: 7px; }
.seo-content ol { counter-reset: seo-ol; }
.seo-content ol li { counter-increment: seo-ol; }
.seo-content ol li::before { content: counter(seo-ol) '.'; color: var(--green); position: absolute; left: 0; font-weight: 700; font-size: 14px; top: 6px; font-family: 'Montserrat', sans-serif; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.seo-content table { font-size: 14px; }
.seo-content thead th { background: rgba(58,186,101,0.12); color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.seo-content tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.seo-content tbody tr:last-child { border-bottom: none; }
.seo-content tbody tr:hover { background: rgba(255,255,255,0.03); }
.seo-content td { padding: 11px 14px; color: rgba(255,255,255,0.8); }
.seo-content td:first-child { font-weight: 600; color: var(--white); }
.faq-block { margin-top: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--transition); }
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q::after { content: '+'; font-size: 20px; color: var(--green); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--text-sec); padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-a { padding: 0 20px 16px; max-height: 400px; }
.tip-box { background: rgba(58,186,101,0.08); border-left: 3px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; margin: 20px 0; font-size: 14px; color: rgba(255,255,255,0.85); }

/* 15. FOOTER */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-sec); line-height: 1.65; max-width: 260px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-sec); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; color: var(--text-sec); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-license { padding-top: 28px; border-top: 1px solid var(--border); }
.footer-license-inner { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.footer-badge { font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 6px 12px; color: var(--text-sec); text-align: center; white-space: nowrap; }
.footer-badge span { display: block; font-size: 14px; color: var(--white); margin-top: 2px; }
.footer-disclaimer { font-size: 12px; color: var(--text-sec); line-height: 1.6; opacity: 0.7; max-width: 700px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 13px; color: var(--text-sec); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-sec); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

/* 16. PAGE HERO (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: center;
  background: var(--bg-card);
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,13,24,0.92) 0%, rgba(11,13,24,0.55) 70%, rgba(11,13,24,0.2) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 60px 20px; max-width: var(--container); margin: 0 auto; width: 100%; }
.page-hero-content .eyebrow { font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.page-hero-content h1 { font-size: clamp(24px, 4vw, 40px); margin-bottom: 14px; max-width: 600px; }
.page-hero-content p { font-size: 15px; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 24px; }

/* Bonus hero */
.bonus-hero { background: linear-gradient(135deg, #0f1220 0%, #0b1a12 100%); }
.bonus-hero-nums { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
.bonus-num { text-align: center; }
.bonus-num-value { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(20px, 2.5vw, 32px); color: var(--green); line-height: 1; }
.bonus-num-label { font-size: 12px; color: var(--text-sec); margin-top: 3px; }
.bonus-num-sep { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; color: var(--border); align-self: center; }

/* Spins table */
.spins-table-wrap { background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.spins-table-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 18px; }
.spins-table-wrap .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 0; }
.spins-table-wrap table { font-size: 14px; width: 100%; }
.spins-table-wrap thead th { background: rgba(58,186,101,0.12); color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.spins-table-wrap tbody tr { border-bottom: 1px solid var(--border); }
.spins-table-wrap tbody tr:last-child { border-bottom: none; }
.spins-table-wrap tbody tr:hover { background: rgba(255,255,255,0.03); }
.spins-table-wrap td { padding: 11px 16px; color: rgba(255,255,255,0.8); }
.spins-table-wrap td:first-child { font-weight: 600; color: var(--white); }

/* Registration hero */
.reg-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.reg-intro-text h2 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 14px; }
.reg-intro-text p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 18px; }
.reg-checklist { display: flex; flex-direction: column; gap: 10px; }
.reg-checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.reg-checklist li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.reg-intro-visual { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }

/* 17. MEDIA QUERIES */
@media (max-width: 1100px) {
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
  .games-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .header-mobile-cta { display: inline-flex; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .slide img { height: auto; min-height: 320px; object-fit: cover; }
  .slide-content { padding: 0 20px; }
  .slide-sub { font-size: 14px; margin-bottom: 18px; }
  .slide-actions { gap: 10px; }
  .reg-intro { grid-template-columns: 1fr; }
  .reg-intro-visual { display: none; }
  .bonus-hero-nums { gap: 16px; }
  .stat-value { font-size: 22px; }
  .section { padding: 40px 0; }
  .btn-lg { font-size: 14px; padding: 12px 22px; }
}
@media (max-width: 480px) {
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .slide img { min-height: 380px; }
  .slide-content { padding: 0 16px; }
  .slide-title { font-size: clamp(20px, 6vw, 28px); }
  .slide-sub { font-size: 13px; margin-bottom: 16px; }
  .slide-badge { font-size: 10px; padding: 3px 10px; }
  .slide-actions { flex-direction: column; gap: 8px; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .seo-content { padding: 0 4px; }
  .bonus-num-sep { display: none; }
  .stats-inner { gap: 12px; }
  .stat-value { font-size: 20px; }
  .container { padding: 0 16px; }
}
