:root {
  --bg-primary: #0d0b1a;
  --bg-secondary: #15122a;
  --bg-card: #1c1835;
  --bg-card-hover: #231f42;
  --accent: #c84bff;
  --accent-glow: rgba(200, 75, 255, 0.35);
  --accent-secondary: #ff3d7f;
  --gold: #ffd679;
  --gold-light: #ffe5a0;
  --text-primary: #ffffff;
  --text-secondary: #a89fc8;
  --text-muted: #6b6490;
  --border: rgba(200, 75, 255, 0.18);
  --border-light: rgba(255,255,255,0.07);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.22s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-accent: 0 0 30px rgba(200,75,255,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── HEADER ─────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-logo img { height: 34px; width: auto; }

.header-logo span {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-nav::-webkit-scrollbar { display: none; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(200, 75, 255, 0.12);
}

.nav-link.active { color: var(--accent); }

.nav-link svg { flex-shrink: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,75,255,0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #c84bff, #8a2be2);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,75,255,0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(200,75,255,0.55);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd679, #ffaa00);
  color: #1a1000;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,170,0,0.35);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(255,170,0,0.5);
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../header-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 11, 26, 0.82) 0%,
    rgba(13, 11, 26, 0.45) 50%,
    rgba(13, 11, 26, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 214, 121, 0.15);
  border: 1px solid rgba(255, 214, 121, 0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

/* ─── FEATURES BAR ───────────────────────────────── */
.features-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-right: 1px solid var(--border-light);
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8a2be2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

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

/* ─── CATEGORIES NAV ─────────────────────────────── */
.categories {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 68px;
  z-index: 90;
}

.categories-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.categories-inner::-webkit-scrollbar { display: none; }

.cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.cat-btn:hover { color: var(--text-primary); }

.cat-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.cat-btn .cat-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(200,75,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.cat-btn.active .cat-icon {
  background: rgba(200,75,255,0.25);
}

/* ─── MAIN CONTENT ───────────────────────────────── */
.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* ─── SECTION HEADER ─────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
}

.section-title .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.section-count {
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 20px;
}

.section-link {
  font-size: 14px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.section-link:hover { opacity: 0.8; }

/* ─── GAMES GRID ─────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0,0,0,0.6), var(--shadow-accent);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.game-card:hover img { filter: brightness(0.65); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,11,26,0.95) 0%,
    rgba(13,11,26,0.0) 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 1;
}

.game-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.game-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-play-btn { opacity: 1; }

.game-play-btn span {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(200,75,255,0.5);
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ffd679, #ff9500);
  color: #1a1000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-badge.hot { background: linear-gradient(135deg, #ff3d7f, #ff0058); color: #fff; }
.game-badge.new { background: linear-gradient(135deg, #00e5ff, #0066ff); color: #fff; }

/* ─── LIVE WINS ──────────────────────────────────── */
.live-wins-section {
  margin-bottom: 40px;
}

.live-wins-ticker {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  overflow: hidden;
}

.wins-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wins-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22ff88;
  box-shadow: 0 0 10px #22ff88;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.wins-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 320px;
  overflow: hidden;
}

.win-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  animation: slideInWin 0.4s ease;
  transition: opacity 0.3s, transform 0.3s;
}

@keyframes slideInWin {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.win-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8a2be2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.win-info { flex: 1; min-width: 0; }

.win-player {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.win-game {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.win-amount.big { color: #22ff88; font-size: 20px; }

.win-time {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ─── APK BANNER ─────────────────────────────────── */
.apk-banner {
  background: linear-gradient(135deg, #1c1835, #251f48);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.apk-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,75,255,0.15), transparent 70%);
  right: -60px;
  top: -60px;
  pointer-events: none;
}

.apk-text h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.apk-text p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ─── SEO SECTION ────────────────────────────────── */
.seo-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 40px;
}

.seo-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--gold);
}

.seo-section p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 12px;
}

.seo-section ol {
  color: var(--text-secondary);
  padding-left: 22px;
  line-height: 1.9;
  font-size: 15px;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 40px 0 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .brand-logo span {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-18 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
}

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0 32px;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.page-hero h1 span { color: var(--accent); }

.page-hero p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 500px;
}

/* ─── BONUS CARDS ────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.bonus-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
}

.bonus-card-header {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, rgba(200,75,255,0.12), transparent);
  border-bottom: 1px solid var(--border-light);
}

.bonus-emoji { font-size: 36px; margin-bottom: 12px; }

.bonus-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.bonus-amount {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-card-body { padding: 20px 28px 24px; }

.bonus-card-body p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.bonus-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bonus-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(200,75,255,0.12);
  color: var(--accent);
  border: 1px solid rgba(200,75,255,0.25);
}

/* ─── FAQ ────────────────────────────────────────── */
.faq-list { margin-bottom: 40px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,75,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ─── LIVE PAGE ──────────────────────────────────── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.live-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.live-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.live-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-secondary);
}

.live-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ff3d7f;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.live-badge::before {
  content: '● ';
  font-size: 8px;
}

.live-players {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-card-info { padding: 14px 16px; }

.live-card-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

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

/* ─── MOBILE NAV ─────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(21, 18, 42, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 200;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

.mobile-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  padding: 6px 12px;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.mobile-nav-btn.active, .mobile-nav-btn:hover { color: var(--accent); }

.mobile-nav-btn svg { width: 22px; height: 22px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .features-inner { gap: 0; }
  .feature-item { padding: 14px 16px; }
  .feature-text strong { font-size: 12px; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .mobile-nav { display: block; }
  body { padding-bottom: 70px; }
  .hero { min-height: 320px; }
  .hero-content { padding: 40px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .apk-banner { flex-direction: column; text-align: center; padding: 24px; }
  .features-inner { overflow-x: auto; }
  .features-inner::-webkit-scrollbar { display: none; }
  .feature-item { flex-shrink: 0; }
  .seo-section { padding: 24px; }
  .bonus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── UTILS ──────────────────────────────────────── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
