/* =====================================================
   BigClash Casino — Design System
   Mobile-first, visually rich, performance-optimised
   ===================================================== */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Rajdhani','Segoe UI',system-ui,sans-serif; background: #071832; color: #fff; min-height: 100vh; overflow-x: hidden; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Design Tokens ── */
:root {
  --bg-dark:     #071832;
  --bg-deep:     #040e1c;
  --bg-mid:      #0b2248;
  --bg-card:     #0d2a58;
  --bg-card-2:   #0f3066;
  --bg-sidebar:  #060f20;
  --bg-header:   #040e1c;
  --blue:        #1a6fe8;
  --blue-light:  #3d8ef0;
  --blue-glow:   rgba(26,111,232,.45);
  --gold:        #ffd42a;
  --gold-dark:   #c9a800;
  --green:       #2ee84a;
  --green-glow:  rgba(46,232,74,.4);
  --red:         #e8342e;
  --purple:      #8b2be8;
  --orange:      #e87820;
  --text:        #ffffff;
  --text-muted:  #7a9bc8;
  --text-dim:    #4a6a98;
  --border:      rgba(255,255,255,.07);
  --border-blue: rgba(26,111,232,.3);
  --sidebar-w:   200px;
  --header-h:    62px;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   14px;
  --shadow-card: 0 4px 20px rgba(0,0,0,.4);
  --shadow-glow: 0 0 20px var(--blue-glow);
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--bg-header);
  display: flex; align-items: center;
  padding: 0 16px;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}

/* Mobile burger */
.mob-toggle {
  display: none;
  background: rgba(26,111,232,.15);
  border: 1px solid var(--border-blue);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background .2s;
}
.mob-toggle:hover { background: rgba(26,111,232,.3); }

/* Logo */
.header-logo {
  display: flex; align-items: center; flex-shrink: 0;
  margin-left: var(--sidebar-w);
  transition: margin .3s;
}
.logo-wrap {
  display: flex; align-items: center;
  background: var(--bg-header);
  padding: 3px 6px;
  border-radius: var(--radius-sm);
  transition: transform .25s;
}
.header-logo:hover .logo-wrap { transform: scale(1.03); }
.header-logo-img {
  height: 48px; width: auto; max-width: 160px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1) saturate(1.3) contrast(1.1);
  transition: filter .25s;
}
.header-logo:hover .header-logo-img { filter: brightness(1.25) saturate(1.5); }

/* Search bar */
.header-search {
  flex: 1; max-width: 380px;
  position: relative;
  margin: 0 8px;
}
.header-search input {
  width: 100%;
  background: rgba(11,34,72,.8);
  border: 1px solid var(--border-blue);
  border-radius: 24px;
  padding: 9px 18px 9px 42px;
  color: var(--text); font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,232,.15);
}
.ico-search {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted); font-size: 14px;
  pointer-events: none;
}

/* Header action buttons */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform .15s, box-shadow .15s, filter .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-login {
  background: rgba(255,255,255,.07);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 18px; font-size: 13px;
}
.btn-login:hover { background: rgba(26,111,232,.2); border-color: var(--blue); }

.btn-register {
  background: linear-gradient(135deg, #1a6fe8 0%, #0e4fb5 100%);
  color: #fff;
  border: 1px solid rgba(26,111,232,.6);
  padding: 8px 20px; font-size: 13px;
  box-shadow: 0 3px 14px rgba(26,111,232,.45);
}
.btn-register:hover { filter: brightness(1.12); box-shadow: 0 5px 20px rgba(26,111,232,.6); }

.btn-cta {
  background: linear-gradient(135deg, #2ee84a 0%, #18b834 100%);
  color: #fff;
  border: 1px solid rgba(46,232,74,.5);
  padding: 14px 36px; font-size: 15px;
  border-radius: var(--radius);
  box-shadow: 0 5px 22px var(--green-glow);
  letter-spacing: .8px;
  font-weight: 800;
}
.btn-cta:hover { filter: brightness(1.1); box-shadow: 0 8px 28px rgba(46,232,74,.6); transform: translateY(-2px); }

/* ══════════════════════════════════
   SIDEBAR
══════════════════════════════════ */
.sidebar {
  position: fixed;
  top: var(--header-h); left: 0;
  width: var(--sidebar-w);
  height: calc(100vh - var(--header-h));
  background: var(--bg-sidebar);
  overflow-y: auto; overflow-x: hidden;
  z-index: 900;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: var(--border-blue) transparent;
}
.sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--border-blue); border-radius: 3px; }

.sidebar-section {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-footer { margin-top: auto; padding: 6px 0; border-top: 1px solid var(--border); }

.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  margin: 2px 6px;
  transition: background .18s;
  position: relative;
}
.sidebar-item:hover { background: rgba(26,111,232,.18); }
.sidebar-item.active {
  background: linear-gradient(90deg, rgba(26,111,232,.25), rgba(26,111,232,.08));
  border-left: 3px solid var(--blue);
  padding-left: 9px;
}
.sidebar-item.active .item-label { color: #fff; font-weight: 800; }

.sidebar-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  color: var(--text-muted);
  transition: color .2s;
}
.sidebar-item:hover .sidebar-icon { color: var(--blue-light); }
.sidebar-item.active .sidebar-icon { color: var(--blue); }
.item-label { font-size: 11.5px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; color: #b8ceec; white-space: nowrap; }
.item-badge {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: var(--gold); color: #000;
  font-size: 8px; font-weight: 900;
  padding: 2px 5px; border-radius: 3px; letter-spacing: .4px;
}

/* Overlay for mobile */
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 860; backdrop-filter: blur(2px);
}

/* ══════════════════════════════════
   MAIN WRAPPER
══════════════════════════════════ */
.main-wrapper {
  margin-left: var(--sidebar-w);
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
}

/* ══════════════════════════════════
   HERO BANNER
══════════════════════════════════ */
.hero {
  position: relative;
  background:
    linear-gradient(105deg, rgba(4,14,28,.96) 0%, rgba(7,24,50,.88) 40%, rgba(7,24,50,.35) 70%, transparent 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  min-height: 360px;
  display: flex; align-items: center;
  overflow: hidden;
}
/* subtle dot-grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* bottom glow */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 52px 60px;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: rgba(26,111,232,.25);
  border: 1px solid rgba(26,111,232,.5);
  color: #a0c4ff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 4px;
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.08; text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(255,212,42,.3), 0 0 60px rgba(255,212,42,.1);
}
.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,.8);
  margin-bottom: 26px; font-weight: 500;
}
/* hero-visual hidden — no SVG */
.hero-visual { display: none; }

/* hero slider controls — removed */

/* ══════════════════════════════════
   CATEGORY BAR
══════════════════════════════════ */
.cat-bar {
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  padding: 0 12px;
  overflow-x: auto; scrollbar-width: none;
  position: sticky; top: var(--header-h); z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-list { display: flex; align-items: stretch; gap: 4px; min-width: max-content; padding: 6px 0; }

.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 14px; cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all .2s; white-space: nowrap; min-width: 70px;
}
.cat-item:hover { background: rgba(26,111,232,.15); border-color: var(--border-blue); }
.cat-item.active {
  background: linear-gradient(135deg, rgba(26,111,232,.28), rgba(26,111,232,.12));
  border-color: rgba(26,111,232,.5);
  box-shadow: 0 0 12px rgba(26,111,232,.2);
}
.cat-icon {
  font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  height: 20px; width: 20px;
  color: var(--text-muted);
}
.cat-icon i { font-size: 15px; }
.cat-item:hover .cat-icon i, .cat-item.active .cat-icon i { color: var(--blue-light); }
.cat-label { font-size: 9.5px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: .4px; }
.cat-item:hover .cat-icon,
.cat-item.active .cat-icon { color: var(--blue-light); }
.cat-item.active .cat-label, .cat-item:hover .cat-label { color: #fff; }

/* ══════════════════════════════════
   BREADCRUMB
══════════════════════════════════ */
.breadcrumb {
  padding: 8px 20px;
  background: rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-dim); }

/* ══════════════════════════════════
   CONTENT AREA
══════════════════════════════════ */
.content-area { padding: 24px 20px; background: var(--bg-dark); }

/* ── Section header ── */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; flex-wrap: wrap; }
.sec-title {
  font-size: 17px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.sec-title::before {
  content: ''; display: block;
  width: 4px; height: 18px;
  background: linear-gradient(to bottom, var(--blue), var(--purple));
  border-radius: 2px;
}
.sec-link {
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .5px;
  border: 1px solid var(--border-blue);
  padding: 5px 12px; border-radius: 4px;
  transition: all .2s;
}
.sec-link:hover { background: rgba(26,111,232,.15); color: var(--blue-light); }

/* ══════════════════════════════════
   GAME CARDS
══════════════════════════════════ */
.games-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.game-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,.6), 0 0 20px rgba(26,111,232,.3);
  border-color: rgba(26,111,232,.55);
  z-index: 2;
}

.game-img, .game-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
  display: block;
}
.game-card:hover .game-img,
.game-card:hover .game-card-img { transform: scale(1.08); }

.game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, transparent 45%, rgba(0,0,0,.75) 100%);
}

.game-badge {
  position: absolute; top: 7px; left: 7px;
  font-size: 9px; font-weight: 800;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .6px;
  background: var(--blue); color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.game-badge.hot { background: linear-gradient(135deg, #e8342e, #b02020); }
.game-badge.new { background: linear-gradient(135deg, #8b2be8, #6a1ab0); }
.game-badge.excl { background: linear-gradient(135deg, #ffd42a, #c9a800); color: #000; }

.game-title {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 8px 9px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; color: #fff;
  letter-spacing: .3px; line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

.game-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
  background: rgba(0,0,0,.25);
}
.game-card:hover .game-play-btn { opacity: 1; }
.play-circle {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green), #18b834);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 19px;
  box-shadow: 0 4px 20px var(--green-glow);
  transform: scale(.9); transition: transform .2s;
}
.game-card:hover .play-circle { transform: scale(1); }

/* ══════════════════════════════════
   STATS GRID
══════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.stat-box {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-mid));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.stat-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}
.stat-box:hover { border-color: var(--border-blue); transform: translateY(-2px); }
.stat-val { font-size: 24px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--text-muted); letter-spacing: .5px; }

/* ══════════════════════════════════
   PROMO STRIP
══════════════════════════════════ */
.promo-strip {
  background: linear-gradient(135deg, #0d2a58 0%, #091e3e 60%, #120a3a 100%);
  border: 1px solid rgba(26,111,232,.4);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-bottom: 20px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  position: relative; overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green));
}
.promo-strip::after {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(26,111,232,.15), transparent 70%);
  pointer-events: none;
}
.promo-strip-text h3 {
  font-size: 20px; font-weight: 900;
  color: var(--gold); text-transform: uppercase;
  line-height: 1.2; margin-bottom: 4px;
}
.promo-strip-text p { font-size: 13px; color: #a0c4ec; }

/* ══════════════════════════════════
   SEO SECTIONS
══════════════════════════════════ */
.seo-section {
  background: linear-gradient(145deg, var(--bg-mid) 0%, #0a1e42 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 14px;
  transition: border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.seo-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--blue), var(--purple));
  border-radius: 0 0 0 var(--radius-lg);
}
.seo-section:hover {
  border-color: rgba(26,111,232,.35);
  box-shadow: 0 4px 24px rgba(26,111,232,.1);
}

.seo-section h2 {
  font-size: 19px; font-weight: 800; text-transform: uppercase;
  color: var(--text); margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.2;
}
.seo-section h2 .ico {
  font-size: 18px; flex-shrink: 0;
  color: var(--blue-light);
  width: 22px; text-align: center;
}

.seo-section h3 {
  font-size: 14px; font-weight: 700;
  color: var(--gold); margin: 18px 0 8px;
  text-transform: uppercase; letter-spacing: .5px;
}

.seo-section p {
  font-size: 15px; line-height: 1.72;
  color: #b0c8e8; margin-bottom: 12px;
}

.seo-section ul {
  margin: 8px 0 12px;
  display: flex; flex-direction: column; gap: 7px;
}
.seo-section ul li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; color: #b0c8e8; line-height: 1.55;
}
.seo-section ul li::before {
  content: '▸'; color: var(--blue);
  font-size: 12px; margin-top: 3px; flex-shrink: 0;
}
.seo-section ul li strong { color: #ddeeff; }

/* Section image */
.section-img-wrap {
  margin: 16px 0; border-radius: var(--radius); overflow: hidden;
  line-height: 0; box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
.section-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); object-fit: cover; max-height: 340px;
}

/* ══════════════════════════════════
   ACCORDION (FAQ)
══════════════════════════════════ */
.accordion-item {
  background: rgba(13,42,88,.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px; overflow: hidden;
  transition: border-color .2s;
}
.accordion-item:hover, .accordion-item.open { border-color: var(--border-blue); }
.accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; cursor: pointer; user-select: none;
  transition: background .18s;
}
.accordion-head:hover { background: rgba(26,111,232,.1); }
.accordion-head span { font-size: 15px; font-weight: 700; color: var(--text); }
.accordion-arrow { color: var(--blue); font-size: 13px; transition: transform .3s; flex-shrink: 0; }
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  display: none; padding: 0 18px 16px;
  font-size: 14px; color: #a0bcd8; line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 14px; margin-top: 0;
}
.accordion-item.open .accordion-body { display: block; }

/* ══════════════════════════════════
   TABLE
══════════════════════════════════ */
.seo-table {
  width: 100%; border-collapse: collapse;
  margin: 14px 0; font-size: 14px;
  border-radius: var(--radius); overflow: hidden;
}
.seo-table thead tr { background: rgba(26,111,232,.2); }
.seo-table th {
  padding: 11px 14px; text-align: left;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px;
  color: #a0c4ff; border-bottom: 2px solid rgba(26,111,232,.3);
  white-space: nowrap;
}
.seo-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: #b0c8e8; vertical-align: middle;
  font-size: 14px; line-height: 1.4;
}
.seo-table tr:last-child td { border-bottom: none; }
.seo-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.025); }
.seo-table tbody tr:hover td { background: rgba(26,111,232,.07); }
.seo-table td strong { color: #ddeeff; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 44px 30px 24px;
  margin-left: var(--sidebar-w);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 32px;
}
.footer-brand-logo {
  height: 52px; width: auto; max-width: 150px;
  display: block; margin-bottom: 14px;
  mix-blend-mode: screen;
  filter: brightness(1.1) saturate(1.3) contrast(1.1);
}
.footer-brand p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.65; max-width: 270px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text); margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 18px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-disclaimer { font-size: 11px; color: rgba(122,155,200,.55); max-width: 560px; line-height: 1.55; }

/* Responsible badges */
.responsible-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.resp-badge {
  background: rgba(26,111,232,.12); border: 1px solid var(--border-blue);
  border-radius: 4px; padding: 4px 10px;
  font-size: 10px; font-weight: 700;
  color: var(--text-muted); letter-spacing: .5px;
}

/* ══════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 22px; right: 22px;
  background: linear-gradient(135deg, var(--blue), #0e4fb5);
  color: #fff; width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s;
  z-index: 800; border: none;
  box-shadow: 0 4px 18px rgba(26,111,232,.55);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════
   MOBILE STICKY BOTTOM CTA BAR
══════════════════════════════════ */
.mob-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #040e1c 0%, #0b1e42 100%);
  border-top: 1px solid rgba(26,111,232,.4);
  padding: 10px 16px;
  z-index: 700;
  align-items: center; justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.5);
}
.mob-cta-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green));
}
.mob-cta-bonus {
  font-size: 13px; font-weight: 600;
  color: #c8dcf8; flex: 1;
}
.mob-cta-bonus strong { color: var(--gold); font-weight: 800; }
.mob-cta-btn {
  padding: 9px 20px; font-size: 13px; flex-shrink: 0;
  box-shadow: 0 3px 14px var(--green-glow);
}

/* ══════════════════════════════════
   GAP UTIL
══════════════════════════════════ */
.gap-sections { margin-bottom: 14px; }
.text-gold  { color: var(--gold); }
.text-blue  { color: var(--blue); }
.text-green { color: var(--green); }

/* ══════════════════════════════════
   RESPONSIVE — TABLET ≤1200px
══════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --sidebar-w: 190px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .games-row { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ── Tablet ≤1024px ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-content { padding: 36px 40px; max-width: 680px; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE ≤768px
══════════════════════════════════ */
@media (max-width: 768px) {
  :root { --sidebar-w: 0px; --header-h: 56px; }

  /* Header */
  .site-header { padding: 0 12px; gap: 8px; }
  .mob-toggle { display: flex; }
  .header-logo { margin-left: 0; }
  .header-logo-img { height: 40px; }
  .header-search { display: none; }
  .btn-login { display: none; }
  .btn-register { padding: 7px 14px; font-size: 12px; }

  /* Sidebar — slide-in drawer */
  .sidebar {
    left: -210px; width: 210px;
    transition: left .28s cubic-bezier(.4,0,.2,1);
    z-index: 960; box-shadow: none;
  }
  .sidebar.open { left: 0; box-shadow: 4px 0 30px rgba(0,0,0,.6); }
  .sidebar-overlay.open { display: block; }

  /* Layout */
  .main-wrapper { margin-left: 0; }
  .site-footer { margin-left: 0; padding: 28px 16px 16px; }

  /* Hero */
  .hero { min-height: 280px; }
  .hero-content { padding: 28px 24px; max-width: 100%; }

  .hero-title { font-size: clamp(22px, 6vw, 32px); }
  .hero-sub { font-size: 13px; margin-bottom: 18px; }
  .btn-cta { padding: 11px 22px; font-size: 13px; }
  .cat-bar { padding: 0 8px; }
  .cat-item { padding: 6px 10px; min-width: 60px; }
  .cat-icon { font-size: 17px; }
  .cat-label { font-size: 8.5px; }

  /* Breadcrumb */
  .breadcrumb { padding: 7px 14px; font-size: 11px; }

  /* Content */
  .content-area { padding: 14px 12px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-box { padding: 12px 8px; }
  .stat-val { font-size: 20px; }
  .stat-lbl { font-size: 9px; }

  /* Game cards */
  .games-row { grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)); gap: 8px; }

  /* Promo strip */
  .promo-strip { flex-direction: column; align-items: flex-start; padding: 18px; gap: 14px; }
  .promo-strip-text h3 { font-size: 17px; }

  /* SEO sections */
  .seo-section { padding: 18px 16px 18px 20px; }
  .seo-section h2 { font-size: 16px; }
  .seo-section p, .seo-section ul li { font-size: 14px; }

  /* Table — horizontal scroll */
  .seo-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .seo-table th, .seo-table td { padding: 9px 11px; white-space: nowrap; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Accordion */
  .accordion-head span { font-size: 14px; }

  /* Scroll-top button — slightly smaller, avoid overlap with mobile nav */
  .scroll-top { bottom: 72px; right: 14px; width: 38px; height: 38px; font-size: 15px; }

  /* Mobile bottom CTA bar */
  .mob-cta-bar { display: flex; }
  body { padding-bottom: 62px; }
}

/* ══════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤480px
══════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero full-width text */
  .hero-content { max-width: 100%; padding: 24px 18px; }
  .hero { min-height: 240px; }
  .hero-title { font-size: clamp(20px, 7vw, 28px); }

  /* Stats 2 columns */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .stat-val { font-size: 18px; }

  /* Game cards — 3 per row on small phones */
  .games-row { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .game-title { font-size: 9px; padding: 5px 5px 6px; }
  .game-badge { font-size: 8px; padding: 2px 5px; }

  /* Footer single column */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Buttons */
  .btn-cta { padding: 10px 18px; font-size: 13px; }

  /* SEO text tighter */
  .seo-section { padding: 15px 14px 15px 18px; }
  .seo-section h2 { font-size: 15px; gap: 7px; }

  /* Promo */
  .promo-strip { padding: 14px; }
  .promo-strip-text h3 { font-size: 15px; }
}

/* ══════════════════════════════════
   RESPONSIVE — VERY SMALL ≤360px
══════════════════════════════════ */
@media (max-width: 360px) {
  .games-row { grid-template-columns: repeat(2, 1fr); }
  .header-logo-img { height: 34px; }
  .btn-register { padding: 6px 10px; font-size: 11px; }
}
