/* ============================================================
   20bet Canada — main stylesheet
   ============================================================ */

:root {
  --primary: #EC622B;
  --primary-d: #d54f1c;
  --primary-l: #ff7b46;
  --header: #0C1D34;
  --header-2: #122a4a;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-soft: #eef1f5;
  --line: #e1e6ec;
  --text: #1a2333;
  --muted: #6b7785;
  --green: #4caf50;
  --green-d: #3f9d43;
  --shadow-sm: 0 2px 8px rgba(12,29,52,.06);
  --shadow: 0 6px 22px rgba(12,29,52,.08);
  --shadow-lg: 0 18px 48px rgba(12,29,52,.16);
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-pill: 999px;
  --container: 1320px;
  --gap: 16px;
  --header-h: 72px;
}

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.2;
  color: var(--header);
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 { font-size: clamp(28px, 4.5vw, 48px); }
h2 { font-size: clamp(22px, 2.6vw, 34px); }
h3 { font-size: clamp(18px, 1.8vw, 22px); }
h4 { font-size: 17px; }

p { margin: 0 0 1em; overflow-wrap: anywhere; word-break: break-word; }

ul, ol { margin: 0 0 1em; padding-left: 22px; }
li { margin-bottom: .35em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .2px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
  text-align: center;
  font-family: inherit;
}

.btn--primary {
  background: linear-gradient(180deg, #ff7b46 0%, var(--primary) 60%, var(--primary-d) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(236,98,43,.36), inset 0 -2px 0 rgba(0,0,0,.12);
  border-color: var(--primary-d);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(236,98,43,.45), inset 0 -2px 0 rgba(0,0,0,.12);
  background: linear-gradient(180deg, #ff8a58 0%, var(--primary) 70%, var(--primary-d) 100%);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(236,98,43,.3), inset 0 2px 4px rgba(0,0,0,.18);
}

.btn--ghost {
  background: #fff;
  color: var(--header);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(12,29,52,.10);
}

.btn--login {
  background: linear-gradient(180deg, #5dc26b 0%, var(--green) 65%, var(--green-d) 100%);
  color: #fff;
  border-color: var(--green-d);
  box-shadow: 0 8px 18px rgba(76,175,80,.32), inset 0 -2px 0 rgba(0,0,0,.12);
}
.btn--login:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(76,175,80,.42);
}

.btn--xl {
  min-height: 56px;
  padding: 14px 28px;
  font-size: 17px;
}

.btn--sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 13px;
}

.btn--signup { padding-left: 28px; padding-right: 28px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--header);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--header-h);
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  border-radius: var(--r-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  flex: 0 0 42px;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.header-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: border-color .18s ease, background .18s ease;
}
.header-app:hover {
  border-color: var(--primary);
  background: rgba(255,255,255,.07);
}
.app-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.primary-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.primary-nav::-webkit-scrollbar { display: none; }
.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.65);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color .18s ease;
}
.nav-item .nav-ico { font-size: 16px; opacity: .75; }
.nav-item:hover { color: #fff; }
.nav-item.active {
  color: var(--primary);
}
.nav-item.active .nav-ico { opacity: 1; }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 8px;
}
.lang svg { color: #6da7ff; }

.mobile-nav {
  display: none;
  background: var(--header-2);
  padding: 12px 20px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-nav a {
  display: block;
  padding: 12px 6px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a.mobile-cta {
  margin-top: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-pill);
  text-align: center;
  border-bottom: none;
}

/* ============================================================
   FILTER BAR (Section 2 from donor)
   ============================================================ */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  z-index: 70;
  box-shadow: 0 2px 8px rgba(12,29,52,.04);
}
.filter-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.filter-pills {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-pills::-webkit-scrollbar { display: none; }
.pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 18px 8px;
  border-radius: var(--r-pill);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color .18s ease, background .18s ease;
}
.pill .pill-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  color: var(--text);
}
.pill:hover { color: var(--green); }
.pill:hover .pill-ico { color: var(--green); }
.pill.active {
  background: var(--bg-soft);
  color: var(--green);
}
.pill.active .pill-ico { color: var(--green); }
.pill.active::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -14px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--green);
}

.filter-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.search {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 8px 14px 8px 18px;
  width: 220px;
}
.search input {
  border: 0;
  background: transparent;
  font: inherit;
  outline: none;
  width: 100%;
  padding-right: 24px;
  color: var(--text);
}
.search-ico {
  position: absolute;
  right: 14px;
  color: var(--muted);
}
.provider-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  font-size: 14px;
}
.provider-select .caret { color: var(--muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-art {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 20px 0;
}
.hero-art a { display: block; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-art img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 20px 50px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(236,98,43,.12);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.hero-title {
  margin: 0 0 12px;
  font-weight: 900;
}
.brand-mark { color: var(--primary); }
.hero-bonus {
  font-size: clamp(28px, 5.4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary) 0%, #ffb37e 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  margin: 6px 0 18px;
  text-shadow: 0 4px 24px rgba(236,98,43,.20);
}
.hero-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto 22px;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-tc {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   GAME SECTIONS
   ============================================================ */
.games-section {
  padding: 60px 0;
  background: #fff;
}
.games-section.alt { background: var(--bg-alt); }
.games-section.live {
  background: linear-gradient(180deg, #0C1D34 0%, #102447 100%);
  color: #fff;
}
.games-section.live h2,
.games-section.live h3 { color: #fff; }
.games-section.live .section-sub { color: rgba(255,255,255,.7); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.section-head.center { justify-content: center; text-align: center; }
.section-sub {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.jackpot-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}
.jackpot-card {
  background: linear-gradient(135deg, #0C1D34 0%, #1d3866 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.06);
}
.jackpot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 110% -10%, rgba(236,98,43,.35) 0%, transparent 60%);
  pointer-events: none;
}
.jackpot-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  font-weight: 800;
  margin-bottom: 6px;
}
.jackpot-amount {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #ffd9b6, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.jackpot-foot {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.jackpot-side {
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--primary-d);
}
.js-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .85;
}
.js-text {
  font-size: 18px;
  font-weight: 800;
  margin: 6px 0 14px;
}
.js-cta {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.game-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  min-width: 0;
}
.games-section.live .game-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); color: #fff; }
.games-section.live .game-card .game-prov { color: rgba(255,255,255,.6); }
.games-section.live .btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f4f8;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.game-card:hover .media img { transform: scale(1.05); }
.media.tall { aspect-ratio: 16 / 11; }
.media.wide { aspect-ratio: 16 / 9; }
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.badge.new { background: var(--green); }

.game-meta {
  padding: 12px 14px 6px;
  flex: 1 1 auto;
}
.game-name {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.games-section.live .game-name { color: #fff; }
.game-prov {
  font-size: 12px;
  color: var(--muted);
}
.game-actions {
  display: flex;
  gap: 6px;
  padding: 0 12px 12px;
}
.game-actions .btn { flex: 1; padding: 8px 10px; font-size: 12px; min-height: 36px; }

.section-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== Live casino ===== */
.live-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.live-tabs::-webkit-scrollbar { display: none; }
.pill--solid {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.10);
}
.pill--solid::before { display: none; }
.pill--solid.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary-d);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.live-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  color: #fff;
  min-width: 0;
}
.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  border-color: var(--primary);
}
.live-dot {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e02020;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.live-meta { padding: 14px 16px 16px; }
.live-meta h3 { font-size: 16px; margin: 0 0 6px; }
.live-row {
  display: flex;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.live-row.sub { color: rgba(255,255,255,.6); margin-top: 4px; align-items: center; }
.seat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 6px;
}

/* ============================================================
   PROMOTIONS
   ============================================================ */
.promos { padding: 60px 0; background: #fff; }
.promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.promo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  min-width: 0;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.promo-card.lead .media { aspect-ratio: 21 / 9; }
.promo-body { padding: 20px 22px 22px; }
.promo-tag {
  display: inline-block;
  background: rgba(236,98,43,.10);
  color: var(--primary);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.promo-card h3 { font-size: 22px; margin: 0 0 8px; }
.promo-card p { color: var(--muted); margin: 0 0 14px; font-size: 14px; }
.promo-tc { font-size: 11px; color: var(--muted); margin-top: 10px; }

.vip-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #0C1D34 0%, #1d3866 100%);
  color: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vip-body { padding: 36px; }
.vip-tag {
  display: inline-block;
  background: rgba(236,98,43,.18);
  color: var(--primary);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.vip-body h3 { color: #fff; font-size: 26px; margin: 0 0 10px; }
.vip-body p { color: rgba(255,255,255,.78); margin: 0 0 18px; }
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tier-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.tier-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.tier-dot.t1 { background: #cd7f32; }
.tier-dot.t2 { background: #c0c0c0; }
.tier-dot.t3 { background: #ffd247; }
.tier-dot.t4 { background: #e5e4e2; }
.tier-dot.t5 { background: #b9f2ff; }

.vip-art { aspect-ratio: auto; }
.vip-art img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PROVIDERS STRIP
   ============================================================ */
.providers-block { padding: 50px 0; background: var(--bg-alt); }
.provider-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.provider {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-width: 0;
}
.provider img {
  max-height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(.2);
  transition: filter .2s ease;
}
.provider:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.provider:hover img { filter: grayscale(0); }

/* ============================================================
   BRAND OVERVIEW
   ============================================================ */
.brand-overview { padding: 70px 0; background: #fff; }
.content-block {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.content-block .media { margin-bottom: 28px; border-radius: var(--r-lg); }
.content-block h3 {
  font-size: 22px;
  margin-top: 32px;
  color: var(--header);
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}
.content-block ul {
  background: var(--bg-alt);
  border-radius: var(--r);
  padding: 18px 22px 18px 38px;
  margin: 12px 0 22px;
}
.content-block ul li { margin-bottom: 6px; }
.content-block strong { color: var(--header); }

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-we-are { padding: 70px 0; background: var(--bg-alt); }
.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  margin-bottom: 30px;
  align-items: start;
}
.who-text p { font-size: 16px; line-height: 1.75; }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.trust {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-width: 0;
}
.trust:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: var(--shadow-sm); }
.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(236,98,43,.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.trust h4 { font-size: 16px; margin: 0 0 6px; color: var(--header); }
.trust p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
}
.stat { text-align: center; min-width: 0; }
.stat-num {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 70px 0; background: #fff; }
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 16px;
  color: var(--header);
}
.faq-item summary::-webkit-details-marker { display: none; }
.chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  border: 1px solid var(--line);
  transition: transform .2s ease, background .2s ease, color .2s ease;
  flex: 0 0 28px;
}
.faq-item[open] .chev {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 22px 22px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
.faq-body h4 { margin-top: 14px; font-size: 15px; color: var(--header); }
.faq-body ul, .faq-body ol { padding-left: 22px; }
.faq-body li { margin-bottom: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  color: var(--text);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 3fr);
  gap: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.logo--footer img { height: 50px; }
.footer-tagline {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.footer-col h4 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin-bottom: 14px;
  color: var(--header);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--primary); }

.footer-pay {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  font-size: 13px;
  color: var(--muted);
}
.footer-pay a {
  font-weight: 700;
  color: var(--header);
  background: var(--bg-alt);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 12px;
  letter-spacing: .4px;
}
.footer-pay a:hover { background: var(--primary); color: #fff; }

.footer-bottom {
  padding-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.footer-warn {
  display: flex;
  gap: 14px;
  align-items: center;
}
.age {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex: 0 0 44px;
}
.footer-warn p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.footer-copy {
  text-align: right;
  font-size: 12px;
  color: var(--muted);
}
.footer-copy p { margin: 0 0 4px; }
.footer-copy a:hover { color: var(--primary); }

/* ============================================================
   CATFISH
   ============================================================ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #122a4a 0%, #0C1D34 100%);
  color: #fff;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 2px solid var(--primary);
  box-shadow: 0 -8px 30px rgba(0,0,0,.25);
}
.cf-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 8px);
}
.cf-text {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 0;
}
.cf-close {
  background: rgba(255,255,255,.10);
  border: 0;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  flex: 0 0 32px;
}
.cf-close:hover { background: rgba(255,255,255,.20); }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-pop {
  position: fixed;
  inset: 0;
  background: rgba(8,16,30,.78);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
.exit-pop[hidden],
.catfish[hidden] { display: none !important; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.exit-card {
  background: #fff;
  border-radius: var(--r-lg);
  max-width: 460px;
  width: 100%;
  padding: 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.exit-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  color: var(--muted);
}
.exit-close:hover { color: var(--primary); }
.exit-art { margin-bottom: 14px; border-radius: var(--r); overflow: hidden; }
.exit-art img { width: 100%; max-height: 180px; object-fit: cover; }
.exit-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--primary); }
.exit-card p { color: var(--muted); margin-bottom: 18px; }
.exit-tc { font-size: 11px; margin-top: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .provider-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .header-app { display: none; }
}

@media (max-width: 980px) {
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo-card.lead { grid-column: span 2; }
  .vip-card { grid-template-columns: 1fr; }
  .vip-art { aspect-ratio: 16 / 9; max-height: 240px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-copy { text-align: left; }
  .who-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .burger { display: inline-flex; }
  .header-right .lang { display: none; }
  .header-right .btn--login { display: none; }
  .live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter-tools { display: none; }
  .jackpot-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .provider-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card.lead { grid-column: span 1; }
}

@media (max-width: 560px) {
  :root { --header-h: 60px; }
  .header-inner { padding: 10px 14px; gap: 8px; min-height: 60px; }
  .logo img { height: 30px; max-width: 100px; }
  .header-right .btn--signup { padding: 10px 14px; min-height: 42px; font-size: 13px; }
  .filter-bar-inner { padding: 12px 14px; }
  .pill { padding: 6px 12px 8px; font-size: 11px; }
  .pill .pill-ico { height: 26px; }
  .hero-art { padding: 12px 14px 0; }
  .hero-inner { padding: 22px 14px 36px; }
  .hero-bonus { font-size: clamp(26px, 8vw, 40px); }
  .hero-ctas .btn { width: 100%; }
  .games-section, .promos, .brand-overview, .who-we-are, .faq, .providers-block { padding: 40px 0; }
  .container { padding: 0 14px; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .game-name { font-size: 13px; }
  .live-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 16px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 14px; }
  .provider-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vip-body { padding: 24px; }
  .section-cta .btn { width: 100%; }
  .faq-item summary { padding: 14px 16px; font-size: 15px; }
  .faq-body { padding: 0 16px 16px; font-size: 14px; }
  .cf-inner { gap: 10px; }
  .cf-text { font-size: 12px; }
}

@media (max-width: 380px) {
  .game-grid { grid-template-columns: 1fr 1fr; }
  .provider-strip { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
