/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0c14;
  --bg2: #10131f;
  --bg3: #181c2e;
  --card: #1a1f35;
  --border: #252a45;
  --gold: #f5c842;
  --gold2: #e6a800;
  --gold-glow: rgba(245,200,66,.25);
  --green: #1ecb6e;
  --red: #e94545;
  --text: #e8ecf4;
  --muted: #7a82a6;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, #0d1020 0%, #141830 50%, #0d1020 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
}
.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 22px;
  font-size: 13px;
  color: var(--text);
  border-right: 1px solid var(--border);
}
.ticker-item .win-amount { color: var(--green); font-weight: 700; }
.ticker-item .win-game  { color: var(--gold); }
.ticker-item .win-user  { color: var(--muted); }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,12,20,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo img { height: 44px; }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: var(--bg3);
}
.main-nav a.active { color: var(--gold); }

.header-ctas { display: flex; gap: 8px; margin-left: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245,200,66,.4);
}
.btn-green {
  background: linear-gradient(135deg, #1ecb6e 0%, #14a054 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(30,203,110,.25);
}
.btn-green:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(30,203,110,.4);
}
.btn-lg { padding: 14px 36px; font-size: 16px; border-radius: var(--radius); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,12,20,.92) 0%, rgba(10,12,20,.65) 60%, rgba(10,12,20,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,66,.12);
  border: 1px solid rgba(245,200,66,.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-sub small { display: block; color: var(--muted); font-size: .6em; font-weight: 400; margin-top: 4px; }
.hero-desc {
  max-width: 500px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ===== LIVE SUPPORT BADGE ===== */
.live-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.live-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.live-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.live-badge-text { font-size: 13px; }
.live-badge-text strong { display: block; font-size: 14px; }

/* ===== SECTIONS ===== */
.section {
  padding: 64px 0;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
}
.section-title span { color: var(--gold); }
.section-link {
  font-size: 13px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-link:hover { text-decoration: underline; }

/* tab bar */
.tab-bar {
  display: flex;
  gap: 4px;
  background: var(--bg2);
  padding: 4px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
}
.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--card);
  color: var(--text);
}
.tab-btn.active { color: var(--gold); }

/* ===== GAME GRID ===== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  border-color: var(--gold);
}
.game-card-thumb {
  aspect-ratio: 3/2;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.game-card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,200,66,.08) 0%, transparent 60%);
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,12,20,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-body { padding: 10px 12px; }
.game-card-title { font-size: 13px; font-weight: 600; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card-provider { font-size: 11px; color: var(--muted); }
.game-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}
.game-card-badge.hot { background: var(--red); color: #fff; }
.game-card-badge.new { background: var(--green); color: #fff; }

/* ===== BONUS BANNER ===== */
.bonus-banner {
  background: linear-gradient(135deg, #141830 0%, #1a1235 50%, #0e1422 100%);
  border: 1px solid rgba(245,200,66,.2);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.bonus-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245,200,66,.1) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-banner-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 8px;
}
.bonus-banner-text h2 span { color: var(--gold); }
.bonus-banner-text p { color: var(--muted); font-size: 14px; max-width: 400px; }
.bonus-amounts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.bonus-amount-item {
  text-align: center;
  background: rgba(245,200,66,.08);
  border: 1px solid rgba(245,200,66,.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  min-width: 110px;
}
.bonus-amount-item .amount {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.bonus-amount-item .label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.bonus-banner-cta { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.bonus-banner-cta .note { font-size: 11px; color: var(--muted); text-align: center; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.feature-card:hover { border-color: rgba(245,200,66,.3); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== WINS FEED ===== */
.wins-feed {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wins-feed-header {
  background: var(--bg3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.wins-feed-header h3 { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.wins-list { max-height: 340px; overflow: hidden; }
.win-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  animation: slideInRow .4s ease;
}
@keyframes slideInRow {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.win-row:last-child { border-bottom: none; }
.win-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.win-info { flex: 1; min-width: 0; }
.win-info .name { font-size: 13px; font-weight: 600; }
.win-info .game { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-sum {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}
.win-sum.big { color: var(--gold); font-size: 17px; }
.win-time { font-size: 11px; color: var(--muted); white-space: nowrap; }

/* ===== SEO TEXT ===== */
.seo-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}
.seo-section .section-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.seo-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
}
.seo-block h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; margin-top: 16px; }
.seo-block p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.seo-block ul { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.seo-block ul li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.seo-block ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.seo-block ol { counter-reset: ol; display: flex; flex-direction: column; gap: 6px; padding-left: 0; }
.seo-block ol li {
  counter-increment: ol;
  font-size: 13px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.seo-block ol li::before {
  content: counter(ol)'.';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 32px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 10px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 15px; color: var(--muted); max-width: 580px; line-height: 1.6; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text); }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover { border-color: rgba(245,200,66,.4); transform: translateY(-3px); }
.bonus-card-head {
  background: linear-gradient(135deg, #141830 0%, #1a1235 100%);
  padding: 24px 24px 20px;
  position: relative;
  overflow: hidden;
}
.bonus-card-head::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245,200,66,.12) 0%, transparent 70%);
}
.bonus-card-icon { font-size: 36px; margin-bottom: 10px; }
.bonus-card-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.bonus-card-head h3 { font-size: 16px; font-weight: 700; margin-top: 6px; }
.bonus-card-body { padding: 20px 24px; }
.bonus-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.bonus-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.bonus-feature::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: rgba(30,203,110,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 11px;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(245,200,66,.3); }
.faq-question {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  color: var(--gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #000; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-answer-inner a { color: var(--gold); text-decoration: underline; }

/* ===== LIVE GRID ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.live-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  border-color: var(--gold);
}
.live-card-thumb {
  aspect-ratio: 16/10;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.live-indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1s infinite;
}
.live-card-players {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,.65);
  font-size: 11px;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-card-body { padding: 12px; }
.live-card-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.live-card-info { font-size: 11px; color: var(--muted); display: flex; justify-content: space-between; }
.live-card-limit { color: var(--gold); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.footer-badges { display: flex; align-items: center; gap: 12px; }

/* ===== SEO INFO BLOCKS ===== */
.seo-article {
  padding: 64px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.seo-article-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.seo-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}
.seo-infoblock h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.seo-infoblock p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.seo-infoblock ul,
.seo-infoblock ol {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seo-infoblock ul li,
.seo-infoblock ol li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.seo-infoblock ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.seo-infoblock ol {
  counter-reset: seo-ol;
}
.seo-infoblock ol li {
  counter-increment: seo-ol;
  padding-left: 22px;
}
.seo-infoblock ol li::before {
  content: counter(seo-ol)'.';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* FAQ block */
.seo-faq-block {
  margin-bottom: 48px;
}
.seo-faq-block > h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.seo-faq-block > h2 span { color: var(--gold); }

/* Internal links block */
.seo-internal-links {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.seo-internal-links h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.seo-internal-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-internal-links nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text);
  transition: border-color var(--transition), color var(--transition);
}
.seo-internal-links nav a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .wins-features-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 700px) {
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 12px; flex-direction: column; gap: 4px; }
  .main-nav.open { display: flex; }
  .header-ctas { display: none; }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .bonus-banner { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .tab-bar { gap: 2px; }
  .tab-btn { padding: 7px 12px; font-size: 12px; }
}
