/* ===== ROOT & RESET ===== */
:root {
  --bg-primary: #0d0d0f;
  --bg-secondary: #16161a;
  --bg-card: #1e1e24;
  --bg-card-hover: #252530;
  --gold: #f0c040;
  --gold-light: #ffd966;
  --gold-dark: #c99a20;
  --red: #e03c3c;
  --green: #2ecc71;
  --text-primary: #ffffff;
  --text-secondary: #b0b0c0;
  --text-muted: #6b6b80;
  --border: rgba(240, 192, 64, 0.18);
  --shadow-gold: 0 0 24px rgba(240,192,64,0.22);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,15,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

/* ===== NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

.nav-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ===== CTA BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1000;
  box-shadow: 0 4px 18px rgba(240,192,64,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 26px rgba(240,192,64,0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(240,192,64,0.1);
}

.btn-red {
  background: linear-gradient(135deg, #e03c3c 0%, #a52828 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(224,60,60,0.35);
}

.btn-red:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(224,60,60,0.5);
}

.header-btns { display: flex; align-items: center; gap: 10px; }

/* ===== TICKER ===== */
.bonus-ticker {
  background: linear-gradient(90deg, #1a0e00, #251800, #1a0e00);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.ticker-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.ticker-sep { color: var(--gold-dark); opacity: 0.5; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0f 0%, #1a0e00 50%, #0d0d0f 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(240,192,64,0.12) 0%, transparent 70%);
}

.hero-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,192,64,0.12);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge span { animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title .gold { color: var(--gold); }
.hero-title .big { font-size: clamp(44px, 7vw, 80px); display: block; }

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-sub strong { color: var(--gold); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-feat svg { width: 18px; height: 18px; fill: var(--gold); }

/* ===== SECTION ===== */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title svg { width: 26px; height: 26px; fill: var(--gold); }
.section-title .count { font-size: 14px; color: var(--text-muted); font-weight: 600; background: var(--bg-card); padding: 2px 10px; border-radius: 20px; }

.see-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.see-all:hover { gap: 8px; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  aspect-ratio: 3/4;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-card:hover img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.22s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  background: var(--gold);
  color: #1a1000;
  font-size: 13px;
  font-weight: 800;
  padding: 9px;
  border-radius: var(--radius-sm);
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-badge.hot { background: linear-gradient(135deg, #ff6b00, #e03c3c); }
.game-badge.new { background: linear-gradient(135deg, #2ecc71, #1abc9c); }
.game-badge.top { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #1a1000; }

/* ===== LIVE WINS ===== */
.live-wins-section { background: var(--bg-secondary); }

.wins-ticker {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.win-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.05);
  animation: win-appear 0.4s ease;
  transition: border-color 0.3s;
}

.win-item.win-new { border-color: rgba(240,192,64,0.4); }

@keyframes win-appear {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.win-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), #8b5000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 900;
  color: #fff;
}

.win-info { flex: 1; min-width: 0; }

.win-player {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-game {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-amount {
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.win-amount.big { color: var(--green); }

.win-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.wins-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.wins-live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

.wins-live-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(240,192,64,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 24px; height: 24px; fill: var(--gold); }

.feature-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.bonus-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s, border-color 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}

.bonus-card-head {
  background: linear-gradient(135deg, #1a0e00, #2d1c00);
  padding: 28px 24px 20px;
  position: relative;
  overflow: hidden;
}

.bonus-card-head::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(240,192,64,0.2), transparent 70%);
}

.bonus-icon {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
}

.bonus-amount {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}

.bonus-name {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.bonus-card-body {
  padding: 20px 24px;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.bonus-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.bonus-feat::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, #1a0e00 0%, #2d1c00 50%, #1a0e00 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240,192,64,0.1), transparent 70%);
}

.promo-content { position: relative; z-index: 1; }

.promo-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}

.promo-title .gold { color: var(--gold); }

.promo-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.promo-imgs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.promo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(240,192,64,0.3));
}

/* ===== SEO TEXT ===== */
.seo-section {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.seo-content {
  columns: 2;
  column-gap: 40px;
}

.seo-content h2 {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--gold);
  column-span: all;
}

.seo-content h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 20px 0 8px;
  color: var(--text-primary);
  break-inside: avoid;
}

.seo-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.seo-content ul {
  margin: 8px 0 14px 0;
}

.seo-content ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.6;
}

.seo-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-tag {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.age-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0d0d0f 0%, #1a0e00 50%, #0d0d0f 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(240,192,64,0.08), transparent 70%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 10px;
}

.page-hero-title span { color: var(--gold); }

.page-hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== FILTERS ===== */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

/* ===== LIVE TABLE ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.live-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
}

.live-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.live-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.live-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}

.live-card-body {
  padding: 12px 14px;
}

.live-card-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.live-card-provider {
  font-size: 12px;
  color: var(--text-muted);
}

.live-players {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.live-players svg { width: 14px; height: 14px; fill: var(--text-muted); }

/* ===== MOBILE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,13,15,0.98);
  backdrop-filter: blur(14px);
  z-index: 99;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  font-size: 18px;
  padding: 14px 16px;
}

.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 900px) {
  .main-nav, .header-btns { display: none; }
  .hamburger { display: flex; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .seo-content { columns: 1; }
  
  .hero-banner-img { width: 100%; opacity: 0.2; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; text-align: center; }
  .promo-imgs { justify-content: center; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-value {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.07);
}

/* ===== JACKPOT COUNTER ===== */
.jackpot-bar {
  background: linear-gradient(135deg, #1a0800, #2d1500, #1a0800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.jackpot-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}

.jackpot-amount {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(240,192,64,0.5);
}

.jackpot-currency { font-size: 0.5em; vertical-align: super; color: var(--gold-dark); }

/* ===== HERO KW (SEO keyword in H1) ===== */
.hero-kw {
  display: block;
  font-size: 0.38em;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

/* ===== FAQ SECTION ===== */
.faq-section { margin-top: 48px; }

.faq-section > h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--gold);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--border); }

.faq-question {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-primary);
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.22s;
  line-height: 1;
}

.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-item[open] .faq-question { color: var(--gold); }

.faq-answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer a { color: var(--gold); text-decoration: underline; }
.faq-answer a:hover { text-decoration: none; }

/* ===== INTERNAL LINKS NAV ===== */
.seo-internal-links {
  margin-top: 40px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-internal-links__title {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.seo-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-links-list li a {
  display: inline-block;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}

.seo-links-list li a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== SEO ARTICLE WRAPPER ===== */
.seo-article { max-width: 920px; }
