@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --gold: #f0b429;
  --gold-light: #ffd966;
  --gold-dark: #c8860a;
  --bg-dark: #0a0a10;
  --bg-card: #12121e;
  --bg-card2: #1a1a2e;
  --red: #e63946;
  --green: #06d6a0;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --border: rgba(240,180,41,0.18);
  --shadow-gold: 0 0 30px rgba(240,180,41,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===================== WINS TICKER ===================== */
.wins-ticker {
  background: linear-gradient(90deg, #0d0d18 0%, #1a1000 50%, #0d0d18 100%);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 38px;
  display: flex;
  align-items: center;
}
.wins-ticker::before {
  content: '🏆 ПОБЕДИТЕЛИ';
  position: absolute;
  left: 0;
  z-index: 2;
  background: linear-gradient(90deg, #1a0f00, #2a1800);
  border-right: 1px solid var(--gold-dark);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  padding-left: 160px;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
  font-size: 12.5px;
  color: var(--text);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ticker-item .win-amount { color: var(--green); font-weight: 700; }
.ticker-item .win-game { color: var(--gold-light); font-style: italic; }
.ticker-item .win-avatar { font-size: 15px; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,16,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(240,180,41,0.08);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-transform: uppercase;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0f00;
  box-shadow: 0 4px 18px rgba(240,180,41,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(240,180,41,0.45);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(240,180,41,0.1);
  transform: translateY(-1px);
}
.btn-lg { padding: 15px 38px; font-size: 15px; border-radius: 12px; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,16,0.88) 0%, rgba(10,10,16,0.55) 60%, rgba(10,10,16,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.12);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 64px 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}
.see-all {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.see-all:hover { gap: 10px; }

/* ===================== GAMES GRID ===================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}
.game-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.05);
}
.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--shadow-gold);
  border-color: var(--gold-dark);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.game-card:hover img { transform: scale(1.07); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,16,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.25s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-card-play {
  margin-top: 8px;
  background: var(--gold);
  color: #1a0f00;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 7px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-badge.hot { background: var(--red); }
.game-badge.new { background: #6c5ce7; }
.game-badge.top { background: var(--gold-dark); color: #1a0f00; }

/* ===================== LIVE CASINO PREVIEW ===================== */
.live-preview {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1000 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.live-preview-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.live-preview-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.live-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.live-badge-live {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.live-badge-live::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.live-features { display: flex; flex-direction: column; gap: 20px; }
.live-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.live-feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(240,180,41,0.12);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.live-feature-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.live-feature-text p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* ===================== PROMO BANNER ===================== */
.promo-banner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  margin: 0 24px 64px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.promo-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,16,0.85) 0%, transparent 70%);
}
.promo-banner-content {
  position: relative;
  z-index: 2;
  padding: 40px 48px;
}
.promo-banner-content .badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.promo-banner-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.promo-banner-content h2 span { color: var(--gold); }
.promo-banner-content p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 22px; max-width: 420px; }

/* ===================== BONUSES PAGE ===================== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-dark);
}
.bonus-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.bonus-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bonus-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,16,0.7) 0%, transparent 60%);
}
.bonus-card-body { padding: 20px; }
.bonus-type {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bonus-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.bonus-card-body p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.bonus-terms { font-size: 10.5px; color: var(--text-muted); margin-top: 12px; }

/* ===================== FAQ PAGE ===================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--gold-dark); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  gap: 16px;
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: rgba(240,180,41,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 18px; }
.faq-answer p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ===================== SLOTS PAGE ===================== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #1a0f00;
  border-color: var(--gold);
}

/* ===================== LIVE PAGE ===================== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}
.live-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-dark);
}
.live-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.live-card-img img { width: 100%; height: 100%; object-fit: cover; }
.live-card-body { padding: 16px; }
.live-card-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.live-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 10px;
}
.live-card-meta .players { color: var(--green); font-weight: 600; }
.live-card-meta .limits { color: var(--gold); }
.live-card-type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #070710;
  border-top: 1px solid var(--border);
  padding: 60px 24px 28px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand img { height: 40px; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 11.5px; color: var(--text-muted); }
.footer-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-18 {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  opacity: 0.7;
}

/* ===================== PAGE HERO ===================== */
.page-hero {
  position: relative;
  padding: 70px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,180,41,0.07) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 14px auto 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ===================== WINS POPUP ===================== */
.win-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.win-popup-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18,18,30,0.95);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  padding: 12px 18px;
  backdrop-filter: blur(12px);
  animation: pop-in 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  pointer-events: auto;
}
@keyframes pop-in {
  from { opacity: 0; transform: translateX(-30px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.pop-avatar { font-size: 24px; flex-shrink: 0; }
.pop-info { flex: 1; min-width: 0; }
.pop-name { font-size: 12px; font-weight: 700; color: var(--text); }
.pop-game { font-size: 11px; color: var(--text-muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pop-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

/* ===================== UTILS ===================== */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-top: 10px;
}
.text-gold { color: var(--gold); }
.divider-section {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===================== SEO TEXT BLOCK ===================== */
.seo-text-section {
  background: #09090f;
  border-top: 1px solid var(--border);
  padding: 64px 24px;
}
.seo-text-inner {
  max-width: 960px;
  margin: 0 auto;
}
.seo-text-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.seo-text-inner h2:first-child { margin-top: 0; }
.seo-text-inner h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}
.seo-text-inner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.seo-text-inner strong { color: var(--text); font-weight: 600; }
.seo-text-inner ul, .seo-text-inner ol {
  padding-left: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.seo-text-inner li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.seo-text-inner ul li::marker { color: var(--gold); }
.seo-text-inner ol li::marker { color: var(--gold); font-weight: 600; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .live-preview-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hero { min-height: 420px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .wins-ticker::before { font-size: 9px; padding: 0 8px; }
  .ticker-track { padding-left: 120px; }
}
