@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #d4af37;
  --gold-light: #f5d86f;
  --gold-dark: #a8892a;
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a26;
  --surface: #16161f;
  --surface2: #1e1e2e;
  --border: #2a2a3e;
  --text: #e8e8f0;
  --text2: #9090a8;
  --red: #e03030;
  --green: #2ecc71;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ══════════════════════════ HEADER ══════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: .5px;
  transition: color .2s, background .2s;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212,175,55,.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.btn-login {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-login:hover { border-color: var(--gold); color: var(--gold); }
.btn-register {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background: var(--gold);
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .3px;
}
.btn-register:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ══════════════════════════ HERO SLIDER ══════════════════════════ */
.hero {
  position: relative;
  margin-top: 70px;
  height: 520px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,15,.85) 35%, rgba(10,10,15,.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}
.hero-badge::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  max-width: 560px;
  text-transform: uppercase;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 16px;
  color: var(--text2);
  max-width: 440px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: rgba(212,175,55,.12); }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .2s, width .2s;
}
.hero-dots span.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ══════════════════════════ WINS TICKER ══════════════════════════ */
.wins-ticker {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.wins-ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}
.wins-ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
  padding-left: 140px;
}
.wins-ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.win-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 13px;
  border-right: 1px solid var(--border);
}
.win-item .win-name { color: var(--gold); font-weight: 700; }
.win-item .win-game { color: var(--text2); font-size: 12px; }
.win-item .win-amount { color: var(--green); font-weight: 700; font-size: 14px; }
.win-item .win-sep { color: var(--border); }

/* Floating wins popup */
.wins-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.win-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  min-width: 280px;
  max-width: 340px;
  animation: toastIn .4s ease;
  pointer-events: all;
}
.win-toast.removing { animation: toastOut .4s ease forwards; }
@keyframes toastIn { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }
@keyframes toastOut { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(-20px)} }
.win-toast-icon { font-size: 22px; flex-shrink: 0; }
.win-toast-body { flex: 1; }
.win-toast-name { font-weight: 700; color: var(--gold); }
.win-toast-text { color: var(--text2); font-size: 12px; margin-top: 2px; }
.win-toast-amount { font-size: 16px; font-weight: 800; color: var(--green); white-space: nowrap; }

/* ══════════════════════════ SECTIONS ══════════════════════════ */
.section { padding: 64px 24px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: var(--gold);
  border-radius: 2px;
}
.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-link:hover { opacity: .75; }

/* ══════════════════════════ GAMES GRID ══════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  transition: transform .25s, border-color .25s;
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
}
.game-card:hover { transform: translateY(-4px) scale(1.02); border-color: var(--gold); }
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.game-card:hover img { transform: scale(1.05); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 12px;
  opacity: 0;
  transition: opacity .25s;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.game-card-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: .5px;
  transition: background .2s;
}
.game-card-play:hover { background: var(--gold-light); }
.game-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.game-card-badge.new { background: var(--green); color: #000; }
.game-card-badge.hot { background: var(--gold); color: #000; }

/* ══════════════════════════ PROMO BANNER ══════════════════════════ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.promo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .25s;
}
.promo-card:hover { transform: translateY(-3px); }
.promo-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s;
}
.promo-card:hover .promo-card-bg { transform: scale(1.04); }
.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,.8) 0%, rgba(10,10,15,.35) 100%);
}
.promo-card-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.promo-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}
.promo-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}
.promo-title span { color: var(--gold); }
.promo-desc { font-size: 13px; color: var(--text2); line-height: 1.5; }
.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  width: fit-content;
  transition: background .2s;
}
.promo-btn:hover { background: var(--gold-light); }

/* ══════════════════════════ STATS BAR ══════════════════════════ */
.stats-bar {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ══════════════════════════ PROVIDER STRIP ══════════════════════════ */
.providers-strip {
  padding: 40px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.providers-inner { max-width: 1400px; margin: 0 auto; }
.providers-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.providers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.provider-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: border-color .2s, color .2s;
}
.provider-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════ FOOTER ══════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text2);
  transition: border-color .2s, color .2s, background .2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.08); }
.footer-col {}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text2);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text2); }
.footer-legal {
  font-size: 11px;
  color: var(--text2);
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
  opacity: .6;
}
.footer-badges { display: flex; gap: 10px; align-items: center; }
.footer-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 1px;
}

/* ══════════════════════════ PAGE HERO ══════════════════════════ */
.page-hero {
  margin-top: 70px;
  padding: 52px 24px 44px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.page-hero-title span { color: var(--gold); }
.page-hero-desc {
  font-size: 15px;
  color: var(--text2);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.6;
}

/* ══════════════════════════ FILTER BAR ══════════════════════════ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text2);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .3px;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(212,175,55,.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════ LIVE TABLE ══════════════════════════ */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.live-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .25s, border-color .25s;
  cursor: pointer;
}
.live-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.live-card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.live-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.live-card:hover .live-card-thumb img { transform: scale(1.06); }
.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:#fff; animation: pulse 1s infinite; }
.live-players {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.live-card-info { padding: 16px; }
.live-card-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.live-card-provider { font-size: 12px; color: var(--text2); margin-bottom: 14px; }
.live-card-limits {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text2);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.live-card-limits span { color: var(--gold); font-weight: 700; }

/* ══════════════════════════ BONUS CARDS ══════════════════════════ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.bonus-card {
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.bonus-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.bonus-card-head {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bonus-bg-shape {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(212,175,55,.06);
}
.bonus-type {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.bonus-amount-sub { font-size: 16px; color: var(--text2); margin-top: 4px; }
.bonus-card-body { padding: 20px 24px; }
.bonus-name { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.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(--text2);
}
.bonus-feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(46,204,113,.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ══════════════════════════ FAQ ══════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 900px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(212,175,55,.4); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s, border-color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ══════════════════════════ CATEGORY TABS ══════════════════════════ */
.cat-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
}
.cat-tab {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .2s;
  border: none;
  background: none;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}
.cat-tab:hover { color: var(--text); }
.cat-tab.active { background: var(--gold); color: #000; }

/* ══════════════════════════ SEARCH ══════════════════════════ */
.search-bar {
  position: relative;
  margin-bottom: 28px;
  max-width: 400px;
}
.search-bar input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 44px 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.search-bar input:focus { border-color: var(--gold); }
.search-bar input::placeholder { color: var(--text2); }
.search-bar svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text2);
  width: 18px; height: 18px;
}

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .burger { display: flex; }
  .header-cta .btn-login { display: none; }
  .hero { height: 420px; }
  .hero-subtitle { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .wins-popup { left: 12px; bottom: 12px; }
  .win-toast { min-width: 240px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 28px; }
}
