/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f0b429;
  --gold-light: #ffd166;
  --gold-dark: #c88800;
  --bg-deep: #07070f;
  --bg-dark: #0d0d1a;
  --bg-card: #12122a;
  --bg-card2: #1a1a35;
  --purple: #1e0a4a;
  --purple2: #2a0d6e;
  --red: #e63946;
  --green: #2dc653;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --border: rgba(240,180,41,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --glow: 0 0 20px rgba(240,180,41,0.3);
  --glow-strong: 0 0 40px rgba(240,180,41,0.5);
  --shadow: 0 8px 32px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,7,15,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}

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

.logo-link img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(240,180,41,0.4));
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-main a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
  white-space: nowrap;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--gold);
  background: rgba(240,180,41,0.08);
}

.nav-main a svg { flex-shrink: 0; }

.header-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #07070f;
  box-shadow: 0 4px 16px rgba(240,180,41,0.35);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(240,180,41,0.55);
  color: #07070f;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  transition: all .2s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(240,180,41,0.08);
  color: var(--gold);
}
.mobile-nav .btn-gold { margin-top: 8px; text-align: center; }

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: linear-gradient(90deg, var(--purple) 0%, #110828 50%, var(--purple) 100%);
  border-bottom: 1px solid rgba(240,180,41,0.1);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: linear-gradient(90deg, var(--purple) 80%, transparent);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 28px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.ticker-item .win-amount {
  color: var(--green);
  font-weight: 700;
}

.ticker-item .win-game {
  color: var(--text);
  font-weight: 600;
}

.ticker-item .win-user {
  color: var(--gold);
}

.ticker-dot { color: rgba(255,255,255,0.2); }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('BG/Welcome.webp');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,15,0.9) 0%, rgba(30,10,74,0.5) 50%, rgba(7,7,15,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-text h1 .gold { color: var(--gold); }

.hero-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

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

.btn-hero {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 800;
}

.hero-bonus-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.hero-bonus-card .bonus-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: var(--glow);
}

.hero-bonus-card .bonus-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-bonus-card .bonus-desc {
  font-size: 15px;
  color: var(--text);
  margin: 12px 0 24px;
}

.hero-bonus-card .bonus-fs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===== SECTION ===== */
.section {
  padding: 48px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .icon { font-size: 24px; }

.section-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

/* ===== GAME GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  background: var(--bg-card);
}

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

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.game-card:hover img { transform: scale(1.05); }

.game-card .game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}

.game-card:hover .game-overlay { opacity: 1; }

.game-card .game-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.game-card .play-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #07070f;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  padding: 7px;
  border-radius: 6px;
  transition: all .2s;
}

.game-card .play-btn:hover { opacity: 0.9; color: #07070f; }

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new { background: var(--green); color: #fff; }
.badge-hot { background: var(--red); color: #fff; }
.badge-top { background: var(--gold); color: #07070f; }

/* ===== PROMO BANNERS ===== */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.promo-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.promo-card:hover img { transform: scale(1.04); }

.promo-card .promo-body {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 24px 20px 20px;
}

.promo-card .promo-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.promo-card .promo-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ===== LIVE SECTION ===== */
.live-section {
  background: linear-gradient(135deg, #0a001f 0%, #060612 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(240,180,41,0.08);
  border-bottom: 1px solid rgba(240,180,41,0.08);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.live-card {
  border-radius: var(--radius);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 20px rgba(109,40,217,0.3);
}

.live-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a0a2e, #2a0d6e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.live-card-body { padding: 14px; }

.live-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(229,57,53,0.15);
  border: 1px solid rgba(229,57,53,0.3);
  color: #ef5350;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.live-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ef5350;
  animation: pulse 1.4s ease infinite;
}

.live-stats { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: 1px solid var(--border);
  margin-bottom: 48px;
}

.stat-item { text-align: center; }

.stat-value {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PAYMENT ICONS ===== */
.payments-section {
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid var(--border);
}

.payments-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 8px;
}

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

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

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

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.6;
}

.footer-legal-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--bg-deep) 100%);
  padding: 48px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 24px;
  position: relative;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all .2s;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,180,41,0.08);
}

/* ===== 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 .25s, box-shadow .25s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bonus-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

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

.bonus-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bonus-badge-welcome { background: var(--gold); color: #07070f; }
.bonus-badge-reload { background: var(--purple2); color: var(--gold-light); border: 1px solid var(--gold-dark); }
.bonus-badge-cashback { background: rgba(44,198,83,0.15); color: var(--green); border: 1px solid rgba(44,198,83,0.3); }
.bonus-badge-vip { background: linear-gradient(135deg, #7b2ff7, #3a0ca3); color: #fff; }
.bonus-badge-fs { background: rgba(240,180,41,0.12); color: var(--gold); border: 1px solid var(--border); }

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

.bonus-amount-display {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  margin: 8px 0;
  line-height: 1;
}

.bonus-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.bonus-terms {
  font-size: 11px;
  color: rgba(136,136,170,0.6);
  margin-top: 10px;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item:hover { border-color: rgba(240,180,41,0.3); }

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  gap: 12px;
  user-select: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240,180,41,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .3s;
  color: var(--gold);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(240,180,41,0.2); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.faq-answer a { color: var(--gold); }

/* ===== LIVE PAGE ===== */
.live-big-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.live-table-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
}

.live-table-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 30px rgba(109,40,217,0.2);
}

.live-table-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #0f0528 0%, #1a0a3e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
}

.live-table-body { padding: 14px; }

.live-table-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.live-table-provider {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.live-table-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.live-limit {
  color: var(--gold);
  font-weight: 700;
}

/* ===== WINS FEED WIDGET ===== */
.wins-feed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.wins-feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--gold);
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  animation: fadeSlideIn .4s ease;
}

.feed-item:last-child { border-bottom: none; }

.feed-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple2), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.feed-info { flex: 1; min-width: 0; }
.feed-user { font-weight: 700; color: var(--text); }
.feed-game { color: var(--text-muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.feed-amount {
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold-dark) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.fw-900 { font-weight: 900; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.w-full { width: 100%; }
.text-center { text-align: center; }

/* ===== SEO SECTION ===== */
.seo-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 56px 20px;
}

.seo-section__wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.seo-article { }

.seo-article__heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.seo-article__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.seo-article__text a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(240,180,41,0.3);
  text-underline-offset: 3px;
}

.seo-article__text a:hover {
  text-decoration-color: var(--gold);
}

.seo-faq__heading,
.seo-links__heading {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.seo-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.seo-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 16px 0;
}

.seo-faq__item:last-child { border-bottom: none; }

.seo-faq__q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}

.seo-faq__a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.seo-faq__a a { color: var(--gold); }

.seo-links__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.seo-links__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .2s;
}

.seo-links__item::before {
  content: "→";
  color: var(--gold);
  flex-shrink: 0;
}

.seo-links__item:hover {
  color: var(--gold);
  border-color: rgba(240,180,41,0.3);
  background: rgba(240,180,41,0.04);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-main, .header-cta { display: none; }
  .burger { display: flex; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-bonus-card { max-width: 360px; margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: auto; }
}
