/* ===== BANDA CASINO — MAIN STYLESHEET ===== */
:root {
  --gold: #f0c040;
  --gold-dark: #c9922a;
  --gold-light: #ffe082;
  --green: #1db954;
  --green-dark: #148f3e;
  --bg-dark: #070b14;
  --bg-card: #0e1628;
  --bg-card2: #111d35;
  --border: rgba(240,192,64,.18);
  --text: #e8eaf6;
  --muted: #8892b0;
  --red: #ff4757;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,.6);
  --font: 'Segoe UI', 'Arial', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

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

.logo-link img {
  height: 44px;
  width: auto;
}

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

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

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(240,192,64,.08);
}

.main-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #f0c040, #c9922a);
  color: #0a0e1a;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(240,192,64,.35);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(240,192,64,.5);
  color: #0a0e1a;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: linear-gradient(90deg, rgba(29,185,84,.15), rgba(29,185,84,.08));
  border-bottom: 1px solid rgba(29,185,84,.2);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.wins-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: rgba(29,185,84,.12);
  height: 100%;
  border-right: 1px solid rgba(29,185,84,.2);
  white-space: nowrap;
}

.wins-ticker-label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.wins-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

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

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

.win-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 13px;
  color: var(--muted);
  border-right: 1px solid rgba(255,255,255,.06);
}

.win-item .win-name { color: var(--text); font-weight: 600; }
.win-item .win-game { color: var(--gold); }
.win-item .win-amount { color: var(--green); font-weight: 700; }

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

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,11,20,.85) 0%, rgba(7,11,20,.4) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,192,64,.15);
  border: 1px solid rgba(240,192,64,.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
}

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

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

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f0c040, #c9922a);
  color: #070b14;
  font-weight: 800;
  font-size: 16px;
  border-radius: 10px;
  transition: all .2s;
  box-shadow: 0 6px 24px rgba(240,192,64,.4);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240,192,64,.55);
  color: #070b14;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.13);
  color: var(--gold);
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== 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: 20px;
}

.stat-item {
  text-align: center;
  padding: 12px;
}

.stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

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

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

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

.section-title {
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.section-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.see-all {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 16px;
  border: 1px solid rgba(240,192,64,.3);
  border-radius: 6px;
  transition: all .2s;
}
.see-all:hover {
  background: rgba(240,192,64,.08);
  color: var(--gold-light);
}

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

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.cat-tab:hover, .cat-tab.active {
  background: rgba(240,192,64,.12);
  border-color: rgba(240,192,64,.4);
  color: var(--gold);
}

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

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

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0,0,0,.6);
  border-color: rgba(240,192,64,.4);
}

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

.game-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.badge {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}

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

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,11,20,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  backdrop-filter: blur(4px);
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #f0c040, #c9922a);
  color: #0a0e1a;
  font-weight: 800;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s;
}

.play-btn:hover {
  transform: scale(1.05);
  color: #0a0e1a;
}

.game-info {
  padding: 10px 12px;
}

.game-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

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

.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .25s;
  text-decoration: none;
}
.promo-card:hover { transform: translateY(-3px); }

.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,.9) 0%, rgba(7,11,20,.3) 60%, transparent 100%);
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}

.promo-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.promo-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.promo-desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #f0c040, #c9922a);
  color: #0a0e1a;
  font-weight: 700;
  font-size: 13px;
  border-radius: 7px;
  text-decoration: none;
  transition: transform .15s;
}
.btn-promo:hover { transform: scale(1.03); color: #0a0e1a; }

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

.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
  text-decoration: none;
  display: block;
}

.live-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,192,64,.4);
}

.live-thumb-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.live-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.live-card:hover .live-thumb-wrap img { transform: scale(1.05); }

.live-indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,71,87,.85);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.live-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}

.live-players {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,.6);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--text);
  backdrop-filter: blur(4px);
}

.live-info {
  padding: 12px 14px;
}

.live-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.live-type {
  font-size: 12px;
  color: var(--muted);
}

.live-limits {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.live-limits span:last-child { color: var(--gold); }

/* ===== BONUSES PAGE ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f0c040, #c9922a);
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,192,64,.3);
}

.bonus-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.bonus-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.bonus-amount {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}

.bonus-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.bonus-features {
  list-style: none;
  margin-bottom: 20px;
}

.bonus-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  padding: 4px 0;
}

.bonus-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.btn-bonus {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #f0c040, #c9922a);
  color: #0a0e1a;
  font-weight: 800;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.btn-bonus:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,192,64,.4);
  color: #0a0e1a;
}

/* ===== FAQ PAGE ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.open { border-color: rgba(240,192,64,.35); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}

.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(240,192,64,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .3s, background .2s;
  color: var(--gold);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(240,192,64,.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,192,64,.06) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 10px;
}

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

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

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.search-input {
  flex: 1;
  padding: 11px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus { border-color: rgba(240,192,64,.4); }

.btn-search {
  padding: 11px 20px;
  background: linear-gradient(135deg, #f0c040, #c9922a);
  color: #0a0e1a;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform .15s;
}
.btn-search:hover { transform: scale(1.03); }

/* ===== FOOTER ===== */
.site-footer {
  background: #040710;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo-link img { height: 38px; margin-bottom: 14px; }

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-license {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.footer-license img { height: 32px; opacity: .7; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: .3px;
}

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

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

.footer-col ul li a {
  color: var(--muted);
  font-size: 13px;
  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: 20px;
  text-align: center;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7,11,20,.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s;
}

.mobile-nav.open {
  transform: translateX(0);
  display: flex;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: rgba(240,192,64,.08); color: var(--gold); }

.mobile-nav .btn-primary { margin-top: 16px; justify-content: center; }

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.gradient-text {
  background: linear-gradient(135deg, #f0c040, #c9922a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RESPONSIBLE GAMING BANNER ===== */
.rg-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.rg-banner .rg-icon { font-size: 28px; flex-shrink: 0; }
.rg-banner p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.rg-banner strong { color: var(--text); }

/* ===== SEO CONTENT SECTIONS ===== */
.seo-section {
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.seo-article {
  display: grid;
  gap: 32px;
}

.seo-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.seo-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 800px;
}

.seo-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(240,192,64,.4);
  text-underline-offset: 3px;
  transition: color .2s;
}
.seo-link:hover { color: var(--gold-light); }

.seo-faq .faq-list { max-width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; margin-left: auto; }

  .hero { height: 420px; }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }

  .footer-main { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .promo-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 16px; }
}
