@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f5c518;
  --gold2: #ffdc70;
  --orange: #ff7a00;
  --red: #e63946;
  --bg-dark: #0d0e14;
  --bg-card: #161822;
  --bg-card2: #1e2030;
  --border: rgba(255,255,255,0.08);
  --text: #e8e8f0;
  --text-muted: #7a7a9a;
  --green: #00e676;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: url('background.webp') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,14,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-link { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.logo-link img { height: 40px; width: auto; }

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  letter-spacing: .5px;
  text-transform: uppercase;
}

nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(245,197,24,0.1);
}

.header-btns { display: flex; gap: 10px; }

.btn-login {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.btn-login:hover { border-color: var(--gold); color: var(--gold); }

.btn-reg {
  background: linear-gradient(135deg, #ff7a00, #e63946);
  border: none;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(230,57,70,0.4);
}

.btn-reg:hover { opacity: .9; transform: translateY(-1px); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ── WINS TICKER ── */
.wins-ticker {
  background: rgba(245,197,24,0.06);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.ticker-item .winner { color: var(--gold); font-weight: 600; }
.ticker-item .amount { color: var(--green); font-weight: 700; }
.ticker-item .game { color: var(--text); }
.ticker-dot { color: var(--gold2); opacity: .5; }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  padding: 60px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,230,118,0.12);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero-badge::before { content: '●'; font-size: 8px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero h1 span { 
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(245,197,24,0.4);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,197,24,0.5); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card2);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Hero Bonus Card */
.hero-card {
  background: linear-gradient(135deg, #1a1c2e 0%, #0d1520 100%);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.15), transparent 70%);
  pointer-events: none;
}

.card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.bonus-big {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-plus {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--text-muted);
  margin: 4px 0;
}

.bonus-fs {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 28px;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.feature-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.feature-pill strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 2px; }

/* ── SECTION ── */
section { position: relative; z-index: 1; }

.section-wrap { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.see-all {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.see-all:hover { gap: 10px; }

/* ── TABS ── */
.tabs { display: flex; gap: 8px; margin-bottom: 28px; }

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.tab-btn.active, .tab-btn:hover {
  background: rgba(245,197,24,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.game-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* colored game placeholders */
.game-thumb {
  flex: 1;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--bg-card2);
  position: relative;
}

.game-thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 8px;
  left: 6px;
  right: 6px;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.3;
}

.game-card .game-overlay {
  position: absolute;
  inset: 0 0 36px 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity .25s;
}

.game-card:hover .game-overlay { opacity: 1; }

.game-overlay .play-btn {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  display: block;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.game-title {
  padding: 9px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--bg-card);
  flex-shrink: 0;
}

/* ── LIVE WINS PANEL ── */
.wins-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.wins-panel h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wins-panel h3::before { content: '🏆'; }

.wins-list { display: flex; flex-direction: column; gap: 10px; }

.win-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-card2);
  border-radius: 8px;
  border: 1px solid var(--border);
  animation: slideIn .3s ease;
}

@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }

.win-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card2), #2a2d45);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.win-info { flex: 1; min-width: 0; }
.win-user { font-size: 13px; font-weight: 600; }
.win-game { font-size: 11px; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-amount { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800; color: var(--green); flex-shrink: 0; }

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(135deg, #1a1c2e 0%, #12151f 100%);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.08), transparent 70%);
}

.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 200px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(230,57,70,0.06), transparent 70%);
}

.promo-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: 8px;
}

.promo-text p { color: var(--text-muted); font-size: 15px; max-width: 480px; }

/* ── SUPPORT STRIP ── */
.support-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}

.support-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.5s ease-in-out infinite; flex-shrink: 0; }

.support-text { font-size: 14px; }
.support-text strong { color: var(--green); }

/* ── TEXT CONTENT ── */
.text-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.text-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.text-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--gold);
}

.text-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; font-size: 15px; }
.text-content ul { color: var(--text-muted); padding-left: 20px; line-height: 2; font-size: 15px; }
.text-content li { margin-bottom: 4px; }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.7; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-muted); font-size: 12px; }

.age-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero p { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ── BONUS CARDS ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}

.bonus-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.3); }

.bonus-card-top {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, #1a1c2e, #0f1420);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bonus-card-top::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(245,197,24,0.12), transparent 70%);
}

.bonus-icon { font-size: 40px; margin-bottom: 12px; }

.bonus-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0 4px;
}

.bonus-desc { font-size: 13px; color: var(--text-muted); }

.bonus-card-body { padding: 20px 24px; }

.bonus-terms { list-style: none; margin-bottom: 20px; }
.bonus-terms li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.bonus-terms li:last-child { border: none; }
.bonus-terms li strong { color: var(--text); }

/* ── LIVE TABLE ── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
  text-decoration: none;
}

.live-card:hover { transform: translateY(-4px); border-color: rgba(230,57,70,.4); }

.live-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.live-players {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-info { padding: 14px; }
.live-info h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.live-info p { font-size: 12px; color: var(--text-muted); }
.live-limit { font-size: 12px; color: var(--gold); font-weight: 600; margin-top: 6px; }

/* ── NOTIFICATION POPUP ── */
.win-notify {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: var(--bg-card);
  border: 1px solid rgba(0,230,118,0.4);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: translateX(-120%);
  transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.win-notify.show { transform: translateX(0); }

.notify-icon { font-size: 24px; flex-shrink: 0; }
.notify-text strong { display: block; font-size: 13px; color: var(--text); margin-bottom: 2px; }
.notify-text span { font-size: 12px; color: var(--text-muted); }
.notify-amount { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 900; color: var(--green); margin-left: auto; flex-shrink: 0; }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
}

.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu-inner {
  background: var(--bg-card);
  width: 280px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 10px;
  transition: background .2s, color .2s;
}

.mobile-menu a:hover, .mobile-menu a.active { background: rgba(245,197,24,0.1); color: var(--gold); }
.mobile-menu-close { background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; align-self: flex-end; margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .burger { display: block; }
}

@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .card-features { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .win-notify { min-width: 240px; left: 12px; bottom: 12px; }
}
