/* =========================================================
   Stake Casino RO — styles
   Colors: bg #1B2E39 · panel #213743 · CTA #1675E1 · ghost #395565
   ========================================================= */

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #0F212E;
  color: #E9EEF3;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font-family: inherit; }

:root {
  --bg: #0F212E;
  --bg2: #1B2E39;
  --panel: #213743;
  --panel2: #2A4756;
  --line: #2E4958;
  --text: #E9EEF3;
  --muted: #92A5B4;
  --primary: #1675E1;
  --primary-h: #1E8AF6;
  --primary-d: #0E5DB8;
  --ghost: #395565;
  --ghost-h: #486477;
  --ok: #1FFF20;
  --ok-soft: #26DB2A;
  --neg: #FF6A6A;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.25);
  --shadow-md: 0 2px 8px rgba(0,0,0,.45), 0 8px 22px rgba(0,0,0,.35);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.55);
  --sidebar-w: 232px;
  --header-h: 64px;
  --sub-h: 56px;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.app {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
  width: 100%;
  min-width: 0;
}

.mainWrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg2);
}

/* =========================================================
   SIDEBAR
   ========================================================= */
.sidebar {
  background: #0F212E;
  border-right: 1px solid var(--line);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 0;
  z-index: 40;
  scrollbar-width: thin;
  scrollbar-color: #2A4756 transparent;
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background: #2A4756; border-radius: 3px; }

.sidebar__inner {
  padding: 14px 12px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar__top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar__burger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--panel);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.sidebar__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.sidebar__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.sideTab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
  transition: background .15s ease, transform .1s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sideTab:hover { background: var(--panel2); }
.sideTab--active {
  background: linear-gradient(180deg, #2E4A5C 0%, #243B48 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 2px 0 rgba(0,0,0,.2);
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sideLink {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 8px;
  color: #CFD9E1;
  font-weight: 600;
  font-size: 14px;
  min-width: 0;
  transition: background .15s ease, color .15s ease;
}
.sideLink:hover {
  background: rgba(255,255,255,.04);
  color: #fff;
}
.sideLink__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9FB3C1;
}
.sideLink__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.sideLink__chev {
  font-size: 14px;
  color: #8AA0AE;
}

.sidebar__divider {
  height: 1px;
  background: var(--line);
  margin: 4px 4px;
}

/* =========================================================
   TOP HEADER
   ========================================================= */
.topHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.topHeader__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.topHeader__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--panel);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

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

.topTabs {
  display: none;
  gap: 6px;
  margin-left: 8px;
}
.topTab {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
}
.topTab--active {
  background: linear-gradient(180deg, #2E4A5C 0%, #243B48 100%);
}

/* =========================================================
   SUB HEADER (search)
   ========================================================= */
.subHeader {
  background: var(--bg2);
  padding: 10px 18px 14px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  z-index: 25;
}
.subHeader__search {
  display: flex;
  align-items: stretch;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  min-width: 0;
}
.searchSelect {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  border-right: 1px solid var(--line);
  background: transparent;
  white-space: nowrap;
}
.searchInput {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-width: 0;
  color: var(--muted);
}
.searchInput input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  padding: 12px 0;
  cursor: pointer;
}
.searchInput input::placeholder { color: var(--muted); }

/* =========================================================
   CONTENT
   ========================================================= */
.content {
  padding: 20px 18px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
  max-width: 100%;
}

.section {
  background: transparent;
  min-width: 0;
}

.sectionHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  min-width: 0;
}
.sectionHead__title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sectionHead__title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  overflow-wrap: anywhere;
}
.sectionHead__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(22,117,225,.14);
  color: #4BA0FF;
}
.sectionHead__icon--live {
  background: rgba(255, 90, 90, .15);
}
.sectionFoot {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* =========================================================
   TABS
   ========================================================= */
.tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--panel);
  color: #C6D2DC;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.tab:hover { background: var(--panel2); color: #fff; }
.tab--active {
  background: linear-gradient(180deg, #2E4A5C 0%, #243B48 100%);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  --_h: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--_h);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: .01em;
  line-height: 1.1;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

.btn--primary {
  background: linear-gradient(180deg, var(--primary-h) 0%, var(--primary) 60%, var(--primary-d) 100%);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,.3), 0 6px 14px rgba(22,117,225,.4);
  border-color: rgba(255,255,255,.08);
  font-weight: 900;
}
.btn--primary:hover {
  box-shadow: 0 4px 0 rgba(0,0,0,.35), 0 10px 22px rgba(22,117,225,.5);
}

.btn--ghost {
  background: var(--ghost);
  color: #EFF3F7;
  box-shadow: 0 2px 0 rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.05);
}
.btn--ghost:hover { background: var(--ghost-h); }

.btn--sm { --_h: 38px; padding: 8px 14px; font-size: 13.5px; }
.btn--xs { --_h: 32px; padding: 6px 12px; font-size: 12.5px; border-radius: 6px; font-weight: 800; }
.btn--xl { --_h: 56px; padding: 16px 26px; font-size: 16px; border-radius: 10px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1B2E39 0%, #0F212E 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.hero__banner {
  display: block;
  position: relative;
  width: 100%;
  max-height: 280px;
  overflow: hidden;
}
.hero__banner img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.hero__banner:hover img { transform: scale(1.02); }
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(22,117,225,.45) 0%, transparent 70%),
    linear-gradient(180deg, rgba(15,33,46,0) 40%, rgba(15,33,46,.9) 100%);
}
.hero__inner {
  padding: 22px 22px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  margin-top: -60px;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22,117,225,.15);
  color: #7FB8FF;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid rgba(22,117,225,.3);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero__bonus {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero__bonusSmall {
  font-size: 15px;
  font-weight: 700;
  color: #A9BFCD;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__bonusBig {
  font-size: clamp(28px, 6.2vw, 56px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(180deg, #FFFFFF 0%, #8DC4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(22,117,225,.3);
}
.hero__bonusPlus {
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 800;
  color: #4BA0FF;
  letter-spacing: .02em;
}
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 520px;
}
.hero__cta .btn { flex: 1 1 180px; }
.hero__tc {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 560px;
}

/* =========================================================
   JACKPOT ROW
   ========================================================= */
.jackpotRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(22,117,225,.18) 0%, rgba(22,117,225,.04) 100%),
    var(--panel);
  border: 1px solid rgba(22,117,225,.25);
  margin-bottom: 14px;
  min-width: 0;
  flex-wrap: wrap;
}
.jackpotRow__label {
  font-weight: 700;
  color: #A9BFCD;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.jackpotRow__value {
  flex: 1;
  text-align: center;
  font-weight: 900;
  font-size: clamp(22px, 3.6vw, 32px);
  color: #FFD75A;
  letter-spacing: -0.01em;
  text-shadow: 0 0 24px rgba(255,215,90,.3);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

/* =========================================================
   GAME GRID + CARDS
   ========================================================= */
.gameGrid {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.gameGrid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.gameGrid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gameGrid > * { min-width: 0; }

.gameCard {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  min-width: 0;
}
.gameCard:hover {
  transform: translateY(-3px);
  border-color: rgba(22,117,225,.45);
  box-shadow: var(--shadow-md);
}
.gameCard__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0F212E;
}
.gameCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gameCard:hover .gameCard__img img { transform: scale(1.05); }
.gameCard__body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.gameCard__name {
  font-weight: 800;
  font-size: 13.5px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gameCard__provider {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}
.gameCard__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 4px;
}
.gameCard__actions .btn { width: 100%; }

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.badge--hot { background: linear-gradient(180deg, #FF6A3D, #E03B00); }
.badge--new { background: linear-gradient(180deg, #1FD365, #0EA94D); }
.badge--crash { background: linear-gradient(180deg, #FFB538, #E48B00); }

/* =========================================================
   LIVE CARDS
   ========================================================= */
.gameGrid--live { gap: 16px; }
.liveCard {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform .18s ease, border-color .18s ease;
  min-width: 0;
}
.liveCard:hover { transform: translateY(-3px); border-color: rgba(255,90,90,.5); }
.liveCard__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0F212E;
}
.liveCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.liveCard__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.liveCard__name {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}
.liveCard__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: #B6C8D4;
}
.liveCard__sub {
  font-size: 12px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 90, 90, .15);
  color: #FF9393;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.liveDot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF5A5A;
  box-shadow: 0 0 0 0 rgba(255,90,90,.6);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,90,90,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(255,90,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,90,0); }
}

/* =========================================================
   LIVE BETS TABLE
   ========================================================= */
.betsTableWrap {
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.betsTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.betsTable th,
.betsTable td {
  padding: 12px 14px;
  text-align: left;
  font-size: 13.5px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.betsTable th {
  font-weight: 700;
  color: var(--muted);
  background: rgba(0,0,0,.15);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.betsTable tbody tr {
  border-bottom: 1px solid rgba(46,73,88,.45);
  transition: background .15s ease;
}
.betsTable tbody tr:hover { background: rgba(255,255,255,.02); }
.betsTable tbody tr:last-child { border-bottom: 0; }
.betGame {
  font-weight: 700;
  color: #fff;
}
.betsTable .pos { color: var(--ok-soft); font-weight: 800; }
.betsTable .neg { color: #C7D4DE; }

/* =========================================================
   PROMOS
   ========================================================= */
.promoGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}
.promoGrid > * { min-width: 0; }
.promoCard {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.promoCard:hover {
  transform: translateY(-3px);
  border-color: rgba(22,117,225,.45);
  box-shadow: var(--shadow-md);
}
.promoCard--lead {
  grid-column: span 2;
  background: linear-gradient(135deg, #1B2E39 0%, rgba(22,117,225,.15) 100%), var(--panel);
  border-color: rgba(22,117,225,.4);
}
.promoCard__img {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #0F212E;
}
.promoCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promoCard__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.promoCard__tag {
  align-self: flex-start;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22,117,225,.14);
  color: #7FB8FF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.promoCard__body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.promoCard__body p {
  margin: 0;
  color: #B6C8D4;
  font-size: 13.5px;
}
.promoCard__body .btn { align-self: flex-start; margin-top: 6px; }

/* =========================================================
   VIP TEASER
   ========================================================= */
.vipTeaser {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 50%, rgba(255,184,40,.12) 0%, transparent 60%),
    linear-gradient(135deg, #1B2E39 0%, #24384A 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin-top: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
  min-width: 0;
}
.vipTeaser:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.vipTeaser__body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.vipTeaser__tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,215,90,.12);
  color: #FFD75A;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.vipTeaser__body h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.vipTeaser__body p {
  margin: 0;
  color: #B6C8D4;
  font-size: 14px;
}
.vipTeaser__body .btn { align-self: flex-start; margin-top: 6px; }

.vipTeaser__tiers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-self: center;
  min-width: 0;
}
.vipTeaser__tiers > div {
  padding: 18px 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 8px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 800;
  color: #C6D2DC;
  text-transform: uppercase;
  letter-spacing: .06em;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.vipTeaser__tierTop {
  background: linear-gradient(180deg, rgba(255,215,90,.2), rgba(255,184,40,.08)) !important;
  color: #FFD75A !important;
  border-color: rgba(255,215,90,.35) !important;
}

/* =========================================================
   PROVIDERS
   ========================================================= */
.providerStrip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-width: 0;
}
.providerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  transition: background .18s ease, transform .18s ease;
  min-width: 0;
  min-height: 60px;
}
.providerLogo:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.providerLogo img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: .9;
  filter: brightness(1.05) contrast(1.05);
}

/* =========================================================
   SEO BLOCK
   ========================================================= */
.seoBlock {
  background: var(--panel);
  padding: 26px 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-width: 0;
}
.seoBlock h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.seoBlock h3 {
  margin: 20px 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.seoBlock p, .seoBlock ul {
  color: #C6D2DC;
  font-size: 14.5px;
  line-height: 1.7;
}
.seoBlock p.lead { color: #D9E3EB; font-size: 15.5px; }
.seoBlock p { margin: 0 0 12px; }
.seoList {
  margin: 8px 0 14px;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seoList li { padding-left: 4px; }
.seoBlock strong { color: #fff; }

/* =========================================================
   ABOUT
   ========================================================= */
.aboutGrid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--panel);
  padding: 24px 26px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-width: 0;
}
.aboutIntro p { margin: 0 0 10px; color: #C6D2DC; font-size: 14.5px; line-height: 1.7; }
.aboutIntro p.lead { color: #E3EAF1; font-size: 15.5px; }
.aboutIntro strong { color: #fff; }

.trustGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}
.trustCard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  min-width: 0;
}
.trustCard:hover { transform: translateY(-3px); border-color: rgba(22,117,225,.4); background: rgba(22,117,225,.06); }
.trustCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(22,117,225,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trustCard__icon img { width: 100%; height: 100%; object-fit: cover; }
.trustCard h4 { margin: 4px 0 0; font-size: 15px; font-weight: 900; color: #fff; }
.trustCard p { margin: 0; color: #B6C8D4; font-size: 13px; line-height: 1.55; }

.statsRow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}
.statCard {
  padding: 16px 10px;
  background: rgba(22,117,225,.08);
  border: 1px solid rgba(22,117,225,.25);
  border-radius: var(--radius);
  text-align: center;
  min-width: 0;
}
.statCard__num {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}
.statCard__label {
  font-size: 12px;
  color: #A9BFCD;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.aboutCta {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.faq__item {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .18s ease;
}
.faq__item.is-open { border-color: rgba(22,117,225,.4); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: transparent;
  text-align: left;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  min-width: 0;
}
.faq__q > span:first-child {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.faq__chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22,117,225,.15);
  color: #7FB8FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  transition: transform .25s ease, background .2s ease;
  flex-shrink: 0;
}
.faq__item.is-open .faq__chev { transform: rotate(45deg); background: rgba(22,117,225,.3); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__item.is-open .faq__a { max-height: 3000px; }
.faq__a > * { padding-left: 18px; padding-right: 18px; }
.faq__a > *:first-child { padding-top: 4px; }
.faq__a > *:last-child { padding-bottom: 18px; }
.faq__a p { margin: 0 0 10px; color: #C6D2DC; font-size: 14px; line-height: 1.7; }
.faq__a h4 { margin: 14px 0 8px; font-size: 14.5px; font-weight: 800; color: #fff; }
.faq__a ul, .faq__a ol {
  margin: 0 0 10px;
  padding-left: 36px;
  color: #C6D2DC;
  font-size: 14px;
  line-height: 1.7;
}
.faq__a li { padding-left: 4px; margin-bottom: 4px; }
.faq__a strong { color: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 40px 20px 120px;
  background: #0F212E;
  border-top: 1px solid var(--line);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1100px;
  text-align: left;
}
.footer__col { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.footer__col h4 {
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer__col a {
  font-size: 13.5px;
  color: #B6C8D4;
  padding: 4px 0;
  transition: color .15s ease;
}
.footer__col a:hover { color: #fff; }

.footer__payments {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.footer__paymentsLabel {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
}
.footer__paymentsList {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.payChip {
  padding: 6px 12px;
  background: var(--panel);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #C6D2DC;
  transition: background .15s ease;
}
.payChip:hover { background: var(--panel2); color: #fff; }

.footer__social {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #7E94A4;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: color .15s ease, background .15s ease;
}
.footer__social a:hover { color: #fff; background: var(--panel); }

.footer__legalText {
  max-width: 800px;
  width: 100%;
  color: #8AA0AE;
  font-size: 12.5px;
  line-height: 1.7;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.footer__legalText p { margin: 0 0 10px; overflow-wrap: anywhere; }
.footer__legalText a { color: #4BA0FF; }
.footer__legalText a:hover { text-decoration: underline; }
.footer__tagline {
  color: #C6D2DC !important;
  font-weight: 700;
  font-size: 13px !important;
}

.footer__brand img {
  width: auto;
  height: 40px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.badgeTag {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--panel);
  color: #C6D2DC;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.badgeTag--age {
  background: transparent;
  color: #FF9393;
  border-color: rgba(255,90,90,.35);
}

/* =========================================================
   CATFISH
   ========================================================= */
.catfish {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 80;
  max-width: calc(100% - 20px);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(calc(100% + 20px));
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.catfish.is-visible { transform: translateY(0); }
.catfish.is-closed { display: none; }
.catfish__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background:
    linear-gradient(90deg, rgba(22,117,225,.2) 0%, rgba(22,117,225,0) 40%),
    #18303E;
  border: 1px solid rgba(22,117,225,.35);
  border-radius: 12px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.5), 0 8px 30px rgba(22,117,225,.25);
  min-width: 0;
}
.catfish__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}
.catfish__text strong {
  font-size: 14px;
  color: #fff;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.catfish__text span {
  font-size: 12px;
  color: #B6C8D4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.catfish__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
  flex-shrink: 0;
}
.catfish__close:hover { background: rgba(255,255,255,.15); }

/* =========================================================
   EXIT POPUP
   ========================================================= */
.exitOverlay {
  position: fixed;
  inset: 0;
  background: rgba(6,12,17,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.exitOverlay.is-visible { display: flex; opacity: 1; }

.exitPopup {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #18303E;
  border: 1px solid rgba(22,117,225,.4);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  min-width: 0;
}
.exitOverlay.is-visible .exitPopup { transform: translateY(0); }
.exitPopup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,.4);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exitPopup__close:hover { background: rgba(0,0,0,.7); }
.exitPopup__img {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #0F212E;
}
.exitPopup__img img { width: 100%; height: 100%; object-fit: cover; }
.exitPopup__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.exitPopup__tag {
  color: #FFD75A;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.exitPopup__body h3 {
  margin: 0;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.exitPopup__body p {
  margin: 0;
  color: #B6C8D4;
  font-size: 14px;
  line-height: 1.55;
}
.exitPopup__body .btn { width: 100%; max-width: 340px; }
.exitPopup__tc {
  font-size: 11.5px !important;
  color: var(--muted) !important;
  margin-top: 4px !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1279px) {
  .gameGrid--6 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .providerStrip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trustGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promoGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promoCard--lead { grid-column: span 2; }
}

@media (max-width: 1023px) {
  :root { --sidebar-w: 0px; }

  .app { grid-template-columns: 1fr; }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    box-shadow: 20px 0 60px rgba(0,0,0,.5);
  }
  .sidebar.is-open { transform: translateX(0); }
  .sidebar__burger { display: inline-flex; }

  .burger { display: inline-flex; }

  .topTabs { display: none; }

  .vipTeaser { grid-template-columns: 1fr; }
  .vipTeaser__tiers { order: 2; }
}

@media (max-width: 767px) {
  .content { padding: 14px 12px 32px; gap: 22px; }
  .sectionHead__title h2 { font-size: 19px; }

  .gameGrid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .gameGrid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  .hero__inner { padding: 18px 16px 20px; margin-top: -50px; }
  .hero__banner img { max-height: 200px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; flex: none; }

  .jackpotRow { flex-direction: column; text-align: center; }

  .promoGrid { grid-template-columns: 1fr; gap: 12px; }
  .promoCard--lead { grid-column: span 1; }

  .statsRow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trustGrid { grid-template-columns: 1fr; }
  .providerStrip { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 14px; gap: 10px; }

  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

  .topHeader { padding: 0 12px; }
  .logo img { height: 26px; max-width: 110px; }
  .btn--sm { padding: 8px 10px; font-size: 12.5px; }

  .subHeader { padding: 10px 12px; }
  .subHeader__search { flex-direction: row; }
  .searchSelect { padding: 0 10px; font-size: 13px; }
  .searchInput { padding: 0 10px; }

  .seoBlock { padding: 20px 18px; }
  .aboutGrid { padding: 20px 18px; }
  .faq__q { padding: 14px 14px; font-size: 14.5px; }
  .faq__a > * { padding-left: 14px; padding-right: 14px; }
  .faq__a ul, .faq__a ol { padding-left: 30px; }
}

@media (max-width: 479px) {
  .gameGrid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gameGrid--3 { grid-template-columns: 1fr; }
  .providerStrip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .statsRow { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero__bonusBig { font-size: 34px; }
  .hero__bonusSmall { font-size: 13px; }
  .hero__bonusPlus { font-size: 13px; }

  .betsTable th,
  .betsTable td { padding: 10px 8px; font-size: 12px; }
  .betsTable th:nth-child(2),
  .betsTable td:nth-child(2) { display: none; }
  .betsTable th:nth-child(3),
  .betsTable td:nth-child(3) { display: none; }

  .vipTeaser__tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vipTeaser__tiers > div:nth-child(n+4) { grid-column: span 1; }

  .footer { padding: 28px 14px 130px; }
  .footer__cols { grid-template-columns: 1fr; gap: 18px; }
}
