/* ========================================
   VIABANDA77.CASINO — MAIN STYLESHEET
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #f0c040;
  --gold-light: #ffe176;
  --gold-dark: #c89a10;
  --red: #e03030;
  --red-dark: #b01c1c;
  --green: #00e676;
  --bg-dark: #0a0a12;
  --bg-card: #12121e;
  --bg-card2: #1a1a2e;
  --border: rgba(240,192,64,0.2);
  --text: #e8e8f0;
  --text-muted: #8888a8;
  --neon-blue: #00c8ff;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ══════════════════════════════════════
   WINS TICKER
══════════════════════════════════════ */
.wins-ticker {
  background: linear-gradient(90deg, #0e0e1a, #1a1020, #0e0e1a);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}

.wins-ticker__label {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
}

.wins-ticker__label::after {
  content: '';
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, var(--gold), transparent);
  pointer-events: none;
}

.wins-ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.wins-ticker__track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.win-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  font-size: 12px;
  border-right: 1px solid rgba(240,192,64,0.1);
}

.win-item__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.win-item__name { color: var(--text-muted); }

.win-item__game {
  color: var(--text);
  font-weight: 600;
}

.win-item__amount {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}

/* ══════════════════════════════════════
   HEADER & NAV
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,18,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

.main-nav a.active {
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,192,64,0.05);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0a0a12;
  box-shadow: 0 4px 20px rgba(240,192,64,0.35);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(240,192,64,0.5);
}

.btn-red {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  box-shadow: 0 4px 20px rgba(224,48,48,0.35);
}

.btn-red:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(224,48,48,0.5);
}

.btn-green {
  background: linear-gradient(135deg, #00b050, #00e676);
  color: #000;
  box-shadow: 0 4px 20px rgba(0,230,118,0.3);
}

.btn-green:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0,230,118,0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,18,0.1) 0%,
    rgba(10,10,18,0.3) 50%,
    rgba(10,10,18,0.85) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  max-width: 640px;
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 16px;
  color: rgba(232,232,240,0.85);
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 6;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════
   LIVE WINS FEED (side panel)
══════════════════════════════════════ */
.live-wins-feed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 50;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.feed-item {
  background: rgba(18,18,30,0.95);
  border: 1px solid rgba(240,192,64,0.3);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInLeft 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.feed-item.big-win {
  border-left-color: var(--red);
  border-color: rgba(224,48,48,0.4);
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateX(-20px); }
}

.feed-item__icon {
  font-size: 22px;
  flex-shrink: 0;
}

.feed-item__info { flex: 1; min-width: 0; }

.feed-item__player {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-item__game {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-item__amount {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.feed-item.big-win .feed-item__amount { color: #ff6060; }

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title .icon {
  color: var(--gold);
  font-size: 1em;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.view-all {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.view-all:hover { color: var(--gold-light); }

/* ══════════════════════════════════════
   GAMES GRID
══════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.games-grid.wide {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  aspect-ratio: 3/4;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(240,192,64,0.15);
  border-color: rgba(240,192,64,0.3);
  z-index: 2;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover img { transform: scale(1.08); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,18,0.95) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  gap: 8px;
}

.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.game-card__play {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--gold);
  color: #000;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.game-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.game-card__badge.new { background: var(--green); color: #000; }
.game-card__badge.hot { background: var(--red); }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar .section {
  padding: 28px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-item__value {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ══════════════════════════════════════
   PROMOTIONS / BONUSES
══════════════════════════════════════ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.promo-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.promo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,192,64,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.promo-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.promo-card__body {
  padding: 20px;
}

.promo-card__tag {
  display: inline-block;
  background: rgba(240,192,64,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.promo-card__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.promo-card__amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════
   LIVE CASINO CARDS
══════════════════════════════════════ */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.live-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.live-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,192,64,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.live-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a2e, #2a1a3e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-card__body {
  padding: 16px;
}

.live-card__name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.live-card__players {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }

.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(240,192,64,0.4); }

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  user-select: none;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a0a28 50%, #0a1218 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0c040' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: #080810;
  border-top: 1px solid var(--border);
  padding: 60px 20px 30px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand__logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(240,192,64,0.1);
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--text); padding-left: 4px; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-18 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FILTER TABS
══════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

/* ══════════════════════════════════════
   BONUS TERMS
══════════════════════════════════════ */
.bonus-terms {
  background: rgba(240,192,64,0.06);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
}

/* ══════════════════════════════════════
   RESPONSIBLE GAMBLING BAR
══════════════════════════════════════ */
.rg-bar {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.rg-bar a { color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,18,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 40px;
  border-radius: 8px;
  transition: var(--transition);
  width: 280px;
  text-align: center;
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

/* ══════════════════════════════════════
   COUNTER ANIMATION
══════════════════════════════════════ */
.count-up { transition: none; }

/* ══════════════════════════════════════
   DIVIDER
══════════════════════════════════════ */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  max-width: 1320px;
}

/* ══════════════════════════════════════
   SEO TEXT BLOCK
══════════════════════════════════════ */
.seo-text-section {
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.seo-text {
  max-width: 900px;
}

.seo-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
  line-height: 1.25;
}

.seo-text h2:first-child { margin-top: 0; }

.seo-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin: 30px 0 12px;
}

.seo-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.seo-text p strong { color: var(--text); font-weight: 600; }

.seo-text ul,
.seo-text ol {
  margin: 12px 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-text li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 4px;
}

.seo-text li strong { color: var(--text); font-weight: 600; }

.seo-text ul li::marker { color: var(--gold); }
.seo-text ol li::marker { color: var(--gold); font-weight: 700; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar .section { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-outline { display: none; }
  .hero { height: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .live-wins-feed { width: 240px; }
  .promo-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .stats-bar .section { grid-template-columns: repeat(2, 1fr); padding: 20px; }
}

@media (max-width: 480px) {
  .hero { height: 340px; }
  .hero-content { padding-bottom: 28px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .live-wins-feed { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
