/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a227;
  --gold-light: #f0c84a;
  --gold-glow: rgba(201, 162, 39, 0.4);
  --red: #e63946;
  --red-dark: #c1121f;
  --bg-deep: #06060d;
  --bg-dark: #0d0d1a;
  --bg-card: #13132b;
  --bg-card2: #1a1a38;
  --border: rgba(201, 162, 39, 0.25);
  --border-bright: rgba(201, 162, 39, 0.6);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --green: #2ecc71;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow-gold: 0 0 20px rgba(201, 162, 39, 0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: linear-gradient(to bottom, var(--gold), var(--red));
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #c9a227, #f0c84a, #c9a227);
  background-size: 200% 100%;
  color: #000;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 162, 39, 0.6);
}

.btn-red {
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: #fff;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6, 6, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-wrap img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.1);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  margin-left: auto;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(6, 6, 13, 0.98);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.mobile-nav a:hover { background: var(--bg-card); color: var(--gold-light); }

/* ===== WINNERS TICKER ===== */
.winners-bar {
  background: linear-gradient(90deg, #0d0d1a, #1a1428, #0d0d1a);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.winners-label {
  flex-shrink: 0;
  padding: 0 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--border);
  background: var(--bg-deep);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.winners-label::before { content: '🏆'; }

.winners-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.winners-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
}

.winners-track:hover { animation-play-state: paused; }

.winner-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  height: 38px;
}

.winner-item .w-name { color: var(--text); font-weight: 600; }
.winner-item .w-game { color: var(--gold); }
.winner-item .w-amount { color: var(--green); font-weight: 700; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  margin-top: 72px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 6, 13, 0.85) 0%,
    rgba(6, 6, 13, 0.4) 50%,
    rgba(6, 6, 13, 0.1) 100%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 12px;
}

.hero-content h1 span {
  color: var(--gold-light);
  text-shadow: 0 0 30px var(--gold-glow), 0 2px 20px rgba(0,0,0,0.8);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== MAIN CONTENT ===== */
.main-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== QUICK LINKS ===== */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 32px 0 0;
}

.quick-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
}

.quick-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.quick-card .icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.quick-card h3 {
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.quick-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== GAMES GRID ===== */
.section { padding: 40px 0; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  group: true;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-bright);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), var(--shadow-gold);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover img { transform: scale(1.08); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,13,0.95) 0%, rgba(6,6,13,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover .game-overlay { opacity: 1; }

.game-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.game-play-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.game-play-btn:hover { transform: scale(1.05); }

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-badge.hot {
  background: linear-gradient(135deg, #ff6b35, #e63946);
}

.game-badge.new {
  background: linear-gradient(135deg, #2ecc71, #1abc9c);
  color: #000;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, #1a1428, #2d1b4e, #1a1428);
  border: 1px solid rgba(100, 50, 200, 0.4);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 50, 200, 0.15), transparent 70%);
  pointer-events: none;
}

.promo-text h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 8px;
}

.promo-text h2 span { color: var(--gold-light); }

.promo-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 20px;
}

.promo-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 0 30px var(--gold-glow);
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}

.promo-value small {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== LIVE GAMES ===== */
.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: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.live-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.live-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.live-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.live-info {
  padding: 16px;
}

.live-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.live-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.live-meta .players { color: var(--green); }

/* ===== BONUSES PAGE ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.bonus-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.bonus-header {
  padding: 28px 24px 20px;
  background: linear-gradient(135deg, #1a1a38, #2a1a45);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.bonus-icon { font-size: 3rem; margin-bottom: 12px; }

.bonus-header h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.bonus-amount span {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

.bonus-body { padding: 20px 24px; }

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.bonus-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FAQ PAGE ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open { border-color: var(--border-bright); }

.faq-q {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.2s;
  user-select: none;
}

.faq-item.open .faq-q { color: var(--gold-light); }

.faq-arrow {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s;
  color: var(--text-muted);
}

.faq-item.open .faq-arrow {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(180deg);
  background: rgba(201, 162, 39, 0.1);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 18px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, #0d0d1a, #1a1428, #0d1a2a);
  padding: 52px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.08), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 10px;
}

.page-hero h1 span { color: var(--gold-light); }

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover,
.filter-tab.active {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.age-badge {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  font-weight: 700;
}

/* ===== SLOTS PAGE SPECIFIC ===== */
.slots-search {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}

.search-input::placeholder { color: var(--text-muted); }
.search-input:focus { border-color: var(--gold); }

/* ===== LIVE PAGE SPECIFIC ===== */
.dealer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.dealer-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

/* ===== LOADING ANIMATION ===== */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card2) 50%, var(--bg-card) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .hero { height: 400px; }
}

@media (max-width: 640px) {
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .footer-top { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero { height: 320px; }
  .bonus-grid { grid-template-columns: 1fr; }
}
