/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:    #0d0e1a;
  --bg-card:    #13162a;
  --bg-card2:   #1a1e35;
  --accent:     #7b4ff8;
  --accent2:    #a87cff;
  --gold:       #f0c040;
  --gold2:      #ffd966;
  --green:      #27d07a;
  --red:        #ff4d6d;
  --text:       #e8e8ff;
  --text-dim:   #8890b5;
  --border:     rgba(123,79,248,.25);
  --radius:     12px;
  --radius-sm:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  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(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,14,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 16px; }
.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: all .2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--text);
  background: rgba(123,79,248,.18);
}
.nav a.active { color: var(--accent2); }

.header-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #5b2fe0);
  color: #fff;
  box-shadow: 0 4px 16px rgba(123,79,248,.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,79,248,.55); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e8a800);
  color: #1a1000;
  box-shadow: 0 4px 16px rgba(240,192,64,.35);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,192,64,.5); }

.btn-green {
  background: linear-gradient(135deg, var(--green), #1ba05e);
  color: #fff;
  box-shadow: 0 4px 16px rgba(39,208,122,.35);
}
.btn-green:hover { transform: translateY(-1px); }

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: rgba(19,22,42,.95);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ticker-label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%  { opacity: .4; transform: scale(1.3); }
}
.ticker-track {
  overflow: hidden;
  flex: 1;
}
.ticker-list {
  display: flex;
  gap: 32px;
  animation: ticker-scroll 30s linear infinite;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
}
.ticker-item .t-user { color: var(--accent2); font-weight: 600; }
.ticker-item .t-game { color: var(--text-dim); }
.ticker-item .t-amount { color: var(--gold); font-weight: 700; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  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;
  filter: brightness(.45) saturate(1.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,14,26,.85) 0%,
    rgba(91,47,224,.25) 50%,
    rgba(13,14,26,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,192,64,.12);
  border: 1px solid rgba(240,192,64,.3);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-bonus-card {
  background: linear-gradient(135deg, rgba(123,79,248,.25), rgba(91,47,224,.15));
  border: 1px solid rgba(123,79,248,.4);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.hero-bonus-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(123,79,248,.35), transparent 70%);
  border-radius: 50%;
}
.bonus-tag {
  display: inline-block;
  background: var(--gold);
  color: #1a1000;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bonus-big {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bonus-plus { font-size: 32px; color: var(--text-dim); margin: 4px 0; }
.bonus-fs {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent2);
  margin-bottom: 8px;
}
.bonus-sub { font-size: 13px; color: var(--text-dim); margin-bottom: 20px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--bg-card);
  padding: 18px 24px;
  text-align: center;
}
.stat-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.stat-item:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.stat-val {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-dim); margin-top: 3px; }

/* ===== SECTION ===== */
.section { padding: 60px 20px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .icon { font-size: 22px; }
.section-link {
  font-size: 14px;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.section-link:hover { gap: 8px; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.game-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(123,79,248,.3);
}
.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}
.game-thumb::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,79,248,.75);
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity .2s;
}
.game-card:hover .game-thumb::after { opacity: 1; }
.game-thumb-gradient {
  position: absolute;
  inset: 0;
  opacity: .6;
}
.game-info { padding: 10px 12px; }
.game-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.game-provider { font-size: 11px; color: var(--text-dim); }
.game-hot {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
}
.game-new {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* ===== BONUS SECTION ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.bonus-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(123,79,248,.2);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: .15;
}
.bonus-card.welcome::before  { background: var(--gold); }
.bonus-card.reload::before   { background: var(--accent); }
.bonus-card.cashback::before { background: var(--green); }
.bonus-card.freespin::before { background: var(--red); }
.bonus-card .b-icon { font-size: 36px; margin-bottom: 12px; }
.bonus-card .b-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.bonus-card .b-amount {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.bonus-card .b-desc { font-size: 13px; color: var(--text-dim); line-height: 1.55; margin-bottom: 18px; }
.bonus-card .b-wager { font-size: 12px; color: var(--text-dim); margin-bottom: 14px; }
.bonus-card .b-wager span { color: var(--text); font-weight: 600; }

/* ===== LIVE WINS FEED ===== */
.wins-feed {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wins-feed-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}
.wins-feed-header .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.wins-list { max-height: 360px; overflow-y: auto; }
.win-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(123,79,248,.08);
  transition: background .2s;
  animation: fadeIn .4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.win-row:hover { background: rgba(123,79,248,.06); }
.win-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.win-details { flex: 1; min-width: 0; }
.win-user { font-size: 13px; font-weight: 600; }
.win-game { font-size: 12px; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-amount { font-size: 15px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.win-time { font-size: 11px; color: var(--text-dim); flex-shrink: 0; }

/* ===== TEXT CONTENT ===== */
.text-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.text-content { max-width: 900px; margin: 0 auto; padding: 50px 20px; }
.text-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.text-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--accent2);
}
.text-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}
.text-content ul {
  margin: 10px 0 16px 18px;
  list-style: disc;
}
.text-content ul li {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 6px;
}
.text-content ol {
  margin: 10px 0 16px 18px;
}
.text-content ol li {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
  user-select: none;
}
.faq-question:hover { background: rgba(123,79,248,.08); }
.faq-arrow {
  font-size: 12px;
  color: var(--accent2);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* ===== PROVIDERS ===== */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.provider-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all .2s;
  cursor: pointer;
}
.provider-badge:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(123,79,248,.1);
}

/* ===== PAYMENT METHODS ===== */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.payment-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== LIVE TABLE ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.live-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
}
.live-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(123,79,248,.3);
}
.live-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.live-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1s infinite;
}
.live-players {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,.6);
  color: var(--text-dim);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
}
.live-info { padding: 12px; }
.live-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.live-limits { font-size: 12px; color: var(--text-dim); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent2); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--border);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 2px solid var(--text-dim);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(91,47,224,.3), rgba(13,14,26,.9));
  border-bottom: 1px solid var(--border);
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(123,79,248,.2), transparent 70%);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  position: relative;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.65;
  position: relative;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover, .filter-tab.active {
  background: rgba(123,79,248,.2);
  border-color: var(--accent);
  color: var(--text);
}
.filter-tab.active { color: var(--accent2); font-weight: 600; }

/* ===== SUPPORT FLOAT ===== */
.support-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.support-btn {
  background: linear-gradient(135deg, var(--green), #1ba05e);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(39,208,122,.4);
  transition: all .2s;
}
.support-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(39,208,122,.55); }
.support-tooltip {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 200px;
  text-align: right;
}
.support-tooltip strong { color: var(--green); }

/* ===== INTERNAL LINKS (SEO nav) ===== */
.internal-links { margin-top: 28px; }
.internal-links h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.internal-links ul { display: flex; flex-direction: column; gap: 8px; }
.internal-links ul li a {
  font-size: 14px;
  color: var(--accent2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.internal-links ul li a::before {
  content: '→';
  font-size: 12px;
  opacity: .7;
}
.internal-links ul li a:hover { color: var(--gold); }

/* ===== FAQ SEO block ===== */
.faq-seo { margin-top: 16px; }
.text-content .internal-links ul { list-style: none; margin: 0; padding: 0; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(13,14,26,.98);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    z-index: 99;
  }
  .burger { display: flex; }
  .header-actions .btn-ghost { display: none; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-bonus-card { max-width: 320px; margin: 0 auto; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .stat-item:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
  .stat-item:nth-child(2) { border-radius: 0; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .games-grid  { grid-template-columns: repeat(2, 1fr); }
  .live-grid   { grid-template-columns: repeat(2, 1fr); }
}
