:root{
  /* ✅ Paste ONLY your --variables here (the list you sent) */
}

/* Optional but recommended for Stake-like dark UI */
html{ color-scheme: dark; }
body{
  font-family: var(--ds-font-family-default, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  color: var(--color-grey-200, #b1bad3);
  background: var(--color-grey-900, #071824);
}
/* ===========================
   Stake-style Header (SkyveraBet)
   Add to: /assets/css/main.css
   =========================== */

.sb-header{
  position: sticky;
  top: 0;
  z-index: var(--header-zIndex, 999);
  background: var(--color-grey-700, #0f212e);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(var(--blur-sm, 8px));
}

.sb-header__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-3, .75rem) var(--space-4, 1rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
  gap: var(--space-2, .5rem);
  min-height: var(--header-height, 60px);
}

.sb-header__center{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo */
.sb-logo{
  display: flex;
  align-items: center;
  gap: var(--space-2, .5rem);
  text-decoration: none;
  color: var(--color-white, #fff);
  min-width: 0;
}

.sb-logo img{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sb-logo__text{
  font: var(--ds-heading-sm, 700 1rem/1.5rem ui-sans-serif);
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Center balance pill */
.sb-balance{
  display: inline-flex;
  align-items: center;
  gap: var(--space-2, .5rem);
  padding: var(--space-2, .5rem) var(--space-3, .75rem);
  border-radius: var(--radius-full, 9999px);
  text-decoration: none;
  color: var(--color-white, #fff);
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-600, #1a2c38);
  box-shadow: var(--shadows-sm, 0 1px 3px rgba(0,0,0,.2));
}

.sb-balance:hover{
  border-color: rgba(255,255,255,.12);
  background: var(--color-grey-500, #213743);
}

.sb-balance__ico{
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full, 9999px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.sb-balance__ico svg{
  width: 18px;
  height: 18px;
  stroke: var(--color-white, #fff);
  fill: none;
  stroke-width: 2;
  opacity: .95;
}

.sb-balance__amount{
  font: var(--ds-body-sm-strong, 600 .875rem/1.25rem ui-sans-serif);
  white-space: nowrap;
  letter-spacing: .2px;
}

.sb-balance__amount strong{
  margin-right: 6px;
  font-weight: 800;
}

/* Right actions */
.sb-actions{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-2, .5rem);
}

.sb-iconbtn{
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md, .5rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-600, #1a2c38);
  box-shadow: var(--shadow-inset, inset 0 1px rgba(255,255,255,.04));
}

.sb-iconbtn:hover{
  background: var(--color-grey-500, #213743);
  border-color: rgba(255,255,255,.12);
}

.sb-iconbtn svg{
  width: 20px;
  height: 20px;
  stroke: var(--color-white, #fff);
  fill: none;
  stroke-width: 2;
  opacity: .95;
}

/* Notification badge (Stake green) */
.sb-badge{
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  border-radius: var(--radius-full, 9999px);
  background: var(--color-green-500, #00e701);
  color: var(--color-neutral-black, #05080a);
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-grey-700, #0f212e);
  box-shadow: var(--shadows-md, 0 4px 6px rgba(0,0,0,.2));
}

/* spacing under header (for pages that need breathing room) */
.sb-page-offset{ margin-top: var(--space-2, .5rem); }
/* Bigger logo everywhere */
.sb-logo__img{
  height: 44px;   /* mobile */
  width: auto;
  display:block;
}

@media (min-width: 480px){
  .sb-logo__img{ height: 52px; }
}

@media (min-width: 768px){
  .sb-logo__img{ height: 58px; }
}

@media (min-width: 1100px){
  .sb-logo__img{ height: 64px; }
}
:root{
  /* ✅ Paste ONLY your --variables here (the list you sent) */
}

/* Optional but recommended for Stake-like dark UI */
html{ color-scheme: dark; }
body{
  font-family: var(--ds-font-family-default, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial);
  color: var(--color-grey-200, #b1bad3);
  background: var(--color-grey-900, #071824);
}

/* ===========================
   Stake-style Header (SkyveraBet)
   Add to: /assets/css/main.css
   =========================== */

.sb-header{
  position: sticky;
  top: 0;
  z-index: var(--header-zIndex, 999);
  background: var(--color-grey-700, #0f212e);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(var(--blur-sm, 8px));
}

/* ✅ Increase header height so big logo fits */
.sb-header__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-2, .5rem) var(--space-4, 1rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
  gap: var(--space-2, .5rem);
  min-height: 74px; /* was 60px */
}

.sb-header__center{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo */
.sb-logo{
  display: flex;
  align-items: center;
  gap: var(--space-2, .5rem);
  text-decoration: none;
  color: var(--color-white, #fff);
  min-width: 0;
}

/* ✅ IMPORTANT: remove the 28px lock */
.sb-logo img{
  width: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* (You removed title text, but keep this safe if ever used) */
.sb-logo__text{
  font: var(--ds-heading-sm, 700 1rem/1.5rem ui-sans-serif);
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Center balance pill */
.sb-balance{
  display: inline-flex;
  align-items: center;
  gap: var(--space-2, .5rem);
  padding: var(--space-2, .5rem) var(--space-3, .75rem);
  border-radius: var(--radius-full, 9999px);
  text-decoration: none;
  color: var(--color-white, #fff);
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-600, #1a2c38);
  box-shadow: var(--shadows-sm, 0 1px 3px rgba(0,0,0,.2));
}

.sb-balance:hover{
  border-color: rgba(255,255,255,.12);
  background: var(--color-grey-500, #213743);
}

.sb-balance__ico{
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full, 9999px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.sb-balance__ico svg{
  width: 18px;
  height: 18px;
  stroke: var(--color-white, #fff);
  fill: none;
  stroke-width: 2;
  opacity: .95;
}

.sb-balance__amount{
  font: var(--ds-body-sm-strong, 600 .875rem/1.25rem ui-sans-serif);
  white-space: nowrap;
  letter-spacing: .2px;
}

.sb-balance__amount strong{
  margin-right: 6px;
  font-weight: 800;
}

/* Right actions */
.sb-actions{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-2, .5rem);
}

.sb-iconbtn{
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md, .5rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-600, #1a2c38);
  box-shadow: var(--shadow-inset, inset 0 1px rgba(255,255,255,.04));
}

.sb-iconbtn:hover{
  background: var(--color-grey-500, #213743);
  border-color: rgba(255,255,255,.12);
}

.sb-iconbtn svg{
  width: 20px;
  height: 20px;
  stroke: var(--color-white, #fff);
  fill: none;
  stroke-width: 2;
  opacity: .95;
}

/* Notification badge (Stake green) */
.sb-badge{
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  border-radius: var(--radius-full, 9999px);
  background: var(--color-green-500, #00e701);
  color: var(--color-neutral-black, #05080a);
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-grey-700, #0f212e);
  box-shadow: var(--shadows-md, 0 4px 6px rgba(0,0,0,.2));
}

/* spacing under header */
.sb-page-offset{ margin-top: var(--space-2, .5rem); }

/* ===========================
   FORCE BIG LOGO (wins all conflicts)
   =========================== */
.sb-logo .sb-logo__img{
  height: 56px;   /* mobile */
  width: auto;
  display: block;
}

@media (min-width: 480px){
  .sb-logo .sb-logo__img{ height: 64px; }
}

@media (min-width: 768px){
  .sb-logo .sb-logo__img{ height: 72px; }
}

@media (min-width: 1100px){
  .sb-logo .sb-logo__img{ height: 80px; }
}
/* ===========================
   Logged-in header: wallet moves left
   =========================== */

/* 3-column header layout */
.sb-header__inner{
  grid-template-columns: auto 1fr auto; /* left | spacer | right */
}

/* left slot container */
.sb-left{
  display:flex;
  align-items:center;
  min-width: 0;
}

/* Center slot becomes spacer only */
.sb-header__center{
  display:block;
}

/* When logged in, ensure wallet pill fits nicely on the left */
.sb-balance--left{
  max-width: 260px;         /* prevents covering icons on small phones */
  width: auto;
}

/* If a user has huge balance text, prevent overflow */
.sb-balance--left .sb-balance__amount{
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  display:inline-block;
  vertical-align: bottom;
}

/* Mobile safety: if screen is too small, shrink wallet slightly */
@media (max-width: 360px){
  .sb-balance--left{
    max-width: 220px;
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .sb-balance--left .sb-balance__amount{
    max-width: 130px;
  }
}
/* ===========================
   Stake-style Home Layout
   Paste at END of: /assets/css/main.css
   =========================== */

.sb-home{
  padding-bottom: calc(var(--mobile-footer-height, 68px) + var(--space-5, 1.25rem));
}

/* Main container */
.sb-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-4, 1rem);
}

/* Hero card */
.sb-heroCard{
  background: var(--color-grey-700, #0f212e);
  border: 2px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md, .5rem);
  padding: var(--space-5, 1.25rem);
  box-shadow: var(--shadows-sm, 0 1px 3px rgba(0,0,0,.2));
}

.sb-heroTitle{
  margin: 0 0 var(--space-2, .5rem);
  color: var(--color-white, #fff);
  font: var(--ds-heading-lg, 700 1.25rem/1.75rem ui-sans-serif);
}

.sb-heroDesc{
  margin: 0;
  color: var(--color-grey-200, #b1bad3);
  font: var(--ds-body-md, 400 1rem/1.5rem ui-sans-serif);
}

.sb-heroCta{
  margin-top: var(--space-4, 1rem);
  display: flex;
  gap: var(--space-2, .5rem);
  flex-wrap: wrap;
}

.sb-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  border-radius: var(--radius-md, .5rem);
  font-weight: 900;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.10);
}

.sb-btnPrimary{
  background: var(--color-blue-500, #1475e1);
  color: var(--color-white, #fff);
}

.sb-btnGhost{
  background: var(--color-grey-600, #1a2c38);
  color: var(--color-white, #fff);
}

/* Promos (2 big images) */
.sb-promos{
  margin-top: var(--space-4, 1rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3, .75rem);
}

@media (min-width: 768px){
  .sb-promos{ grid-template-columns: 1fr 1fr; }
}

.sb-promoCard{
  position: relative;
  display: block;
  border-radius: var(--radius-md, .5rem);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-700, #0f212e);
  box-shadow: var(--shadows-md, 0 4px 6px rgba(0,0,0,.2));
  text-decoration: none;
}

.sb-promoCard img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px){
  .sb-promoCard img{ height: 240px; }
}

.sb-promoOverlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.70) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4, 1rem);
}

.sb-promoTitle{
  color: #fff;
  font-weight: 950;
  font-size: 1.15rem;
}

.sb-promoHint{
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: .85rem;
  margin-top: .25rem;
}

/* Sections */
.sb-section{
  margin-top: var(--space-5, 1.25rem);
  background: var(--color-grey-700, #0f212e);
  border: 2px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md, .5rem);
  box-shadow: var(--shadows-sm, 0 1px 3px rgba(0,0,0,.2));
  overflow: hidden;
}

.sb-sectionHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--space-3, .75rem);
  padding: var(--space-4, 1rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sb-sectionHead h2{
  margin: 0;
  color: var(--color-white, #fff);
  font: var(--ds-heading-md, 700 1.125rem/1.75rem ui-sans-serif);
}

.sb-sectionHint{
  color: var(--color-grey-200, #b1bad3);
  font-weight: 800;
  font-size: .85rem;
}

.sb-sectionLink{
  color: var(--legacy-action-text, #4391e7);
  text-decoration:none;
  font-weight: 900;
}

/* Leagues row (lined up + scroll) */
.sb-leaguesRow{
  display:flex;
  gap: var(--space-3, .75rem);
  overflow-x:auto;
  padding: var(--space-4, 1rem);
  padding-top: var(--space-3, .75rem);
  -webkit-overflow-scrolling: touch;
}

.sb-leaguesRow a{
  display:inline-flex;
  align-items:center;
  gap: .6rem;
  padding: .65rem .85rem;
  border-radius: var(--radius-md, .5rem);
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-600, #1a2c38);
  color: var(--color-white, #fff);
  text-decoration:none;
  font-weight: 900;
  white-space: nowrap;
}

.sb-cardPad{
  padding: var(--space-4, 1rem);
}

/* Keep your odds buttons looking consistent (moved from inline style) */
.nxw-odd-btn{
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-600, #1a2c38);
  color: var(--color-white, #fff);
  border-radius: var(--radius-md, .5rem);
  padding: 12px 10px;
  cursor: pointer;
  text-align: center;
  font-weight: 950;
  letter-spacing: .2px;
  position: relative;
  user-select: none;
  transition: transform .06s ease, background .18s ease, border-color .18s ease;
}
.nxw-odd-btn:active{ transform: scale(.99); }
.nxw-odd-btn small{
  display:block;
  margin-top:6px;
  font-size:11px;
  color: var(--color-grey-200, #b1bad3);
  font-weight: 800;
}
.nxw-odd-btn.nxw-selected{
  background: rgba(0,231,1,.12);
  border-color: rgba(0,231,1,.35);
}
.nxw-odd-btn.nxw-locked,
.nxw-odd-btn[aria-disabled="true"]{
  cursor:not-allowed;
  opacity:.60;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.lockBadge{
  position:absolute; top:8px; right:10px;
  font-size:12px;
  opacity:.9;
}
/* ===========================
   Trending Leagues (Stake-like cards)
   Add to END of: /assets/css/main.css
   =========================== */

/* Wrapper holds arrows */
.sb-trendWrap{
  position: relative;
}

/* Row behaves like Stake Trending Sports */
.sb-trendRow{
  display: flex;
  gap: var(--space-3, .75rem);
  overflow-x: auto;
  padding: var(--space-4, 1rem);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.sb-trendRow::-webkit-scrollbar{ display:none; }

/* Card (big image tile) */
.sb-leagueCard{
  flex: 0 0 auto;
  width: 150px;
  height: 190px;
  border-radius: var(--radius-md, .5rem);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-600, #1a2c38);
  box-shadow: var(--shadows-md, 0 4px 6px rgba(0,0,0,.2));
  scroll-snap-align: start;
  transform: translateZ(0);
}

@media (min-width: 768px){
  .sb-leagueCard{
    width: 165px;
    height: 205px;
  }
}

.sb-leagueImg{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Bottom label like Stake */
.sb-leagueName{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.70) 100%);
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

/* Hover / active feel */
.sb-leagueCard:hover{
  border-color: rgba(255,255,255,.14);
}
.sb-leagueCard:active{
  transform: scale(.99);
}

/* Arrow buttons (top-right like Stake) */
.sb-trendNav{
  position: absolute;
  top: 6px;
  right: 10px;
  width: 36px;
  height: 32px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.10);
  background: var(--color-grey-700, #0f212e);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.sb-trendNav--prev{ right: 52px; }
.sb-trendNav:hover{
  background: var(--color-grey-600, #1a2c38);
  border-color: rgba(255,255,255,.14);
}

/* Hide arrows on very small screens (optional) */
@media (max-width: 420px){
  .sb-trendNav{ display:none; }
}
/* ===========================
   SkyveraBet Home (Stake-like)
   Add to END of: /assets/css/main.css
   =========================== */

.sb-home{
  background: var(--color-grey-900, #071824);
  color: var(--color-grey-200, #b1bad3);
}

.sb-wrap{
  width: min(1200px, calc(100% - 20px));
  margin: 0 auto;
  padding: var(--space-3, .75rem) 0;
  padding-bottom: calc(var(--mobile-footer-height, 68px) + 22px);
}

/* HERO */
.sb-heroCard{
  background: var(--color-grey-700, #0f212e);
  border: 2px solid rgba(255,255,255,.06);
  border-radius: 18px;
  box-shadow: var(--shadows-lg, 0 10px 15px rgba(0,0,0,.2));
  padding: 16px;
  margin-top: 10px;
}

.sb-heroTitle{
  margin: 0 0 6px 0;
  color: var(--color-white, #fff);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 22px;
}

.sb-heroDesc{
  margin: 0;
  color: var(--color-grey-200, #b1bad3);
  line-height: 1.4;
  font-weight: 600;
  font-size: 14px;
  max-width: 70ch;
}

.sb-heroCta{
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sb-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,.10);
  box-shadow: var(--btn-shadow, 0 1px 3px rgba(0,0,0,.2));
}

.sb-btnPrimary{
  background: var(--color-blue-500, #1475e1);
  color: #fff;
  border-color: rgba(255,255,255,.08);
}
.sb-btnPrimary:hover{ filter: brightness(1.05); }

.sb-btnGhost{
  background: var(--color-grey-600, #1a2c38);
  color: #fff;
}
.sb-btnGhost:hover{ background: var(--color-grey-500, #213743); }

/* ===========================
   PROMO CARDS (Casino + Sports)
   MUST STAY LEFT/RIGHT ON MOBILE
   =========================== */

.sb-promos{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* ALWAYS 2 columns */
  gap: 10px;
}

/* If someone uses super tiny phone, keep 2 columns but reduce gap */
@media (max-width: 360px){
  .sb-promos{ gap: 8px; }
}

.sb-promoCard{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.08);
  background: var(--color-grey-700, #0f212e);
  box-shadow: var(--shadows-md, 0 4px 6px rgba(0,0,0,.2));
  min-width: 0;
}

/* Equal height on both cards (no misalignment) */
.sb-promoMedia{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9; /* makes both cards same height */
  background: var(--color-grey-800, #071d2a);
}

.sb-promoMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sb-promoOverlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.70) 100%);
}

.sb-promoTitle{
  color: #fff;
  font-weight: 950;
  font-size: 16px;
  letter-spacing: .2px;
}

.sb-promoHint{
  margin-top: 3px;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 12px;
}

.sb-promoCard:hover{
  border-color: rgba(255,255,255,.14);
}
.sb-promoCard:active{
  transform: scale(.995);
}

/* ===========================
   SECTIONS
   =========================== */
.sb-section{
  margin-top: 14px;
  background: var(--color-grey-700, #0f212e);
  border: 2px solid rgba(255,255,255,.06);
  border-radius: 18px;
  box-shadow: var(--shadows-lg, 0 10px 15px rgba(0,0,0,.2));
  overflow: hidden;
}

.sb-sectionHead{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sb-sectionHead h2{
  margin: 0;
  font-size: 14px;
  color: #fff;
  font-weight: 950;
  letter-spacing: .2px;
}

.sb-sectionLink{
  color: var(--color-blue-300, #72aced);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.sb-sectionLink:hover{ text-decoration: underline; }
/* ===========================
   Stake-like Bottom Navigation
   Add to END of: /assets/css/main.css
   =========================== */

.sb-bottom-nav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: var(--color-grey-700, #0f212e);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -10px 30px rgba(0,0,0,.35);
  padding: 10px 10px calc(env(safe-area-inset-bottom, 0px) + 10px);
}

.sb-bottom-nav{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.sb-tab{
  position: relative;
  text-decoration: none;
  color: var(--color-grey-200, #b1bad3);
  border-radius: 14px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 54px;
  border: 2px solid transparent;
  background: transparent;
  transition: background .15s ease, border-color .15s ease, transform .06s ease;
}

.sb-tab:active{ transform: scale(.99); }

.sb-ico{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sb-ico svg{
  width: 22px;
  height: 22px;
  stroke: currentColor;
  opacity: .95;
}

.sb-label{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1;
}

/* Active = Stake-like highlight */
.sb-tab.active{
  color: var(--color-white, #fff);
  background: var(--color-grey-600, #1a2c38);
  border-color: rgba(255,255,255,.10);
}

/* Small top indicator bar */
.sb-tab.active::before{
  content: "";
  position: absolute;
  top: 6px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-green-500, #00e701);
  box-shadow: 0 6px 16px rgba(0,231,1,.25);
}

/* Desktop: keep bottom nav, but slightly tighter */
@media (min-width: 900px){
  .sb-bottom-nav{
    padding-left: 14px;
    padding-right: 14px;
  }
  .sb-tab{
    min-height: 56px;
  }
}
/* ===========================
   Stake-like Footer (SkyveraBet)
   Add to END of: /assets/css/main.css
   =========================== */

.sb-footer{
  margin-top: 24px;
  color: var(--color-grey-200, #b1bad3);
  background: var(--color-grey-800, #071d2a);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Make sure footer isn't hidden behind bottom-nav */
.sb-footer{
  padding-bottom: calc(var(--mobile-footer-height, 68px) + env(safe-area-inset-bottom, 0px));
}

.sb-footer__container{
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
}

/* Top strip */
.sb-footer__top{
  background: var(--color-grey-700, #0f212e);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sb-footer__top .sb-footer__container{
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sb-footer__trust{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.sb-footer__age{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--color-white, #fff);
  font-weight: 900;
}

.sb-footer__trustText{
  color: rgba(255,255,255,.80);
  font-size: 13px;
}

.sb-footer__miniLinks{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.sb-footer__link{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  opacity: .9;
}

.sb-footer__link:hover{
  opacity: 1;
  text-decoration: underline;
}

.sb-footer__dot{
  opacity: .6;
}

/* Body */
.sb-footer__body{
  padding: 18px 0 12px;
}

.sb-footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 18px;
  padding: 12px 0 18px;
}

/* Brand */
.sb-footer__brandRow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sb-footer__logo{
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.sb-footer__tagline{
  margin: 10px 0 12px;
  color: rgba(255,255,255,.74);
  line-height: 1.5;
  font-size: 13.5px;
  max-width: 460px;
}

.sb-footer__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sb-footer__badge{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
}

/* Columns */
.sb-footer__title{
  font-weight: 950;
  color: var(--color-white, #fff);
  margin-bottom: 10px;
  letter-spacing: .2px;
}

.sb-footer__item{
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sb-footer__item:hover{
  color: var(--color-white, #fff);
  border-bottom-color: rgba(255,255,255,.10);
}

/* Payments */
.sb-footer__payments{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 6px;
}

.sb-footer__payments img{
  height: 22px;
  width: auto;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
}

.sb-footer__note{
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.45;
}

/* Bottom legal */
.sb-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.sb-footer__legalTitle{
  font-weight: 950;
  color: var(--color-white, #fff);
  margin-bottom: 6px;
}

.sb-footer__legalText{
  margin: 0 0 8px;
  max-width: 760px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  font-size: 13px;
}

.sb-footer__legalMuted{
  color: rgba(255,255,255,.60);
  font-size: 12.5px;
}

.sb-footer__copy{
  font-weight: 850;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px){
  .sb-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .sb-footer__grid{
    grid-template-columns: 1fr;
  }
  .sb-footer__payments img{ height: 20px; }
  .sb-footer__bottom{ align-items: flex-start; }
  .sb-footer__logo{ height: 40px; }
}
/* ===========================
   Stake-like Footer (simple)
   Add to END of: /assets/css/main.css
   =========================== */

.stk-footer{
  margin-top: 22px;
  background: var(--color-grey-700, #0f212e);
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--color-grey-200, #b1bad3);
  padding-bottom: calc(var(--mobile-footer-height, 68px) + env(safe-area-inset-bottom, 0px));
}

.stk-footer__wrap{
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
  padding: 22px 0 18px;
}

.stk-footer__grid{
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Brand */
.stk-footer__brandRow{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.stk-footer__logo{
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.stk-footer__desc{
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.5;
  max-width: 420px;
}

/* Columns */
.stk-footer__title{
  font-weight: 900;
  color: var(--color-white, #fff);
  margin-bottom: 10px;
  letter-spacing: .2px;
  font-size: 13px;
}

.stk-footer__link{
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: rgba(255,255,255,.68);
  font-weight: 700;
  font-size: 13px;
}

.stk-footer__link:hover{
  color: var(--color-white, #fff);
}

/* Payments strip */
.stk-footer__payments{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.stk-footer__payments img{
  height: 22px;
  width: auto;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
}

/* Legal */
.stk-footer__legal{
  padding-top: 16px;
}

.stk-footer__legalTitle{
  font-weight: 900;
  color: var(--color-white, #fff);
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: .2px;
}

.stk-footer__legalText{
  margin: 0 0 8px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.5;
  max-width: 820px;
}

.stk-footer__legalMuted{
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
}

/* Bottom row */
.stk-footer__bottom{
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stk-footer__copy{
  font-weight: 800;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.stk-footer__ageBadge{
  height: 30px;
  min-width: 48px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--color-white, #fff);
  font-weight: 900;
}

/* Responsive */
@media (max-width: 980px){
  .stk-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .stk-footer__grid{
    grid-template-columns: 1fr;
  }
  .stk-footer__payments img{ height: 20px; }
  .stk-footer__logo{ height: 42px; }
}
/* ==========================================
   WINNING BETS (Stake-like) — ticker cards
   Uses your existing HTML classes:
   .sporty-winners-wrapper .sporty-winners-track .sporty-winner-card ...
   ========================================== */

.sporty-winners-wrapper{
  width: min(1200px, calc(100% - 20px));
  margin: var(--space-4, 1rem) auto;
  overflow: hidden;
  position: relative;
}

/* subtle fade edges like Stake */
.sporty-winners-wrapper:before,
.sporty-winners-wrapper:after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width: 44px;
  pointer-events:none;
  z-index:2;
}
.sporty-winners-wrapper:before{
  left:0;
  background: linear-gradient(90deg, var(--color-grey-900, #071824), transparent);
}
.sporty-winners-wrapper:after{
  right:0;
  background: linear-gradient(270deg, var(--color-grey-900, #071824), transparent);
}

.sporty-winners-track{
  display:flex;
  align-items: stretch;
  gap: var(--space-3, .75rem);
  padding: var(--space-2, .5rem) 0;
  will-change: transform;
}

/* Card = stake row-style tile */
.sporty-winner-card{
  flex: 0 0 auto;
  width: clamp(240px, 34vw, 330px);
  border-radius: var(--radius-md, .5rem);
  background: var(--color-grey-600, #1a2c38);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadows-sm, 0 1px 3px rgba(0,0,0,.2));
  position: relative;
  overflow: hidden;
}

/* inner layout */
.sporty-winner-card .winner-text{
  padding: var(--space-3, .75rem);
  display:flex;
  flex-direction:column;
  gap: .25rem;
}

.sporty-winner-card .winner-phone{
  font: var(--ds-body-sm-strong, 600 .875rem/1.25rem ui-sans-serif);
  color: var(--color-white, #fff);
  opacity: .95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sporty-winner-card .winner-amount{
  font: var(--ds-heading-sm, 700 1rem/1.5rem ui-sans-serif);
  color: var(--color-white, #fff);
  letter-spacing: .2px;
}

.sporty-winner-card .winner-label{
  font: var(--ds-body-xs-strong, 600 .75rem/1rem ui-sans-serif);
  color: var(--color-grey-200, #b1bad3);
}

/* trophy watermark like Stake */
.sporty-winner-card .winner-bg-icon{
  position:absolute;
  right: 10px;
  bottom: 6px;
  font-size: 44px;
  opacity: .08;
  transform: rotate(-10deg);
  filter: grayscale(1);
}

/* hover (desktop) */
@media (hover:hover){
  .sporty-winner-card:hover{
    border-color: rgba(255,255,255,.10);
    background: var(--color-grey-500, #213743);
  }
}

/* mobile: keep cards readable */
@media (max-width: 520px){
  .sporty-winner-card{
    width: 78vw;
  }
  .sporty-winners-wrapper:before,
  .sporty-winners-wrapper:after{
    width: 28px;
  }
}
/* ==========================================
   WINNING BETS (Stake-like table) — Sports Bets
   Add to: /assets/css/main.css
   ========================================== */

.sb-wbets{
  width: min(1200px, calc(100% - 20px));
  margin: var(--space-4, 1rem) auto;
}

.sb-wbets__tabs{
  display:flex;
  gap: var(--space-2, .5rem);
  margin-bottom: var(--space-3, .75rem);
  flex-wrap: wrap;
}

.sb-wbets__tab{
  appearance:none;
  border: 0;
  border-radius: var(--radius-full, 9999px);
  padding: .55rem .95rem;
  font: var(--ds-body-sm-strong, 600 .875rem/1.25rem ui-sans-serif);
  background: var(--color-grey-700, #0f212e);
  color: var(--color-grey-200, #b1bad3);
  border: 1px solid rgba(255,255,255,.08);
}

.sb-wbets__tab.is-active{
  background: var(--color-grey-600, #1a2c38);
  color: var(--color-white, #fff);
  border-color: rgba(255,255,255,.12);
}

.sb-wbets__tab:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.sb-wbets__tableWrap{
  overflow-x:auto;
  border-radius: var(--radius-md, .5rem);
}

.sb-wbets__table{
  min-width: 780px;
  background: var(--color-grey-700, #0f212e);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md, .5rem);
  box-shadow: var(--shadows-sm, 0 1px 3px rgba(0,0,0,.2));
}

.sb-wbets__row{
  display:grid;
  grid-template-columns: 2.2fr 1.2fr .9fr .6fr .9fr;
  gap: 0;
  align-items:center;
  padding: .85rem .9rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.sb-wbets__row--head{
  border-top: 0;
  background: rgba(255,255,255,.03);
  color: var(--color-grey-200, #b1bad3);
  font: var(--ds-body-xs-strong, 600 .75rem/1rem ui-sans-serif);
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.sb-wbets__cell{
  min-width: 0;
  display:flex;
  align-items:center;
  gap: .5rem;
  color: var(--color-white, #fff);
  font: var(--ds-body-sm-strong, 600 .875rem/1.25rem ui-sans-serif);
}

.sb-wbets__muted{
  color: var(--color-grey-200, #b1bad3);
  font-weight: 600;
}

.sb-wbets__num{
  justify-content:flex-end;
  color: var(--color-grey-100, #d5dceb);
  font-variant-numeric: tabular-nums;
}

/* This is what makes the numbers look "hidden" like Stake (....) */
.sb-wbets__ellipsis{
  display:inline-block;
  max-width: 100%;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Icons */
.sb-wbets__eventIcon{
  width: 22px;
  height: 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.sb-wbets__userDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-green-500, #00e701);
  box-shadow: 0 0 0 3px rgba(0,231,1,.12);
}

.sb-wbets__empty{
  padding: 1rem;
  color: var(--color-grey-200, #b1bad3);
  font: var(--ds-body-sm, 400 .875rem/1.25rem ui-sans-serif);
}

/* Mobile: allow horizontal scroll but keep spacing nice */
@media (max-width: 520px){
  .sb-wbets__row{
    padding: .75rem .75rem;
  }
}
/* =========================
   SkyveraBet - Verify Card (Stake-like)
   Add to: /assets/css/main.css
   ========================= */

.sb-heroCard{
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.sb-verifyCard{
  margin-top: 14px;
  border-radius: 14px;
  padding: 14px;
  background: rgba(0,0,0,.12);
  border: 2px solid rgba(255,255,255,.14);
  position: relative;
  overflow: hidden;
}

.sb-verifyCard::after{
  content:"";
  position:absolute;
  inset:-60px -60px auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), transparent 60%);
  transform: rotate(12deg);
  pointer-events:none;
}

.sb-verifyTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}

.sb-verifyUser{
  font-weight: 950;
  letter-spacing:.2px;
  color: var(--color-white, #fff);
  display:flex;
  align-items:center;
  gap:8px;
}

.sb-verifyUser .sb-verifyChevron{
  opacity:.8;
  font-weight: 900;
}

.sb-verifyBadge{
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--color-white, #fff);
}

.sb-verifyLine{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight: 850;
  color: rgba(255,255,255,.92);
  margin-bottom: 10px;
}

.sb-verifyInfo{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 900;
  opacity:.95;
}

.sb-verifyBar{
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow: hidden;
  margin-bottom: 10px;
}

.sb-verifyBarFill{
  height: 100%;
  width: 0%;
  display:block;
  border-radius: 999px;
  background: var(--sb-tier, #557086);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.sb-verifyNext{
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* Tier colors */
.sb-verify--unverified{ --sb-tier: var(--color-grey-300, #557086); }
.sb-verify--bronze{ --sb-tier: var(--color-yellow-600, #cd7f01); }
.sb-verify--silver{ --sb-tier: var(--color-grey-200, #b1bad3); }
.sb-verify--gold{ --sb-tier: var(--color-yellow-500, #ff9d00); }

.sb-verify--bronze{ border-color: rgba(205,127,1,.45); }
.sb-verify--silver{ border-color: rgba(177,186,211,.45); }
.sb-verify--gold{ border-color: rgba(255,157,0,.45); }
/* Make verify card clickable without looking like a link */
.sb-verifyCard{
  display:block;
  text-decoration:none;
  color: inherit;
}
.sb-verifyCard:hover{
  transform: translateY(-1px);
  transition: transform .12s ease;
}
.sb-verifyCard:active{
  transform: translateY(0px);
}
/* =========================
   Header quick actions (center)
   + Account dropdown (Stake-like)
   ========================= */

.sb-header__center{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 0;
}

.sb-qactions{
  display:flex;
  align-items:center;
  gap:10px;
  max-width: 100%;
}

.sb-qaction{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  text-decoration:none;
  border:1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-surface, rgba(255,255,255,.04));
  color: var(--ds-text, #eaf0ff);
  white-space: nowrap;
  min-width: 0;
}

.sb-qaction:hover{
  background: var(--ds-surface-2, rgba(255,255,255,.06));
  border-color: var(--ds-border-2, rgba(255,255,255,.14));
}

.sb-qaction__ico{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.sb-qaction__ico svg{
  width:18px;
  height:18px;
  fill:none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sb-qaction__txt{
  font-weight: 700;
  font-size: 13px;
  color: var(--ds-text, #eaf0ff);
}

/* Make quick actions stay clean on small screens */
@media (max-width: 520px){
  .sb-qaction{ padding:10px; }
  .sb-qaction__txt{ display:none; }
}

/* =========================
   Account dropdown
   ========================= */

.sb-account{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.sb-accountbtn svg{
  fill:none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sb-acmenu{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  border-radius: 14px;
  border:1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-card, rgba(16,26,51,.98));
  box-shadow: var(--ds-shadow, 0 18px 50px rgba(0,0,0,.35));
  padding: 8px;
  z-index: 2000;
}

.sb-acmenu__item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--ds-text, #eaf0ff);
  position: relative;
}

.sb-acmenu__item:hover{
  background: var(--ds-surface-2, rgba(255,255,255,.06));
}

.sb-acmenu__ico{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 20px;
}

.sb-acmenu__ico svg{
  width:20px;
  height:20px;
  fill:none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sb-acmenu__txt{
  font-weight: 700;
  font-size: 14px;
}

.sb-acmenu__divider{
  height: 1px;
  margin: 8px 6px;
  background: var(--ds-border, rgba(255,255,255,.10));
}

.sb-acmenu__item--danger{
  color: var(--ds-danger, #ef4444);
}

.sb-acmenu__badge{
  margin-left: auto;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  font-size: 12px;
  background: var(--ds-brand, #5b8cff);
  color: #fff;
}
/* =========================
   Stake-style Sports: Upcoming (SkyveraBet)
   Add to /assets/css/main.css
   ========================= */

.sb-upcoming-page .wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px;
}

.sb-upcoming-page .section{
  margin-top: 14px;
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-card, rgba(16,26,51,.55));
  border-radius: var(--ds-radius, 16px);
  box-shadow: var(--ds-shadow, 0 18px 50px rgba(0,0,0,.35));
  overflow: hidden;
}

.sb-upcoming-page .sectionHead{
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--ds-border, rgba(255,255,255,.10));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.sb-upcoming-page .sectionHead h2{
  margin: 0;
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--ds-text, #eaf0ff);
  opacity: .95;
}

.sb-upcoming-page .sectionHead .hint{
  color: var(--ds-muted, rgba(234,240,255,.72));
  font-weight: 750;
  font-size: 12px;
}

.sb-upcoming-pad{ padding: 14px; }

/* Tabs */
.sb-sports-tabs{
  display: inline-flex;
  gap: 10px;
  padding: 6px 0 10px;
  margin-bottom: 6px;
  overflow: auto;
  scrollbar-width: none;
}
.sb-sports-tabs::-webkit-scrollbar{ display:none; }

.sb-sports-tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: var(--ds-text, #eaf0ff);
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-surface, rgba(255,255,255,.05));
  opacity: .85;
  white-space: nowrap;
}
.sb-sports-tab.active{
  opacity: 1;
  border-color: rgba(34,197,94,.28);
  background: linear-gradient(135deg, rgba(34,197,94,.16), rgba(255,255,255,.05));
}

/* Controls row */
.sb-sports-controls{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 12px;
}

.sb-sports-controls__left{ flex: 1; min-width: 0; }
.sb-sports-controls__right{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.sb-sports-search{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-surface, rgba(255,255,255,.05));
  color: var(--ds-text, #eaf0ff);
  outline: none;
  font-weight: 800;
}

.sb-select-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-surface, rgba(255,255,255,.05));
  color: var(--ds-text, #eaf0ff);
  font-weight: 850;
  white-space: nowrap;
}

.sb-select-pill__label{
  opacity: .8;
  font-size: 12px;
}

.sb-select-pill__select{
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ds-text, #eaf0ff);
  font-weight: 900;
  appearance: none;
  padding-right: 14px;
  cursor: pointer;
}

.sb-filter-btn{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-surface, rgba(255,255,255,.05));
  color: var(--ds-text, #eaf0ff);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sb-filter-btn svg{
  width: 20px;
  height: 20px;
}

/* All Soccer header */
.sb-leagues-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 8px;
}
.sb-leagues-head__title{
  font-weight: 950;
  letter-spacing: .2px;
  color: var(--ds-text, #eaf0ff);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Leagues list */
.sb-leagues{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sb-league{
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-surface-2, rgba(255,255,255,.04));
  border-radius: var(--ds-radius, 16px);
  overflow: hidden;
}

.sb-league__summary{
  list-style: none;
  cursor: pointer;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sb-league__summary::-webkit-details-marker{ display:none; }

.sb-league__left{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.sb-league__logo{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: rgba(255,255,255,.06);
  flex: 0 0 22px;
}
.sb-league__logo--ph{
  display: inline-block;
}

.sb-league__name{
  font-weight: 900;
  color: var(--ds-text, #eaf0ff);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sb-league__right{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.sb-league__count{
  min-width: 34px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  color: var(--ds-text, #eaf0ff);
  background: rgba(255,255,255,.08);
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
}

.sb-league__chev svg{
  width: 18px;
  height: 18px;
  opacity: .8;
}
.sb-league[open] .sb-league__chev svg{
  transform: rotate(180deg);
}

.sb-league__body{
  padding: 10px;
  border-top: 1px solid var(--ds-border, rgba(255,255,255,.10));
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Match card (fully clickable) */
.sb-match{
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-card, rgba(16,26,51,.55));
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 130px minmax(0,1fr);
  gap: 12px;
  transition: transform .08s ease, border-color .18s ease, background .18s ease;
}
.sb-match:hover{
  border-color: rgba(34,197,94,.22);
  background: linear-gradient(135deg, rgba(34,197,94,.08), rgba(255,255,255,.04));
}
.sb-match:active{ transform: scale(.995); }

.sb-match__time{
  border-right: 1px solid var(--ds-border, rgba(255,255,255,.10));
  padding-right: 12px;
}
.sb-match__day{
  font-weight: 900;
  color: var(--ds-text, #eaf0ff);
  opacity: .95;
}
.sb-match__clock{
  margin-top: 6px;
  font-weight: 850;
  color: var(--ds-muted, rgba(234,240,255,.72));
}
.sb-muted{ opacity: .75; }

.sb-match__teams{
  display: grid;
  gap: 6px;
}
.sb-match__team{
  font-weight: 950;
  color: var(--ds-text, #eaf0ff);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sb-match__market{
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--ds-muted, rgba(234,240,255,.72));
}

/* Odds row */
.sb-odds{
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  position: relative;
}

.sb-odd{
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-surface, rgba(255,255,255,.05));
  border-radius: 14px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.sb-odd__name{
  font-weight: 850;
  color: var(--ds-text, #eaf0ff);
  opacity: .92;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sb-odd__val{
  font-weight: 950;
  color: var(--ds-text, #eaf0ff);
  flex: 0 0 auto;
}

.sb-moremarkets{
  position: absolute;
  right: 0;
  top: -28px;
  font-weight: 900;
  font-size: 12px;
  color: var(--ds-muted, rgba(234,240,255,.72));
  background: rgba(255,255,255,.06);
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  border-radius: 999px;
  padding: 4px 8px;
}

/* Empty state */
.sb-empty-state{
  margin-top: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-surface, rgba(255,255,255,.05));
}
.sb-empty-state__title{
  font-weight: 950;
  color: var(--ds-text, #eaf0ff);
}
.sb-empty-state__text{
  margin-top: 6px;
  font-weight: 800;
  color: var(--ds-muted, rgba(234,240,255,.72));
}

/* Responsive */
@media (max-width: 720px){
  .sb-sports-controls{
    flex-direction: column;
    align-items: stretch;
  }
  .sb-sports-controls__right{
    justify-content: space-between;
  }
  .sb-match{
    grid-template-columns: 1fr;
  }
  .sb-match__time{
    border-right: 0;
    padding-right: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .sb-moremarkets{
    position: static;
    justify-self: end;
    margin-top: 8px;
  }
}
/* Force visible space between search input and filter button */
.sb-sports-controls{
  gap: 25px;                 /* space between left and right blocks */
}

.sb-sports-controls__left{
  flex: 1;
  min-width: 0;
}

.sb-sports-controls__right{
  flex: 0 0 auto;
  margin-left: 10px;         /* extra safety space */
}

/* If your filter button is next to the input inside the same row, this also works */
.sb-filter-btn{
  margin-left: 10px;         /* makes sure it never touches the input */
}
/* =========================
   Mobile: keep Search + Filter on ONE line
   ========================= */
@media (max-width: 720px){

  /* force row layout */
  .sb-sports-controls{
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 25px;
  }

  /* left side (input) should shrink properly */
  .sb-sports-controls__left{
    flex: 1 1 auto;
    min-width: 0;            /* IMPORTANT: allows input to shrink */
  }

  .sb-sports-search{
    width: 100%;
    min-width: 0;
    padding: 14px 14px;
    border-radius: 14px;
  }

  /* right side must NOT wrap or drop */
  .sb-sports-controls__right{
    flex: 0 0 auto;
    width: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  /* filter button fixed size */
  .sb-filter-btn{
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
  }
}
/* =========================================================
   MATCH PAGE (scoped) + Correct Score slider (Stake-like)
   ========================================================= */

/* Page background + spacing only for match page */
.nx-match-page{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 800px at 15% 0%, rgba(255,255,255,.08), transparent 55%),
    radial-gradient(900px 600px at 85% 10%, rgba(34,197,94,.10), transparent 52%),
    linear-gradient(180deg, rgba(7,26,43,1), rgba(7,26,43,.96));
  color: var(--ds-text, #EAF0FF);
  padding-bottom:96px;
}

/* Match page containers */
.nx-match-page .nx-wrap{ max-width:1100px; margin:0 auto; padding:14px; }

.nx-match-page .nx-pagehead{
  border:1px solid var(--ds-border, rgba(255,255,255,.10));
  background: var(--ds-card, rgba(255,255,255,.05));
  border-radius:16px;
  box-shadow: var(--ds-shadow, 0 18px 50px rgba(0,0,0,.40));
  padding:14px;
  margin-bottom:12px;
}
.nx-match-page .nx-pagehead .title{ font-weight:950; font-size:16px; }
.nx-match-page .nx-pagehead .sub{ margin-top:6px; font-weight:800; color: var(--ds-muted, rgba(234,240,255,.72)); font-size:12px; }

.nx-match-page .nx-card{
  border:1px solid var(--ds-border, rgba(255,255,255,.12));
  background: var(--ds-card, rgba(255,255,255,.06));
  border-radius:16px;
  box-shadow: var(--ds-shadow, 0 18px 50px rgba(0,0,0,.40));
  padding:14px;
}

.nx-match-page .nx-teams{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:10px;
}
.nx-match-page .nx-team{
  display:flex;
  gap:10px;
  align-items:center;
  min-width:0;
}
.nx-match-page .nx-team img{
  width:32px; height:32px; border-radius:999px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  flex:0 0 auto;
}
.nx-match-page .nx-team .name{
  font-weight:950;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.nx-match-page .nx-vs{
  font-weight:950;
  opacity:.6;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
}

/* Market blocks */
.nx-match-page .nxw-market{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
}
.nx-match-page .nxw-market h3{
  margin:0 0 10px 0;
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;
  opacity:.95;
}

/* Odds buttons */
.nx-match-page .nxw-odd-btn{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color: var(--ds-text, #EAF0FF);
  border-radius:14px;
  padding:12px 10px;
  cursor:pointer;
  text-align:center;
  font-weight:950;
  letter-spacing:.2px;
  position:relative;
  user-select:none;
  transition: transform .06s ease, background .18s ease, border-color .18s ease;
}
.nx-match-page .nxw-odd-btn:active{ transform: scale(.99); }
.nx-match-page .nxw-odd-btn small{
  display:block;
  margin-top:6px;
  font-size:11px;
  color: var(--ds-muted, rgba(234,240,255,.72));
  font-weight:800;
  letter-spacing:.2px;
}
.nx-match-page .nxw-odd-btn.nxw-selected{
  background:linear-gradient(135deg, rgba(34,197,94,.22), rgba(255,255,255,.06));
  border-color: rgba(34,197,94,.30);
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
}
.nx-match-page .nxw-odd-btn.nxw-locked,
.nx-match-page .nxw-odd-btn[aria-disabled="true"]{
  cursor:not-allowed;
  opacity:.60;
  background:linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-color:rgba(255,255,255,.10);
}
.nx-match-page .lockBadge{
  position:absolute; top:8px; right:10px;
  font-size:12px;
  opacity:.9;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
}

/* Grids */
.nx-match-page .nxw-oddsRow3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.nx-match-page .nxw-oddsRow2{ display:grid; grid-template-columns: repeat(2, 1fr); gap:10px; }
.nx-match-page .nxw-oddsGrid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap:10px; }

.nx-match-page .nxw-lines{ display:grid; gap:10px; }
.nx-match-page .nxw-line{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.10);
  border-radius:14px;
  padding:10px;
}
.nx-match-page .nxw-lineHead{
  font-weight:950;
  color:rgba(234,240,255,.92);
  font-size:12px;
  margin-bottom:8px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.nx-match-page .nxw-lineHead span:last-child{ color: var(--ds-muted, rgba(234,240,255,.72)); font-weight:850; }

/* Bottom links */
.nx-match-page .nx-more{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.nx-match-page .nx-more a{
  text-decoration:none;
  font-weight:950;
  color: var(--ds-text, #EAF0FF);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}

/* =========================
   Correct Score Slider UI
   ========================= */
.nx-match-page .sb-cs-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 0 10px 0;
}
.nx-match-page .sb-cs-title{
  margin:0;
}
.nx-match-page .sb-cs-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.nx-match-page .sb-cs-toggle{
  appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color: var(--ds-text, #EAF0FF);
  border-radius:999px;
  padding:8px 10px;
  font-weight:900;
  cursor:pointer;
  line-height:1;
  opacity:.88;
}
.nx-match-page .sb-cs-toggle.active{
  opacity:1;
  border-color: rgba(34,197,94,.28);
  background:linear-gradient(135deg, rgba(34,197,94,.16), rgba(255,255,255,.06));
}
.nx-match-page .sb-cs-chev{
  width:18px; height:18px;
  opacity:.8;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.nx-match-page .sb-cs-chev svg{ width:18px; height:18px; }

.nx-match-page .sb-cs-top{
  display:grid;
  grid-template-columns: 1fr 1fr 180px;
  gap:14px;
  align-items:end;
}

.nx-match-page .sb-cs-side{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.10);
  border-radius:14px;
  padding:10px 12px;
}
.nx-match-page .sb-cs-side__name{
  font-weight:900;
  color: var(--ds-muted, rgba(234,240,255,.82));
  margin-bottom:8px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Range styling (Stake-like) */
.nx-match-page .sb-cs-range{
  width:100%;
  accent-color: var(--ds-brand, #3b82f6);
}
.nx-match-page .sb-cs-ticks{
  display:flex;
  justify-content:space-between;
  margin-top:8px;
  color: var(--ds-muted, rgba(234,240,255,.70));
  font-weight:850;
  font-size:12px;
  padding:0 2px;
}
.nx-match-page .sb-cs-ticks span{ opacity:.9; }

/* Selected score button (make mkBtn look like screenshot) */
.nx-match-page .sb-cs-pick .nxw-odd-btn{
  width:100%;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-radius:14px;
  text-align:left;
}
.nx-match-page .sb-cs-pick .nxw-odd-btn small{
  margin-top:0;
  font-size:13px;
  font-weight:950;
  color: var(--ds-brand, #3b82f6);
}

/* Mobile */
@media (max-width: 720px){
  .nx-match-page .sb-cs-top{
    grid-template-columns: 1fr;
    gap:10px;
  }
  .nx-match-page .sb-cs-pick .nxw-odd-btn{
    height:46px;
  }
}

@media (max-width:420px){
  .nx-match-page .nx-card{ padding:12px; }
  .nx-match-page .nx-team img{ width:28px; height:28px; }
  .nx-match-page .nxw-odd-btn{ padding:11px 8px; border-radius:13px; }
  .nx-match-page .nxw-odd-btn small{ margin-top:5px; }
}
/* ===========================
   MATCH PAGE (Stake-like)
   =========================== */

.nx-match-page .nx-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:14px;
}

.nx-match-page .nx-pagehead{
  border:1px solid var(--ds-border, rgba(255,255,255,.10));
  background:var(--ds-card2, rgba(255,255,255,.05));
  border-radius:16px;
  padding:14px;
  margin-bottom:12px;
}

.nx-match-page .nx-pagehead .title{
  font-weight:900;
  font-size:16px;
}

.nx-match-page .nx-pagehead .sub{
  margin-top:6px;
  font-weight:800;
  color:var(--ds-muted, rgba(234,240,255,.72));
  font-size:12px;
}

.nx-match-page .nx-card{
  border:1px solid var(--ds-border, rgba(255,255,255,.12));
  background:var(--ds-card2, rgba(255,255,255,.06));
  border-radius:16px;
  padding:14px;
}

.nx-match-page .nx-teams{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.nx-match-page .nx-team{
  display:flex;
  gap:10px;
  align-items:center;
  min-width:0;
}

.nx-match-page .nx-team img{
  width:32px;
  height:32px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid var(--ds-border, rgba(255,255,255,.14));
  background:rgba(255,255,255,.08);
  flex:0 0 auto;
}

.nx-match-page .nx-team .name{
  font-weight:900;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.nx-match-page .nx-team--away{
  justify-content:flex-end;
}

.nx-match-page .nx-team--away .name{
  text-align:right;
}

.nx-match-page .nx-vs{
  font-weight:900;
  opacity:.65;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--ds-border, rgba(255,255,255,.10));
  background:rgba(0,0,0,.14);
}

/* Search bar (markets) */
.nx-match-page .sb-market-search{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--ds-border, rgba(255,255,255,.10));
  background:rgba(0,0,0,.18);
  border-radius:14px;
  padding:10px 12px;
  margin:10px 0 14px;
}

.nx-match-page .sb-market-search__ico{
  width:18px; height:18px;
  opacity:.75;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
}

.nx-match-page .sb-market-search__input{
  flex:1;
  min-width:0;
  border:0;
  outline:none;
  background:transparent;
  color:var(--ds-text, #eaf0ff);
  font-weight:800;
}

.nx-match-page .sb-markets{
  display:grid;
  gap:12px;
}

/* Market block */
.nx-match-page .sb-market{
  border:1px solid var(--ds-border, rgba(255,255,255,.10));
  background:rgba(0,0,0,.12);
  border-radius:14px;
  overflow:hidden;
}

.nx-match-page .sb-market__head{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  background:rgba(255,255,255,.03);
}

.nx-match-page .sb-market summary::-webkit-details-marker{ display:none; }

.nx-match-page .sb-market__title{
  font-weight:900;
  letter-spacing:.2px;
}

.nx-match-page .sb-market__chev{
  width:24px;
  height:24px;
  opacity:.8;
  display:grid;
  place-items:center;
}

.nx-match-page .sb-market__chev svg{
  width:18px; height:18px;
}

.nx-match-page details[open] .sb-market__chev{
  transform:rotate(180deg);
}

.nx-match-page .sb-market__modes{
  display:flex;
  gap:8px;
  margin-left:auto;
  margin-right:8px;
}

.nx-match-page .sb-mode{
  border:1px solid var(--ds-border, rgba(255,255,255,.12));
  background:rgba(255,255,255,.05);
  color:var(--ds-text, #eaf0ff);
  border-radius:999px;
  padding:6px 10px;
  font-weight:900;
  font-size:12px;
  cursor:pointer;
}

.nx-match-page .sb-mode.active{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
}

.nx-match-page .sb-market__body{
  padding:12px;
  border-top:1px solid rgba(255,255,255,.08);
}

/* Pill buttons */
.nx-match-page .sb-pill{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border:1px solid var(--ds-border, rgba(255,255,255,.10));
  background:rgba(0,0,0,.22);
  color:var(--ds-text, #eaf0ff);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  font-weight:900;
  position:relative;
}

.nx-match-page .sb-pill__label{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  opacity:.95;
}

.nx-match-page .sb-pill__odd{
  color:var(--ds-brand, #3b82f6);
  font-weight:950;
  font-size:13px;
  margin:0;
  opacity:1;
}

.nx-match-page .lockBadge{
  position:absolute;
  left:10px;
  top:9px;
  font-size:12px;
  opacity:.85;
}

.nx-match-page .nxw-odd-btn.nxw-locked,
.nx-match-page .nxw-odd-btn[aria-disabled="true"]{
  cursor:not-allowed;
  opacity:.60;
}

/* Rows */
.nx-match-page .sb-pill-row{
  display:grid;
  gap:10px;
}

.nx-match-page .sb-pill-row--2{ grid-template-columns: repeat(2, 1fr); }
.nx-match-page .sb-pill-row--3{ grid-template-columns: repeat(3, 1fr); }

.nx-match-page .sb-pill-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap:10px;
}

/* Table markets (Asian Total) */
.nx-match-page .sb-table{
  display:grid;
  gap:10px;
}

.nx-match-page .sb-table__head{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  padding:0 2px;
}

.nx-match-page .sb-table__th{
  color:var(--ds-muted, rgba(234,240,255,.72));
  font-weight:900;
  font-size:12px;
  text-align:center;
  letter-spacing:.2px;
}

.nx-match-page .sb-table__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

/* Correct score slider */
.nx-match-page .sb-cs-top{
  display:grid;
  grid-template-columns: 1fr 1fr 220px;
  gap:12px;
  align-items:start;
}

.nx-match-page .sb-cs-side__name{
  font-weight:900;
  margin-bottom:8px;
  opacity:.92;
}

.nx-match-page .sb-cs-range{
  width:100%;
  accent-color: var(--ds-brand, #3b82f6);
}

.nx-match-page .sb-cs-ticks{
  display:flex;
  justify-content:space-between;
  margin-top:8px;
  color:var(--ds-muted, rgba(234,240,255,.72));
  font-weight:900;
  font-size:12px;
}

.nx-match-page .sb-cs-pick .sb-pill{
  height:52px;
}

/* Back link */
.nx-match-page .nx-more{
  margin-top:14px;
  display:flex;
}

.nx-match-page .sb-backlink{
  text-decoration:none;
  font-weight:900;
  color:var(--ds-text, #eaf0ff);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--ds-border, rgba(255,255,255,.12));
  background:rgba(255,255,255,.06);
}

/* Mobile tuning (keeps it Stake-like) */
@media (max-width: 520px){
  .nx-match-page .nx-card{ padding:12px; }

  .nx-match-page .sb-pill-row--3{
    grid-template-columns: 1fr;
  }
  .nx-match-page .sb-pill-row--2{
    grid-template-columns: 1fr;
  }

  .nx-match-page .sb-cs-top{
    grid-template-columns: 1fr;
  }

  .nx-match-page .sb-market__modes{
    display:none; /* avoids cramped header on phone */
  }

  .nx-match-page .sb-pill-grid{
    grid-template-columns: 1fr;
  }
}
/* ================================
   SkyveraBet Header Icon Spacing Fix
   (Logged-in icons too close)
================================ */

/* Right side icons container */
.sb-actions{
  display:flex;
  align-items:center;
  gap:10px;              /* ✅ space between Search + Account */
}

/* Icon buttons */
.sb-iconbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  padding:0;
  line-height:1;
}

/* SVG sizing + breathing room */
.sb-iconbtn svg{
  width:20px;
  height:20px;
  display:block;
}

/* If your account button sits too tight inside its wrapper */
.sb-account{
  display:flex;
  align-items:center;
}

/* Deposit/Withdraw quick actions spacing */
.sb-qactions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Deposit/Withdraw icon + text spacing */
.sb-qaction{
  display:flex;
  align-items:center;
  gap:8px;
}
.sb-qaction__ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Dropdown items icon + text spacing */
.sb-acmenu__item{
  display:flex;
  align-items:center;
  gap:10px;
}
.sb-acmenu__ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Mobile tighter spacing */
@media (max-width: 420px){
  .sb-actions{ gap:8px; }
  .sb-iconbtn{ width:40px; height:40px; }
}
/* ==========================================
   SkyveraBet Header spacing (Logged-in)
   Fix: Wallet + Deposit + Withdraw too tight
========================================== */

/* Make header layout always flex + spaced */
.sb-header__inner{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:14px !important; /* ✅ space between left / center / right */
}

/* Left block (wallet/logo) */
.sb-left{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  padding-right:8px !important; /* ✅ space before center */
}

/* Wallet content spacing */
.sb-balance{
  display:flex !important;
  align-items:center !important;
  gap:10px !important; /* ✅ icon ↔ amount */
}

/* Make sure currency has space even if HTML forgets */
.sb-balance__amount strong{
  margin-right:6px !important;
}

/* Center area (Deposit/Withdraw) */
.sb-header__center{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:1 1 auto !important;
}

/* Deposit/Withdraw spacing */
.sb-qactions{
  display:flex !important;
  align-items:center !important;
  gap:12px !important; /* ✅ space between Deposit & Withdraw */
}

.sb-qaction{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;  /* ✅ icon ↔ text */
  padding:8px 10px !important;
  border-radius:14px !important;
}

/* Right icons spacing (search + account) */
.sb-actions{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
}

/* Small screens: reduce but keep spacing */
@media (max-width: 420px){
  .sb-header__inner{ gap:10px !important; }
  .sb-qactions{ gap:10px !important; }
}
/* ==============================
   SkyveraBet — Header spacing fix
   ============================== */
.mobile-header,
.topbar,
.sb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-header .right,
.mobile-header .actions,
.topbar .right,
.topbar .actions,
.sb-header .right,
.sb-header .actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.mobile-header .wallet,
.topbar .wallet,
.sb-header .wallet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ==========================================
   Transactions page — /user/transactions.php
   ========================================== */
.sb-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 12px 110px; /* space for bottom nav */
}

.sb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border, rgba(255,255,255,.10));
  background: rgba(255,255,255,.04);
  border-radius: var(--radius, 16px);
  padding: 12px 14px;
}

.sb-topbar__title {
  min-width: 0;
}

.sb-topbar__title h1 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .2px;
}

.sb-topbar__title p {
  margin: 6px 0 0 0;
  font-size: 12px;
  color: var(--muted, rgba(234,240,255,.70));
  line-height: 1.35;
}

.sb-close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border, rgba(255,255,255,.10));
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.sb-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--text, #eaf0ff);
  fill: none;
  stroke-width: 2;
  opacity: .9;
}

.sb-filters {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.sb-filter {
  flex: 0 0 auto;
  border: 1px solid var(--border, rgba(255,255,255,.10));
  background: rgba(255,255,255,.05);
  color: var(--text, #eaf0ff);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.sb-filter.is-active {
  border-color: rgba(91,140,255,.45);
  background: rgba(91,140,255,.12);
}

.sb-summary {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

@media (min-width: 760px) {
  .sb-summary { grid-template-columns: repeat(3, 1fr); }
}

.sb-tile {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px;
}

.sb-tile .k {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted, rgba(234,240,255,.70));
}

.sb-tile .v {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 950;
  color: var(--text, #eaf0ff);
}

.sb-tile .s {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted, rgba(234,240,255,.70));
}

.sb-feed {
  margin-top: 12px;
  border: 1px solid var(--border, rgba(255,255,255,.10));
  background: rgba(255,255,255,.03);
  border-radius: var(--radius, 16px);
  overflow: hidden;
}

.sb-feed__head {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sb-feed__head h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
}

.sb-feed__count {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted, rgba(234,240,255,.70));
}

.sb-list {
  padding: 12px 12px 6px;
}

.sb-item {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.sb-leftrow {
  display: flex;
  gap: 12px;
  min-width: 0;
}

.sb-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.sb-ico svg {
  width: 20px;
  height: 20px;
  stroke: rgba(234,240,255,.92);
  fill: none;
  stroke-width: 2;
  opacity: .95;
}

.sb-meta { min-width: 0; }

.sb-title {
  font-weight: 950;
  color: var(--text, #eaf0ff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 62vw;
}

.sb-time {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted, rgba(234,240,255,.70));
}

.sb-desc {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(234,240,255,.78);
  line-height: 1.35;
}

.sb-rightrow {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.sb-amt {
  font-weight: 950;
  font-size: 15px;
  color: var(--text, #eaf0ff);
}

/* status pills */
.pill {
  font-weight: 950;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.92);
  white-space: nowrap;
}

.pill--good { background: rgba(34,197,94,.14); border-color: rgba(34,197,94,.35); }
.pill--bad  { background: rgba(239,68,68,.14); border-color: rgba(239,68,68,.35); }
.pill--warn { background: rgba(245,158,11,.14); border-color: rgba(245,158,11,.35); }
.pill--neutral { background: rgba(91,140,255,.12); border-color: rgba(91,140,255,.30); }

.sb-empty {
  padding: 16px 12px;
  margin: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.18);
  text-align: center;
  color: var(--muted, rgba(234,240,255,.70));
  background: rgba(255,255,255,.02);
}

/* phone stacking */
@media (max-width: 520px) {
  .sb-item { flex-direction: column; }
  .sb-rightrow { flex-direction: row; justify-content: space-between; align-items: center; }
  .sb-title { max-width: 78vw; }
}
/* ==========================================
   SkyveraBet — Info Pages (shared)
   Use for: about.php, terms.php, support.php, how-to-play.php, etc
   ========================================== */

/* Make sb-filter work for <a> and <button> */
.sb-filter{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  text-decoration:none;
}

/* Shared panel + sections for static pages */
.sb-panel{
  border:1px solid var(--border, rgba(255,255,255,.10));
  background: rgba(255,255,255,.03);
  border-radius: var(--radius, 16px);
  overflow:hidden;
}

.sb-panel__pad{
  padding: 14px;
}

.sb-heroCard{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 260px at 15% 0%, rgba(91,140,255,.22), transparent 60%),
    radial-gradient(900px 260px at 85% 0%, rgba(34,197,94,.14), transparent 60%),
    rgba(255,255,255,.04);
  padding: 14px;
}

.sb-heroCard h2{
  margin:0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing:.2px;
}

.sb-heroCard p{
  margin:10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(234,242,255,.78);
  max-width: 860px;
}

.sb-badges{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.sb-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  font-size: 12px;
  font-weight: 950;
  color: rgba(234,242,255,.92);
}

.sb-badge--good{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.10);
}

.sb-section{
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 14px;
}

.sb-section h3{
  margin:0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing:.2px;
}

.sb-section p{
  margin:10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(234,242,255,.80);
}

.sb-cards{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 760px){
  .sb-cards{ grid-template-columns: 1fr 1fr; }
}

.sb-card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px;
}

.sb-card .k{
  font-size: 12px;
  font-weight: 950;
  color: rgba(234,242,255,.72);
  letter-spacing:.2px;
}

.sb-card .v{
  margin-top:6px;
  font-size: 14px;
  font-weight: 900;
  color: rgba(234,242,255,.92);
  line-height:1.55;
}

.sb-note{
  margin-top: 12px;
  border:1px solid rgba(245,158,11,.28);
  background: rgba(245,158,11,.10);
  border-radius: 16px;
  padding: 12px;
  color: rgba(234,242,255,.90);
  font-size: 13px;
  line-height: 1.65;
}

.sb-footnote{
  margin-top: 14px;
  text-align:center;
  color: rgba(234,242,255,.60);
  font-size: 12px;
  padding: 10px 6px 0;
}
/* Info pages: list styling inside sections (shared) */
.sb-section ul{
  margin:10px 0 0;
  padding-left: 18px;
  color: rgba(234,242,255,.80);
}
.sb-section li{
  margin: 8px 0;
  line-height: 1.65;
  font-size: 14px;
}
/* ==========================================
   OVERRIDE: Premium number inside verify card
   Paste at END of /assets/css/main.css
   ========================================== */

/* Ensure verify card spacing feels premium */
.sb-verifyCard{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 12px;
}

/* Top row spacing */
.sb-verifyTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

/* User row: keep it clean and not jammed */
.sb-verifyUser{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
}

/* ✅ The premium “number” look (phone/user id/wallet value if wrapped) */
.sb-verifyCard .sb-verifyNumber{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(220px 90px at 15% 0%, rgba(91,140,255,.22), transparent 60%),
    radial-gradient(220px 90px at 85% 0%, rgba(34,197,94,.14), transparent 60%),
    rgba(255,255,255,.05);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  white-space: nowrap;

  font-size: 14px;
  font-weight: 950;
  letter-spacing: .8px;
  font-variant-numeric: tabular-nums;
}

/* Make the user text not overflow ugly */
.sb-verifyUser .sb-verifyNumber{
  max-width: 70vw;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Chevron style */
.sb-verifyChevron{
  opacity:.75;
  font-weight: 900;
}

/* Badge style */
.sb-verifyBadge{
  font-size: 11px;
  font-weight: 950;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  white-space: nowrap;
}

/* Unverified state */
.sb-verifyCard.sb-verify--unverified .sb-verifyNumber{
  border-color: rgba(245,158,11,.30);
  background:
    radial-gradient(220px 90px at 15% 0%, rgba(245,158,11,.24), transparent 60%),
    rgba(255,255,255,.04);
}

/* Verified state */
.sb-verifyCard.sb-verify--verified .sb-verifyNumber{
  border-color: rgba(34,197,94,.30);
  background:
    radial-gradient(220px 90px at 15% 0%, rgba(34,197,94,.20), transparent 60%),
    rgba(255,255,255,.04);
}

/* Info line spacing */
.sb-verifyLine{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(234,240,255,.78);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

/* Small info badge */
.sb-verifyInfo{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 950;
  opacity: .9;
}

/* Progress bar polish */
.sb-verifyBar{
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.sb-verifyBarFill{
  display:block;
  height: 100%;
  border-radius: 999px;
  background: rgba(91,140,255,.85);
}

/* Next text */
.sb-verifyNext{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(234,240,255,.70);
}
/* ==========================================
   FORCE premium phone/ID in verification card
   Works even if you didn't wrap with .sb-verifyNumber
   ========================================== */

/* Make the user line itself look like a premium chip */
.sb-verifyCard .sb-verifyUser{
  display:inline-flex;
  align-items:center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(220px 90px at 15% 0%, rgba(91,140,255,.22), transparent 60%),
    radial-gradient(220px 90px at 85% 0%, rgba(34,197,94,.12), transparent 60%),
    rgba(255,255,255,.05);

  box-shadow: 0 14px 30px rgba(0,0,0,.30);

  font-weight: 950;
  font-size: 16px;
  letter-spacing: .12em;            /* ✅ makes digits look premium */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;

  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;

  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* Keep chevron clean (no digit spacing applied) */
.sb-verifyCard .sb-verifyChevron{
  letter-spacing: 0 !important;
  opacity: .7;
  font-weight: 900;
  flex: 0 0 auto;
}

/* If you DO have .sb-verifyNumber, let it inherit the chip look (no double padding) */
.sb-verifyCard .sb-verifyNumber{
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: inherit;
}

/* Unverified color mood */
.sb-verifyCard.sb-verify--unverified .sb-verifyUser{
  border-color: rgba(245,158,11,.32);
  background:
    radial-gradient(220px 90px at 15% 0%, rgba(245,158,11,.22), transparent 60%),
    rgba(255,255,255,.04);
}

/* Verified color mood */
.sb-verifyCard.sb-verify--verified .sb-verifyUser{
  border-color: rgba(34,197,94,.32);
  background:
    radial-gradient(220px 90px at 15% 0%, rgba(34,197,94,.18), transparent 60%),
    rgba(255,255,255,.04);
}
/* ===========================
   Deposit page (screenshot layout) - SkyveraBet
   Paste at END of /assets/css/main.css
   =========================== */

.sb-depositPage{
  padding: 14px 12px 110px;
  max-width: 780px;
  margin: 0 auto;
}

/* top balance bar */
.sb-depTopBar{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}
.sb-depTopLabel{
  font-size: 12px;
  font-weight: 900;
  color: rgba(234,240,255,.70);
}
.sb-depTopValue{
  margin-top: 4px;
  font-size: 18px;
  font-weight: 1000;
  color: rgba(234,240,255,.95);
}

/* tabs */
.sb-depTabs{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  padding: 10px 8px 6px;
}

.sb-depTab{
  position:relative;
  font-weight: 950;
  font-size: 14px;
  color: rgba(234,240,255,.65);
  padding: 6px 4px 10px;
}

.sb-depTab.is-active{
  color: rgba(234,240,255,.96);
}

.sb-depTab.is-active::after{
  content:"";
  position:absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
}

/* card */
.sb-depCard{
  margin-top: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 18px;
  padding: 18px 14px;
}

/* row layout */
.sb-depRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 4px;
}

.sb-depLabel{
  flex: 0 0 140px;
  font-size: 15px;
  font-weight: 950;
  color: rgba(234,240,255,.92);
}

/* pill */
.sb-depPill{
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 14px;
  gap: 10px;
}

/* premium masked number */
.sb-depMasked{
  font-weight: 1000;
  letter-spacing: .8px;
  font-variant-numeric: tabular-nums;
  color: rgba(234,240,255,.92);
}

/* operator */
.sb-depOpLeft{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  flex: 1 1 auto;
}
.sb-depOpDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(91,140,255,.12);
  flex: 0 0 auto;
}
.sb-depSelect{
  appearance:none;
  -webkit-appearance:none;
  border:none;
  outline:none;
  background: transparent;
  color: rgba(234,240,255,.92);
  font-weight: 950;
  font-size: 14px;
  width: 100%;
  min-width: 0;
}
.sb-depChevron{
  width: 18px;
  height: 18px;
  opacity: .75;
  flex: 0 0 auto;
  color: rgba(234,240,255,.85);
}

/* amount */
.sb-depPrefix{
  font-weight: 950;
  font-size: 13px;
  color: rgba(234,240,255,.92);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  flex: 0 0 auto;
}

.sb-depAmount{
  border:none;
  outline:none;
  background: transparent;
  color: rgba(234,240,255,.92);
  font-weight: 950;
  font-size: 14px;
  width: 100%;
  min-width: 0;
}
.sb-depMinHint{
  font-size: 12px;
  font-weight: 850;
  color: rgba(234,240,255,.60);
  flex: 0 0 auto;
}

/* button */
.sb-depBtn{
  margin-top: 12px;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 1000;
  font-size: 15px;
  cursor: pointer;
}
.sb-depBtn:active{ transform: scale(.99); }

/* rules */
.sb-depRules{
  margin-top: 14px;
  color: rgba(234,240,255,.60);
  font-size: 12.5px;
  line-height: 1.6;
  padding-left: 18px;
}
.sb-depRules li{ margin: 6px 0; }

/* mobile */
@media (max-width: 520px){
  .sb-depRow{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 2px;
  }
  .sb-depLabel{
    flex: 0 0 auto;
    font-size: 13px;
    color: rgba(234,240,255,.80);
  }
}
/* ===========================
   Premium "Top Up Now" button
   Target: .sb-depBtn
   Paste at END of /assets/css/main.css
   =========================== */

.sb-depBtn{
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  cursor: pointer;

  /* premium fill using your theme brand color */
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(255,255,255,.22), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 40%),
    linear-gradient(90deg, var(--brand), rgba(91,140,255,.72));

  color: rgba(255,255,255,.98);
  font-weight: 1000;
  font-size: 15px;
  letter-spacing: .2px;

  box-shadow:
    0 16px 34px rgba(0,0,0,.35),
    0 10px 26px rgba(91,140,255,.26);

  transition:
    transform .15s ease,
    filter .15s ease,
    box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

/* shiny sweep highlight */
.sb-depBtn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.24) 22%, transparent 45%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events:none;
}

.sb-depBtn:hover{
  filter: brightness(1.06);
  box-shadow:
    0 18px 38px rgba(0,0,0,.40),
    0 14px 30px rgba(91,140,255,.34);
}

.sb-depBtn:hover::before{
  transform: translateX(120%);
}

.sb-depBtn:active{
  transform: translateY(1px) scale(.99);
  filter: brightness(1.02);
  box-shadow:
    0 12px 28px rgba(0,0,0,.32),
    0 10px 22px rgba(91,140,255,.22);
}

/* disabled state */
.sb-depBtn:disabled{
  opacity: .65;
  cursor: not-allowed;
  filter: grayscale(.2);
  box-shadow: none;
}

/* optional: slightly bigger on very small screens */
@media (max-width: 380px){
  .sb-depBtn{ height: 54px; font-size: 15.5px; }
}
/* ===========================
   Premium Switch Tabs
   Online Deposit / Paybill
   Target: .sb-paySwitch .sb-payTab
   Paste at END of /assets/css/main.css
   =========================== */

.sb-paySwitch{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);

  /* premium glass background */
  background:
    radial-gradient(120% 180% at 20% 0%, rgba(255,255,255,.12), transparent 55%),
    rgba(255,255,255,.06);

  box-shadow:
    0 12px 26px rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sb-payTab{
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(234,240,255,.85);

  font-weight: 950;
  font-size: 13px;
  letter-spacing: .2px;

  cursor: pointer;
  transition:
    transform .14s ease,
    filter .14s ease,
    background .14s ease,
    border-color .14s ease,
    box-shadow .14s ease;
  -webkit-tap-highlight-color: transparent;

  position: relative;
  overflow: hidden;
}

/* subtle shine */
.sb-payTab::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 20%, transparent 45%);
  transform: translateX(-120%);
  transition: transform .5s ease;
  pointer-events:none;
}

.sb-payTab:hover{
  filter: brightness(1.05);
}
.sb-payTab:hover::before{
  transform: translateX(120%);
}

.sb-payTab:active{
  transform: scale(.99);
}

/* ACTIVE tab = premium filled */
.sb-payTab.is-active{
  border-color: rgba(91,140,255,.42);
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(255,255,255,.22), transparent 55%),
    linear-gradient(90deg, var(--brand), rgba(91,140,255,.72));
  color: rgba(255,255,255,.98);

  box-shadow:
    0 14px 30px rgba(0,0,0,.28),
    0 10px 22px rgba(91,140,255,.22);
}

/* better spacing on tiny screens */
@media (max-width: 380px){
  .sb-payTab{ height: 46px; font-size: 13.5px; }
}
/* ==========================================
   PREMIUM SWITCH TABS (Online Deposit / Paybill)
   Targets your exact HTML:
   .sb-depTabs + .sb-depTab + .sb-depTab.is-active
   Paste at END of /assets/css/main.css
   ========================================== */

.sb-depTabs{
  width: 100%;
  max-width: 560px;
  margin: 12px auto 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;

  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);

  background:
    radial-gradient(120% 180% at 20% 0%, rgba(255,255,255,.12), transparent 55%),
    rgba(255,255,255,.06);

  box-shadow:
    0 12px 28px rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sb-depTab{
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);

  background: rgba(255,255,255,.05);
  color: rgba(234,240,255,.86);

  font-weight: 950;
  font-size: 13px;
  letter-spacing: .2px;

  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;

  transition:
    transform .14s ease,
    filter .14s ease,
    background .14s ease,
    border-color .14s ease,
    box-shadow .14s ease;
}

/* premium shine */
.sb-depTab::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 20%, transparent 45%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events:none;
}

.sb-depTab:hover{
  filter: brightness(1.05);
}

.sb-depTab:hover::before{
  transform: translateX(120%);
}

.sb-depTab:active{
  transform: scale(.99);
}

/* ACTIVE = premium filled using your brand color */
.sb-depTab.is-active{
  border-color: rgba(91,140,255,.45);
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(255,255,255,.22), transparent 55%),
    linear-gradient(90deg, var(--brand, #5b8cff), rgba(91,140,255,.72));
  color: rgba(255,255,255,.98);

  box-shadow:
    0 14px 32px rgba(0,0,0,.28),
    0 12px 24px rgba(91,140,255,.22);
}

/* better feel on very small phones */
@media (max-width: 380px){
  .sb-depTab{
    height: 48px;
    font-size: 13.5px;
  }
}
/* ✅ Make the Online/Paybill tab "cards" smaller + fit better on phone */
.sb-depTabs{
  gap: 8px;                 /* less space between the two */
  padding: 6px;             /* smaller outer padding */
  border-radius: 14px;      /* less round */
}

/* the actual tab buttons (the cards) */
.sb-depTab{
  min-height: 30px;         /* reduce height (was likely ~48+) */
  padding: 8px 10px;        /* reduce inner padding */
  border-radius: 12px;      /* tighter corners */
  font-size: 13px;          /* optional: makes the button feel lighter */
  line-height: 1.1;
}

/* even tighter on very small phones */
@media (max-width: 380px){
  .sb-depTabs{
    gap: 6px;
    padding: 5px;
    border-radius: 12px;
  }
  .sb-depTab{
    min-height: 30px;
    padding: 7px 8px;
    border-radius: 11px;
    font-size: 12.5px;
  }
}
/* =========================================
   SKYVERABET - WAITING MODAL (Deposit)
   Put this at the BOTTOM of main.css
========================================= */

.sb-waitModal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}

.sb-waitModal.is-open{
  display:block;
}

.sb-waitBackdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
}

/* Card */
.sb-waitCard{
  position:relative;
  width: min(520px, calc(100% - 24px));
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 18px;
  background: rgba(12, 18, 34, .96);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  overflow:hidden;
}

/* inner padding */
.sb-waitBody{
  padding: 22px 18px 18px;
  color: rgba(234,240,255,.95);
  text-align:center;
}

/* Close button (×) */
.sb-waitClose{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.92);
  font-size: 20px;
  font-weight: 1000;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: .15s ease;
}
.sb-waitClose:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}
.sb-waitClose:active{
  transform: translateY(0);
}

/* Main message */
.sb-waitText{
  font-weight: 950;
  font-size: 15px;
  line-height: 1.55;
  margin: 6px auto 14px;
  max-width: 380px;
  color: rgba(234,240,255,.96);
}

/* Spinner */
.sb-waitSpinner{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin: 10px auto 10px;
  border: 4px solid rgba(255,255,255,.14);
  border-top-color: var(--brand, #5b8cff);
  animation: sbSpin .9s linear infinite;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
@keyframes sbSpin{
  to { transform: rotate(360deg); }
}

/* Status line */
.sb-waitStatus{
  font-size: 13px;
  font-weight: 850;
  color: rgba(169,182,214,.95);
  margin: 6px 0 16px;
}

/* Premium main button */
.sb-waitBtn{
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 1000;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--brand, #5b8cff), rgba(91,140,255,.75));
  box-shadow: 0 16px 34px rgba(91,140,255,.22);
  transition: .15s ease;
}
.sb-waitBtn:hover{ transform: translateY(-1px); }
.sb-waitBtn:active{ transform: translateY(0); }

.sb-waitBtn:disabled{
  opacity: .65;
  cursor:not-allowed;
  filter:saturate(.9);
}

/* Premium link button */
.sb-waitLink{
  margin-top: 12px;
  width:100%;
  border:none;
  background: transparent;
  color: rgba(234,240,255,.92);
  font-weight: 950;
  font-size: 13px;
  cursor:pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: .9;
}
.sb-waitLink:hover{ opacity: 1; }

/* Help box */
.sb-waitHelp{
  margin-top: 14px;
  text-align:left;
  border-radius: 14px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(234,240,255,.90);
}

.sb-waitHelpList{
  margin: 0;
  padding-left: 18px;
  color: rgba(169,182,214,.95);
  line-height: 1.6;
  font-size: 13px;
  font-weight: 750;
}
.sb-waitHelpList strong{ color: rgba(234,240,255,.95); }

/* Mobile tweaks */
@media (max-width:420px){
  .sb-waitBody{ padding: 20px 14px 14px; }
  .sb-waitCard{ border-radius: 16px; }
}
/* Shift the Online Deposit / Paybill tabs card to the left on mobile */
@media (max-width: 480px){
  .sb-depTabs{
    margin-left: -16px;                 /* move left */
    width: calc(100% + 16px);           /* keep it full width */
  }
}
/* =========================================================
   FIX: Waiting modal must be a real centered overlay
   (Does NOT change your colors — only layout/positioning)
========================================================= */

/* Overlay */
.wdx-waitOverlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  background: rgba(0,0,0,.55) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* When opened */
.wdx-waitOverlay.show{
  display: flex !important;
}

/* Card stays centered */
.wdx-waitCard{
  width: 100%;
  max-width: 460px;
  position: relative !important;
  margin: 0 !important;
}

/* Close button must sit top-right of the card */
.wdx-waitClose{
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 2 !important;
  line-height: 1 !important;
}

/* Make sure spinner/contents stay in the card, not wrapping outside */
.wdx-waitMsg,
.wdx-waitSmall,
.wdx-waitBtn,
.wdx-waitLink{
  display: block;
  width: 100%;
}

/* Mobile: keep card inside viewport */
@media (max-width: 420px){
  .wdx-waitOverlay{ padding: 12px !important; }
  .wdx-waitCard{ max-width: 420px; }
}
/* Help overlay (also must be fixed and above everything) */
.sb-helpOverlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  background: rgba(0,0,0,.55) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sb-helpOverlay.show{
  display: flex !important;
}
.sb-helpCard{
  width: 100%;
  max-width: 460px;
  position: relative !important;
}
.sb-helpClose{
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
}
/* =========================================================
   PRO MODAL: Locked / Waiting popup (better card + lock icon)
   (Does not change your site colors — only modal styling)
========================================================= */

.wdx-waitOverlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  background: rgba(2, 6, 23, .62) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wdx-waitOverlay.show{ display:flex !important; }

.wdx-waitCard{
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(15, 23, 42, .10);
  padding: 18px 18px 16px;
  position: relative;
}

.wdx-waitClose{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .04);
  color: rgba(15, 23, 42, .7);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.wdx-waitClose:hover{ background: rgba(15, 23, 42, .08); color: rgba(15, 23, 42, .95); }

.wdx-waitHeader{
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 42px; /* keeps space away from close btn */
}

.wdx-waitIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(91, 140, 255, .12);
  color: rgba(91, 140, 255, 1);
}

.wdx-waitTitleWrap{ display:flex; flex-direction:column; gap:2px; }

.wdx-waitTitle{
  font-weight: 1000;
  font-size: 16px;
  letter-spacing: .2px;
}

.wdx-waitSub{
  font-size: 12px;
  color: rgba(15, 23, 42, .65);
  font-weight: 800;
}

.wdx-waitMsg{
  margin: 14px 2px 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 23, 42, .88);
}

.wdx-waitBtn{
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 950;
  cursor: pointer;
  background: rgba(91,140,255,.18);
  color: #1e3a8a;
  transition: .15s ease;
}
.wdx-waitBtn:hover{ transform: translateY(-1px); }
.wdx-waitBtn:active{ transform: translateY(0); }

.wdx-waitBtn:disabled{
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.wdx-waitBtn.ready{
  background: linear-gradient(90deg, rgba(91,140,255,1), rgba(91,140,255,.75));
  color: #fff;
}

.wdx-waitLink{
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}
.wdx-waitLink:hover{ text-decoration: underline; }

@media (max-width: 420px){
  .wdx-waitOverlay{ padding: 12px !important; }
  .wdx-waitCard{ border-radius: 16px; }
}
