/* Ballr custom interactive layer */
:root {
  --bb-card: #181c22;
  --bb-card-2: #20252d;
  --bb-muted: #9aa4b2;
  --bb-line: rgba(255,255,255,.09);
  --bb-green: #20d66b;
  --bb-green-dark: #0b7d3b;
  --bb-yellow: #ffd84d;
  --bb-danger: #ff5d5d;
}

._main_182i6_113 {
  scroll-behavior: smooth;
}

@media (min-width: 48rem) {
  ._navigation_182i6_85 {
    width: 15rem !important;
    min-width: 15rem !important;
    border-right: 1px solid var(--color-border-leftnav, var(--color-border-primary));
    overflow: auto !important;
  }

  ._betslip_182i6_130 {
    width: 18.5rem !important;
  }
}

@media (max-width: 47.999rem) {
  ._betslip_182i6_130 {
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .22s ease, opacity .22s ease;
    width: 100% !important;
    z-index: 110;
  }

  body.bb-betslip-open ._betslip_182i6_130 {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
}

.bb-app {
  width: min(100% - 1.5rem, 64rem);
  margin: 1rem auto 1.25rem;
  color: var(--color-text-primary, #fff);
}

.bb-app * {
  box-sizing: border-box;
}

.bb-home-markets-slot {
  width: 100%;
  align-items: stretch;
  padding-left: .75rem;
  padding-right: .75rem;
}

.bb-home-markets-slot .bb-app {
  width: min(100%, 70rem);
  margin-top: .35rem;
  margin-bottom: 1rem;
}

.bb-home-markets-slot .bb-page-head {
  margin-top: .25rem;
}

.bb-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
}

.bb-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--bb-green);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bb-page-title {
  margin: .25rem 0 0;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.08;
  font-weight: 900;
}

.bb-page-copy {
  max-width: 42rem;
  color: var(--bb-muted);
  font-size: .92rem;
  line-height: 1.5;
}

.bb-live-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(32,214,107,.35);
  background: rgba(32,214,107,.1);
  border-radius: 999px;
  padding: .45rem .7rem;
  color: var(--bb-green);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.bb-live-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--bb-green);
  box-shadow: 0 0 0 .25rem rgba(32,214,107,.16);
}

.bb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.bb-grid.bb-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bb-card {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)), var(--bb-card);
  border: 1px solid var(--bb-line);
  border-radius: 1rem;
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
  overflow: hidden;
}

.bb-card-pad {
  padding: 1rem;
}

.bb-market-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bb-event-top {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  padding: .9rem 1rem .7rem;
  border-bottom: 1px solid var(--bb-line);
}

.bb-event-meta {
  color: var(--bb-muted);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bb-event-time {
  color: var(--bb-yellow);
  font-size: .76rem;
  font-weight: 800;
  white-space: nowrap;
}

.bb-event-name {
  padding: .85rem 1rem .75rem;
  min-height: 5.2rem;
}

.bb-event-name strong {
  display: block;
  margin-top: .25rem;
  font-size: 1.04rem;
  line-height: 1.28;
}

.bb-event-name span {
  display: block;
  margin-top: .35rem;
  color: var(--bb-muted);
  font-size: .78rem;
}

.bb-odds-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
  padding: 0 1rem 1rem;
  margin-top: auto;
}

.bb-odds-row.bb-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bb-odd-btn {
  border: 1px solid rgba(255,255,255,.12);
  background: var(--bb-card-2);
  color: #fff;
  border-radius: .72rem;
  padding: .65rem .45rem;
  cursor: pointer;
  min-height: 4rem;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.bb-odd-btn:hover,
.bb-odd-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(32,214,107,.55);
  outline: none;
}

.bb-odd-btn.is-selected {
  background: linear-gradient(180deg, rgba(32,214,107,.25), rgba(32,214,107,.12));
  border-color: var(--bb-green);
  box-shadow: inset 0 0 0 1px rgba(32,214,107,.35);
}

.bb-odd-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--bb-muted);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bb-odd-price {
  display: block;
  margin-top: .25rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.bb-route-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 .9rem;
}

.bb-route-tab {
  border: 1px solid var(--bb-line);
  border-radius: 999px;
  background: var(--bb-card);
  color: #fff;
  padding: .55rem .8rem;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}

.bb-route-tab.is-active {
  color: #07120b;
  background: var(--bb-green);
  border-color: var(--bb-green);
}

.bb-info-list {
  display: grid;
  gap: .65rem;
  margin-top: .85rem;
}

.bb-info-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  border-radius: .8rem;
  background: rgba(255,255,255,.035);
  padding: .75rem .85rem;
  color: #fff;
}

.bb-info-row span {
  color: var(--bb-muted);
  font-size: .85rem;
}

.bb-promo {
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bb-promo-badge {
  align-self: flex-start;
  background: rgba(255,216,77,.12);
  border: 1px solid rgba(255,216,77,.35);
  color: var(--bb-yellow);
  border-radius: 999px;
  padding: .35rem .55rem;
  font-size: .72rem;
  font-weight: 900;
}

.bb-promo h3,
.bb-account-card h3 {
  margin: .85rem 0 .4rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.bb-promo p,
.bb-account-card p {
  color: var(--bb-muted);
  font-size: .9rem;
  line-height: 1.45;
}

.bb-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: .75rem;
  background: var(--bb-green);
  color: #06120a;
  padding: .75rem .9rem;
  font-weight: 900;
  cursor: pointer;
}

.bb-action-btn.secondary {
  background: var(--bb-card-2);
  color: #fff;
  border: 1px solid var(--bb-line);
}

.bb-original-hidden {
  display: none !important;
}

/* Bet slip */
.bb-betslip-main {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: .75rem;
  gap: .75rem;
}

.bb-betslip-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .35rem;
  color: var(--color-text-primary, #fff);
}

.bb-betslip-empty-icon {
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
  background: rgba(32,214,107,.12);
  border: 1px solid rgba(32,214,107,.28);
  font-size: 1.8rem;
}

.bb-betslip-empty p {
  color: var(--bb-muted);
  font-size: .84rem;
}

.bb-slip-items {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  overflow: auto;
  padding-right: .15rem;
}

.bb-slip-item {
  background: var(--bb-card);
  border: 1px solid var(--bb-line);
  border-radius: .9rem;
  padding: .75rem;
}

.bb-slip-line {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
}

.bb-slip-title {
  font-size: .85rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
}

.bb-slip-sub {
  margin-top: .25rem;
  color: var(--bb-muted);
  font-size: .75rem;
  line-height: 1.3;
}

.bb-slip-price {
  color: var(--bb-green);
  font-size: 1rem;
  font-weight: 900;
}

.bb-slip-remove {
  border: 0;
  background: transparent;
  color: var(--bb-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.bb-slip-stake {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  align-items: center;
  margin-top: .65rem;
}

.bb-slip-stake label {
  color: var(--bb-muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bb-slip-stake input {
  width: 6.5rem;
  border: 1px solid var(--bb-line);
  border-radius: .6rem;
  background: #101319;
  color: #fff;
  padding: .5rem .55rem;
  font-weight: 800;
}

.bb-slip-summary {
  margin-top: auto;
  border-top: 1px solid var(--bb-line);
  padding-top: .75rem;
  display: grid;
  gap: .5rem;
}

.bb-slip-summary-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  color: var(--bb-muted);
  font-size: .82rem;
}

.bb-slip-summary-row strong {
  color: #fff;
}

.bb-place-bet {
  width: 100%;
  border: 0;
  border-radius: .8rem;
  background: var(--bb-green);
  color: #06120a;
  padding: .82rem .95rem;
  font-weight: 950;
  cursor: pointer;
}

.bb-place-bet:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.bb-clear-slip {
  width: 100%;
  border: 1px solid var(--bb-line);
  border-radius: .8rem;
  background: transparent;
  color: #fff;
  padding: .7rem .9rem;
  font-weight: 850;
  cursor: pointer;
}

.bb-slip-message {
  border-radius: .75rem;
  border: 1px solid rgba(32,214,107,.32);
  background: rgba(32,214,107,.1);
  color: var(--bb-green);
  padding: .65rem .75rem;
  font-size: .78rem;
  font-weight: 800;
}

.bb-nav-active,
.bb-nav-active:hover {
  color: var(--bb-green) !important; 
}

.bb-betslip-trigger {
  pointer-events: auto !important;
  cursor: pointer !important;
}

@media (max-width: 62rem) {
  .bb-grid,
  .bb-grid.bb-grid-3 {
    grid-template-columns: 1fr;
  }

  .bb-page-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 34rem) {
  .bb-app {
    width: min(100% - 1rem, 64rem);
    margin-top: .75rem;
  }

  .bb-odds-row,
  .bb-odds-row.bb-two {
    grid-template-columns: 1fr;
  }
}


/* Auth and registration modals */
body.bb-modal-open {
  overflow: hidden;
}

.bb-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.bb-auth-modal.is-open {
  display: flex;
}

.bb-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}

.bb-auth-dialog {
  position: relative;
  width: min(100%, 31rem);
  max-height: min(92vh, 48rem);
  overflow: auto;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.02)), #14181f;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.25rem;
  box-shadow: 0 2rem 5rem rgba(0,0,0,.55);
  color: #fff;
  padding: 1.35rem;
}

.bb-auth-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.bb-auth-icon,
.bb-auth-success-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(32,214,107,.14);
  border: 1px solid rgba(32,214,107,.35);
  color: var(--bb-green);
  font-size: 1.35rem;
  font-weight: 950;
}

.bb-auth-dialog h2 {
  margin: .85rem 2.25rem .25rem 0;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.1;
}

.bb-auth-copy {
  margin: 0 0 1rem;
  color: var(--bb-muted);
  font-size: .92rem;
  line-height: 1.45;
}

.bb-auth-form {
  display: grid;
  gap: .75rem;
}

.bb-auth-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.bb-auth-form label {
  display: grid;
  gap: .35rem;
  color: var(--bb-muted);
  font-size: .78rem;
  font-weight: 850;
}

.bb-auth-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem;
  background: #0f1319;
  color: #fff;
  padding: .75rem .8rem;
  font-size: .95rem;
  outline: none;
}

.bb-auth-form input:focus {
  border-color: rgba(32,214,107,.65);
  box-shadow: 0 0 0 .18rem rgba(32,214,107,.12);
}

.bb-auth-check {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: .55rem !important;
  line-height: 1.35;
}

.bb-auth-check input {
  width: 1rem;
  height: 1rem;
  margin-top: .1rem;
  accent-color: var(--bb-green);
}

.bb-auth-submit,
.bb-auth-switch {
  width: 100%;
  border-radius: .8rem;
  padding: .85rem .95rem;
  font-weight: 950;
  cursor: pointer;
}

.bb-auth-submit {
  border: 0;
  background: var(--bb-green);
  color: #06120a;
}

.bb-auth-switch {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: #fff;
}

.bb-auth-success {
  display: grid;
  justify-items: start;
  gap: .8rem;
  border-radius: 1rem;
  background: rgba(32,214,107,.08);
  border: 1px solid rgba(32,214,107,.24);
  padding: 1rem;
}

.bb-auth-success strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.bb-auth-success p {
  margin: 0;
  color: var(--bb-muted);
  font-size: .9rem;
}

@media (max-width: 34rem) {
  .bb-auth-dialog {
    padding: 1rem;
    border-radius: 1rem;
  }

  .bb-auth-two {
    grid-template-columns: 1fr;
  }
}

/* Mobile layout and scroll fixes */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body._container_182i6_1 {
  max-width: 90rem;
}

img,
video,
canvas,
iframe {
  max-width: 100%;
}

@media (max-width: 47.999rem) {
  html {
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
  }

  body._container_182i6_1 {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-width: 100vw;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    overflow: hidden !important;
  }

  ._header_182i6_44,
  ._main_182i6_113,
  ._navigation_182i6_85,
  ._betslip_182i6_130 {
    min-width: 0;
  }

  ._main_182i6_113 {
    min-height: 0 !important;
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: calc(8rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  ._main_182i6_113 > *,
  ._main_182i6_113 section,
  ._main_182i6_113 article,
  ._main_182i6_113 div {
    min-width: 0;
  }

  ._navigation_182i6_85 {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  ._navigation_182i6_85 a,
  ._navigation_182i6_85 button {
    touch-action: manipulation;
  }

  .bb-app,
  .bb-home-markets-slot .bb-app {
    width: min(100% - 1rem, 64rem);
    margin-left: auto;
    margin-right: auto;
  }

  .bb-route-tabs,
  .bb-odds-row,
  .bb-slip-items,
  .bb-grid {
    max-width: 100%;
  }

  .bb-route-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .bb-route-tabs::-webkit-scrollbar {
    display: none;
  }

  .bb-route-tab {
    flex: 0 0 auto;
  }

  .bb-card,
  .bb-market-card,
  .bb-account-card,
  .bb-promo,
  .bb-event-name,
  .bb-slip-item {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .bb-event-name strong,
  .bb-event-name span,
  .bb-slip-title,
  .bb-slip-sub {
    overflow-wrap: anywhere;
  }

  .bb-odds-row,
  .bb-odds-row.bb-two {
    grid-template-columns: 1fr;
  }

  ._betslip_182i6_130 {
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden !important;
  }

  ._betslip_182i6_130 > div {
    height: 100%;
    min-height: 0;
  }

  ._betslip_182i6_130 .bg-bg-betslip-main,
  .bb-betslip-main {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  body.bb-betslip-open {
    overflow: hidden !important;
  }

  body.bb-betslip-open ._main_182i6_113 {
    overflow: hidden !important;
  }

  .bb-auth-modal,
  .age-gate,
  .cookie-settings {
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-top: max(.75rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(.75rem, env(safe-area-inset-bottom, 0px));
  }

  .bb-auth-dialog,
  .age-card,
  .settings-card {
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cookie-banner {
    left: .75rem;
    right: .75rem;
    bottom: calc(.75rem + env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cookie-content {
    gap: .9rem;
  }

  .cookie-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-actions button,
  .age-actions button,
  .settings-actions button,
  .bb-auth-submit,
  .bb-action-btn,
  .bb-place-bet,
  .bb-clear-slip,
  .bb-odd-btn {
    min-height: 44px;
  }
}
