/* =========================================================
   BC Game-style screenshot replica
   Front-end layout only
   ========================================================= */

:root {
  --header-height: 65px;
  --sidebar-width: 235px;

  --page-bg: #232626;
  --header-bg: #292D2E;
  --sidebar-bg: #292D2E;
  --surface: #323738;
  --surface-hover: #394041;
  --surface-dark: #242828;

  --text: #ffffff;
  --muted: #a9b0b1;
  --green: #24ee89;
  --green-soft: #41d99a;
  --border: #3b4243;

  --radius-sm: 10px;
  --radius-md: 13px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd-Extrathin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

html {
  min-width: 320px;
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page-bg);
  font-family: "AvertaStd", Arial, sans-serif;;
  font-size: 15px;
}

button,
a {
  font: inherit;
}

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

button {
  border: 0;
}

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

/* =========================
   Header
   ========================= */

.top-header {
  position: fixed;
  z-index: 1100;
  inset: 0 0 auto 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: var(--header-bg);
  border-top: 1px solid #394041;
}

.header-left,
.header-actions {
  display: flex;
  align-items: center;
}

.header-left {
  gap: 19px;
}

.header-actions {
  gap: 8px;
}

.icon-button,
.auth-button,
.currency-button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--text);
  background: #343a3b;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.icon-button:hover,
.auth-button:hover,
.currency-button:hover {
  transform: translateY(-1px);
}

.icon-button {
  width: 53px;
  display: inline-grid;
  place-items: center;
  font-size: 25px;
}

.sidebar-trigger {
  position: relative;
  width: 53px;
  color: #bcc4c5;
}

.sidebar-trigger .bi-list {
  transform: scaleX(0.82);
}

.menu-accent {
  position: absolute;
  width: 7px;
  height: 4px;
  left: 36px;
  top: 25px;
  border-radius: 2px;
  background: var(--green);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-symbol {
  position: relative;
  width: 39px;
  height: 44px;
  border: 8px solid var(--green);
  border-radius: 9px 18px 18px 18px;
  transform: rotate(-1deg);
}

.brand-symbol::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 8px;
  top: -15px;
  left: -3px;
  border-radius: 2px;
  background: var(--green);
  transform: rotate(34deg);
}

.brand-symbol-inner {
  position: absolute;
  inset: 6px;
  border: 5px solid var(--header-bg);
  border-radius: 50%;
}

.brand-name {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -1.6px;
}

.abfa-spaced-search-toggle {
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.abfa-spaced-search-toggle:hover {
  background: #475051 !important;
  transform: translateY(-1px);
}

.abfa-spaced-search-toggle:active {
  transform: scale(0.95);
}

.abfa-spaced-search-toggle:focus-visible {
  outline: 2px solid #26e79b;
  outline-offset: 3px;
}

.auth-button {
  width: auto;
  min-width: auto;
  min-height: 40px;
  height: 40px;
  padding: 12px 20px;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.sign-in-button {
  min-width: 76px;
  border: 2px solid;
  background: transparent;
  border-color: #414849;
}

.sign-up-button {
  min-width: 78px;
  border: none;
  color: #07120d;
  background: var(--green);
}

.abfa-corner-toggle-r84 {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 6px;
  border: 0;
  border-radius: 8px;
  background: #3b4445;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.abfa-corner-toggle-r84:hover {
  background: #465051;
  transform: translateY(-1px);
}

.abfa-corner-toggle-r84:active {
  transform: scale(0.95);
}

.abfa-corner-toggle-r84:focus-visible {
  outline: 2px solid #25e59a;
  outline-offset: 3px;
}

.abfa-corner-icon-r84 {
  width: 27px;
  height: 27px;
  display: block;
}

.currency-button {
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 700;
}

.currency-button .bi-globe2 {
  font-size: 24px;
}

.currency-divider {
  width: 1px;
  height: 30px;
  background: #505657;
}

.currency-button {
  width: auto;
  min-width: auto;
  height: 40px;
  min-height: 40px;
  padding: 0 12px 0 8px;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  background: #3b4445;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.currency-button:hover {
  background: #465051;
  transform: translateY(-1px);
}

.currency-button:active {
  transform: scale(0.97);
}

.currency-button:focus-visible {
  outline: 2px solid #25e59a;
  outline-offset: 3px;
}

.abfa-wide-globe-toggle-x84 {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abfa-wide-globe-icon-x84 {
  width: 25px;
  height: 25px;
  display: block;
}

.currency-divider {
  width: 1px;
  height: 24px;
  background: #596162;
}

.currency-code {
  font-family: "AvertaStd", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

/* =========================
   Sidebar
   ========================= */

.sidebar {
  position: fixed;
  z-index: 1050;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  transition: transform 220ms ease;
}

.sidebar-scroll {
  height: 100%;
  padding: 13px 15px 34px;
  overflow-y: auto;
  scrollbar-width: none;
}

.sidebar-scroll::-webkit-scrollbar {
  display: none;
}

.application-card,
.token-card,
.sidebar-item {
  border-radius: var(--radius-md);
  background: var(--surface);
}

/* Compact application card */

.application-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px 0px 10px;
  margin-bottom: 9px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    100deg,
    #323839 0%,
    #344940 100%
  );
}

.application-card > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 5px;
}

.application-card strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.application-card span {
  margin-bottom: 3px;
  color: #B3BEC1;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 600;
  white-space: nowrap;
}

.application-card img {
  width: 55px;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
}

/* =========================
   Compact BC Token Card
   ========================= */

.token-card {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(
      105deg,
      #315144 0%,
      #31413c 36%,
      #313637 100%
    );
  box-sizing: border-box;
  text-decoration: none;
}

.token-card-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.token-card-title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.token-icon-placeholder {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
}

/* Temporary optional outline so you can see the icon space */
.token-icon-placeholder {
  border-radius: 5px;
  background: transparent;
}

.token-name {
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.token-price-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.token-price {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.token-growth {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #25e59a;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.token-growth svg {
  width: 10px;
  height: 12px;
  flex-shrink: 0;
}

.token-arrow-box {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #aeb7b8;
  background: #3d4546;
}

.token-arrow-box svg {
  width: 9px;
  height: 10px;
}

.token-card:hover {
  color: #ffffff;
  background:
    linear-gradient(
      105deg,
      #36594b 0%,
      #354741 36%,
      #373d3e 100%
    );
}

.token-card:hover .token-arrow-box {
  color: #ffffff;
  background: #465051;
}

.token-icon-wrapper {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.token-icon-image {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.sidebar-navigation {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-item {
  min-height: 53px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 11px;
  font-size: 17px;
  font-weight: 700;
  transition: background-color 160ms ease;
}

.sidebar-item:hover,
.sidebar-simple-item:hover {
  background: var(--surface-hover);
}

.sidebar-item-icon {
  width: 29px;
  display: inline-grid;
  place-items: center;
  color: var(--green-soft);
  font-size: 26px;
}

.cards-icon {
  transform: rotate(-15deg);
}

.sidebar-chevron {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  color: #aeb6b7;
  background: #404748;
}

.sidebar-simple-item {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  color: #f5f6f6;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 160ms ease;
}

.sidebar-simple-item > .bi:first-child {
  width: 24px;
  color: #b9c0c1;
  font-size: 22px;
}

.sidebar-simple-item.active {
  color: var(--green);
}

.sidebar-simple-item.active > .bi:first-child {
  color: #c9d0d1;
}

.sidebar-backdrop {
  position: fixed;
  z-index: 1040;
  inset: var(--header-height) 0 0 0;
  display: none;
  background: rgba(0, 0, 0, 0.58);
}

/* ==================================
   Expandable Casino Sidebar Menu
=================================== */

.abfa-casino-menu-z81,
.abfa-casino-menu-z81 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-casino-menu-z81 {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
  background: #323738;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* Casino main button */

.abfa-casino-toggle-z81 {
  width: 100%;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  appearance: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-casino-toggle-z81:hover,
.abfa-casino-toggle-z81:focus {
  color: #24ee89;
  background: #383e3f;
}

.abfa-casino-toggle-z81:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-casino-heading-z81 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.abfa-casino-title-z81 {
  color: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

/* Casino cards logo */

.abfa-casino-logo-z81 {
  width: 25px;
  height: 28px;
  display: block;
}

.abfa-casino-logo-back-z81 {
  fill: #24ee89;
}

.abfa-casino-logo-front-z81 {
  fill: #adb8ba;
  transition: fill 0.2s ease;
}

.abfa-casino-logo-mark-z81 {
  fill: #3a4142;
}

.abfa-casino-toggle-z81:hover
  .abfa-casino-logo-front-z81,
.abfa-casino-toggle-z81:focus
  .abfa-casino-logo-front-z81,
.abfa-casino-toggle-z81[aria-expanded="true"]
  .abfa-casino-logo-front-z81 {
  fill: #24ee89;
}

/* Arrow container */

.abfa-casino-arrow-box-z81 {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #3d4445;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb8ba;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-casino-toggle-arrow-z81 {
  width: 20px;
  height: 14px;
  display: block;
  transition: transform 0.3s ease;
}

/* Closed: arrow faces downward */

.abfa-casino-toggle-z81[aria-expanded="false"]
  .abfa-casino-toggle-arrow-z81 {
  transform: rotate(180deg);
}

/* Open: arrow faces upward */

.abfa-casino-toggle-z81[aria-expanded="true"]
  .abfa-casino-toggle-arrow-z81 {
  transform: rotate(0deg);
}

.abfa-casino-toggle-z81[aria-expanded="true"] {
  color: #24ee89;
  border-radius: 11px 11px 0 0;
}

.abfa-casino-toggle-z81:hover
  .abfa-casino-arrow-box-z81,
.abfa-casino-toggle-z81:focus
  .abfa-casino-arrow-box-z81,
.abfa-casino-toggle-z81[aria-expanded="true"]
  .abfa-casino-arrow-box-z81 {
  color: #24ee89;
  background: #424a4b;
}

/* Dropdown container */

.abfa-casino-list-z81 {
  overflow: hidden;
  background: #323738;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.abfa-casino-list-open-z81 {
  max-height: 900px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.abfa-casino-list-closed-z81 {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Dropdown menu items */

.abfa-casino-item-z81,
.abfa-casino-item-z81:link,
.abfa-casino-item-z81:visited {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 8px 13px 8px 10px;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-casino-item-z81:hover,
.abfa-casino-item-z81:focus,
.abfa-casino-item-z81:active {
  color: #24ee89;
  background: #383e3f;
  text-decoration: none;
}

.abfa-casino-item-z81:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-casino-item-main-z81 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.abfa-casino-item-main-z81 > span {
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown icons */

.abfa-casino-item-icon-z81 {
  width: 22px;
  height: 22px;
  display: block;
  color: #adb8ba;
  transition: color 0.2s ease;
}

.abfa-casino-icon-cutout-z81 {
  fill: #323738;
}

.abfa-casino-icon-cutout-stroke-z81 {
  fill: none;
  stroke: #323738;
}

.abfa-casino-item-arrow-z81 {
  width: 9px;
  height: 15px;
  display: block;
  flex: 0 0 auto;
  color: #adb8ba;
  transition: color 0.2s ease;
}

.abfa-casino-item-z81:hover
  .abfa-casino-item-icon-z81,
.abfa-casino-item-z81:focus
  .abfa-casino-item-icon-z81,
.abfa-casino-item-z81:active
  .abfa-casino-item-icon-z81,
.abfa-casino-item-z81:hover
  .abfa-casino-item-arrow-z81,
.abfa-casino-item-z81:focus
  .abfa-casino-item-arrow-z81,
.abfa-casino-item-z81:active
  .abfa-casino-item-arrow-z81 {
  color: #24ee89;
}

/* Hot badge */

.abfa-casino-hot-label-z81 {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 6px;
  background: #666526;
  color: #d9df59;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-casino-menu-z81 {
    max-width: 100%;
  }

  .abfa-casino-item-z81 {
    min-height: 50px;
  }
}

/* ==================================
   Expandable Sports Sidebar Menu
=================================== */

.abfa-sports-menu-z81,
.abfa-sports-menu-z81 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-sports-menu-z81 {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
  background: #323738;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* Sports main button */

.abfa-sports-toggle-z81 {
  width: 100%;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  appearance: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-sports-toggle-z81:hover,
.abfa-sports-toggle-z81:focus {
  color: #24ee89;
  background: #383e3f;
}

.abfa-sports-toggle-z81:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-sports-heading-z81 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.abfa-sports-title-z81 {
  color: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

/* Sports ball icon */

.abfa-sports-logo-z81 {
  width: 25px;
  height: 28px;
  display: block;
}

.abfa-sports-ball-base-z81 {
  fill: #adb8ba;
  transition: fill 0.2s ease;
}

.abfa-sports-ball-green-z81 {
  fill: #24ee89;
}

.abfa-sports-ball-seam-z81 {
  fill: none;
  stroke: #3c4142;
  stroke-width: 4;
  stroke-linecap: round;
}

/* Green icon state */

.abfa-sports-toggle-z81:hover
  .abfa-sports-ball-base-z81,
.abfa-sports-toggle-z81:focus
  .abfa-sports-ball-base-z81,
.abfa-sports-toggle-z81[aria-expanded="true"]
  .abfa-sports-ball-base-z81 {
  fill: #24ee89;
}

/* Arrow container */

.abfa-sports-arrow-box-z81 {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #3d4445;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb8ba;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-sports-toggle-arrow-z81 {
  width: 20px;
  height: 14px;
  display: block;
  transition: transform 0.3s ease;
}

/* Closed: arrow faces downward */

.abfa-sports-toggle-z81[aria-expanded="false"]
  .abfa-sports-toggle-arrow-z81 {
  transform: rotate(180deg);
}

/* Open: arrow faces upward */

.abfa-sports-toggle-z81[aria-expanded="true"]
  .abfa-sports-toggle-arrow-z81 {
  transform: rotate(0deg);
}

.abfa-sports-toggle-z81[aria-expanded="true"] {
  color: #24ee89;
  border-radius: 11px 11px 0 0;
}

.abfa-sports-toggle-z81:hover
  .abfa-sports-arrow-box-z81,
.abfa-sports-toggle-z81:focus
  .abfa-sports-arrow-box-z81,
.abfa-sports-toggle-z81[aria-expanded="true"]
  .abfa-sports-arrow-box-z81 {
  color: #24ee89;
  background: #424a4b;
}

/* Dropdown container */

.abfa-sports-list-z81 {
  overflow: hidden;
  background: #323738;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.abfa-sports-list-open-z81 {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.abfa-sports-list-closed-z81 {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Dropdown menu items */

.abfa-sports-item-z81,
.abfa-sports-item-z81:link,
.abfa-sports-item-z81:visited {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 8px 13px 8px 10px;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-sports-item-z81:hover,
.abfa-sports-item-z81:focus,
.abfa-sports-item-z81:active {
  color: #24ee89;
  background: #383e3f;
  text-decoration: none;
}

.abfa-sports-item-z81:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-sports-item-main-z81 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.abfa-sports-item-main-z81 > span {
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown icons */

.abfa-sports-item-icon-z81 {
  width: 22px;
  height: 22px;
  display: block;
  color: #adb8ba;
  transition: color 0.2s ease;
}

.abfa-sports-icon-cutout-z81 {
  fill: #323738;
}

.abfa-sports-item-arrow-z81 {
  width: 9px;
  height: 15px;
  display: block;
  flex: 0 0 auto;
  color: #adb8ba;
  transition: color 0.2s ease;
}

.abfa-sports-item-z81:hover
  .abfa-sports-item-icon-z81,
.abfa-sports-item-z81:focus
  .abfa-sports-item-icon-z81,
.abfa-sports-item-z81:active
  .abfa-sports-item-icon-z81,
.abfa-sports-item-z81:hover
  .abfa-sports-item-arrow-z81,
.abfa-sports-item-z81:focus
  .abfa-sports-item-arrow-z81,
.abfa-sports-item-z81:active
  .abfa-sports-item-arrow-z81 {
  color: #24ee89;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-sports-menu-z81 {
    max-width: 100%;
  }

  .abfa-sports-item-z81 {
    min-height: 50px;
  }
}

/* ==================================
   Predictions Sidebar Menu
=================================== */

.abfa-predictions-menu-z81,
.abfa-predictions-menu-z81 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-predictions-menu-z81,
.abfa-predictions-menu-z81:link,
.abfa-predictions-menu-z81:visited {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

/* Hover and focus state */

.abfa-predictions-menu-z81:hover,
.abfa-predictions-menu-z81:focus,
.abfa-predictions-menu-z81:active {
  border: 0;
  outline: 0;
  box-shadow: none;
  background: #383e3f;
  color: #24ee89;
  text-decoration: none;
}

.abfa-predictions-menu-z81:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

/* Predictions icon */

.abfa-predictions-logo-z81 {
  width: 25px;
  height: 28px;
  display: block;
  flex: 0 0 25px;
  overflow: visible;
}

/* Grey graph line */

.abfa-predictions-graph-z81 {
  color: #adb8ba;
  transition: color 0.2s ease;
}

/* Grey graph points */

.abfa-predictions-point-z81 {
  fill: #adb8ba;
  transition: fill 0.2s ease;
}

/* Grey centre bar */

.abfa-predictions-grey-bar-z81 {
  fill: #adb8ba;
  transition: fill 0.2s ease;
}

/* Green bars */

.abfa-predictions-green-bar-z81 {
  fill: #24ee89;
}

/* Predictions title */

.abfa-predictions-title-z81 {
  color: inherit;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

/* Turn grey icon portions green on hover */

.abfa-predictions-menu-z81:hover
  .abfa-predictions-graph-z81,
.abfa-predictions-menu-z81:focus
  .abfa-predictions-graph-z81,
.abfa-predictions-menu-z81:active
  .abfa-predictions-graph-z81 {
  color: #24ee89;
}

.abfa-predictions-menu-z81:hover
  .abfa-predictions-point-z81,
.abfa-predictions-menu-z81:focus
  .abfa-predictions-point-z81,
.abfa-predictions-menu-z81:active
  .abfa-predictions-point-z81,
.abfa-predictions-menu-z81:hover
  .abfa-predictions-grey-bar-z81,
.abfa-predictions-menu-z81:focus
  .abfa-predictions-grey-bar-z81,
.abfa-predictions-menu-z81:active
  .abfa-predictions-grey-bar-z81 {
  fill: #24ee89;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-predictions-menu-z81 {
    width: 100%;
    max-width: none;
  }
}

/* ==================================
   Expandable Lottery Sidebar Menu
=================================== */

.abfa-lottery-menu-r62,
.abfa-lottery-menu-r62 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-lottery-menu-r62 {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
  background: #323738;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* Lottery main button */

.abfa-lottery-toggle-r62 {
  width: 100%;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  appearance: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-lottery-toggle-r62:hover,
.abfa-lottery-toggle-r62:focus {
  color: #24ee89;
  background: #383e3f;
}

.abfa-lottery-toggle-r62:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-lottery-heading-r62 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.abfa-lottery-title-r62 {
  color: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

/* Lottery ticket icon */

.abfa-lottery-logo-r62 {
  width: 25px;
  height: 28px;
  display: block;
  overflow: visible;
}

.abfa-lottery-back-ticket-r62 {
  fill: #24ee89;
}

.abfa-lottery-front-ticket-r62 {
  fill: #adb8ba;
  transition: fill 0.2s ease;
}

.abfa-lottery-ticket-line-r62 {
  stroke: #3c4142;
}

.abfa-lottery-ticket-star-r62 {
  fill: #3c4142;
}

.abfa-lottery-toggle-r62:hover
  .abfa-lottery-front-ticket-r62,
.abfa-lottery-toggle-r62:focus
  .abfa-lottery-front-ticket-r62,
.abfa-lottery-toggle-r62[aria-expanded="true"]
  .abfa-lottery-front-ticket-r62 {
  fill: #24ee89;
}

/* Arrow container */

.abfa-lottery-arrow-box-r62 {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #3d4445;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb8ba;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-lottery-toggle-arrow-r62 {
  width: 20px;
  height: 14px;
  display: block;
  transition: transform 0.3s ease;
}

/* Closed arrow points downward */

.abfa-lottery-toggle-r62[aria-expanded="false"]
  .abfa-lottery-toggle-arrow-r62 {
  transform: rotate(180deg);
}

/* Open arrow points upward */

.abfa-lottery-toggle-r62[aria-expanded="true"]
  .abfa-lottery-toggle-arrow-r62 {
  transform: rotate(0deg);
}

.abfa-lottery-toggle-r62[aria-expanded="true"] {
  color: #24ee89;
  border-radius: 11px 11px 0 0;
}

.abfa-lottery-toggle-r62:hover
  .abfa-lottery-arrow-box-r62,
.abfa-lottery-toggle-r62:focus
  .abfa-lottery-arrow-box-r62,
.abfa-lottery-toggle-r62[aria-expanded="true"]
  .abfa-lottery-arrow-box-r62 {
  color: #24ee89;
  background: #424a4b;
}

/* Dropdown container */

.abfa-lottery-list-r62 {
  overflow: hidden;
  background: #323738;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.abfa-lottery-list-open-r62 {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.abfa-lottery-list-closed-r62 {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Dropdown menu items */

.abfa-lottery-item-r62,
.abfa-lottery-item-r62:link,
.abfa-lottery-item-r62:visited {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 8px 13px 8px 10px;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-lottery-item-r62:hover,
.abfa-lottery-item-r62:focus,
.abfa-lottery-item-r62:active {
  color: #24ee89;
  background: #383e3f;
  text-decoration: none;
}

.abfa-lottery-item-r62:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-lottery-item-main-r62 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.abfa-lottery-item-main-r62 > span {
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown icons */

.abfa-lottery-item-icon-r62 {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
  color: #adb8ba;
  transition: color 0.2s ease;
}

.abfa-lottery-icon-cutout-r62 {
  fill: #323738;
}

.abfa-lottery-item-r62:hover
  .abfa-lottery-item-icon-r62,
.abfa-lottery-item-r62:focus
  .abfa-lottery-item-icon-r62,
.abfa-lottery-item-r62:active
  .abfa-lottery-item-icon-r62 {
  color: #24ee89;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-lottery-menu-r62 {
    width: 100%;
    max-width: none;
  }

  .abfa-lottery-item-r62 {
    min-height: 50px;
  }
}

/* ==================================
   Expandable Crypto Futures Menu
=================================== */

.abfa-crypto-menu-c94,
.abfa-crypto-menu-c94 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-crypto-menu-c94 {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
  background: #323738;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* Crypto Futures main button */

.abfa-crypto-toggle-c94 {
  width: 100%;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  appearance: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-crypto-toggle-c94:hover,
.abfa-crypto-toggle-c94:focus {
  color: #24ee89;
  background: #383e3f;
}

.abfa-crypto-toggle-c94:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-crypto-heading-c94 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.abfa-crypto-title-c94 {
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Candlestick icon */

.abfa-crypto-logo-c94 {
  width: 25px;
  height: 28px;
  display: block;
  flex: 0 0 25px;
  overflow: visible;
}

.abfa-crypto-candle-grey-c94 {
  fill: #adb8ba;
  transition: fill 0.2s ease;
}

.abfa-crypto-candle-line-c94 {
  fill: none;
  stroke: #adb8ba;
  stroke-width: 2.7;
  stroke-linecap: round;
  transition: stroke 0.2s ease;
}

.abfa-crypto-candle-green-c94 {
  fill: #24ee89;
}

.abfa-crypto-candle-green-line-c94 {
  fill: none;
  stroke: #24ee89;
  stroke-width: 2.7;
  stroke-linecap: round;
}

/* Turn grey candle sections green */

.abfa-crypto-toggle-c94:hover
  .abfa-crypto-candle-grey-c94,
.abfa-crypto-toggle-c94:focus
  .abfa-crypto-candle-grey-c94,
.abfa-crypto-toggle-c94[aria-expanded="true"]
  .abfa-crypto-candle-grey-c94 {
  fill: #24ee89;
}

.abfa-crypto-toggle-c94:hover
  .abfa-crypto-candle-line-c94,
.abfa-crypto-toggle-c94:focus
  .abfa-crypto-candle-line-c94,
.abfa-crypto-toggle-c94[aria-expanded="true"]
  .abfa-crypto-candle-line-c94 {
  stroke: #24ee89;
}

/* Arrow container */

.abfa-crypto-arrow-box-c94 {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 6px;
  background: #3d4445;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb8ba;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-crypto-toggle-arrow-c94 {
  width: 20px;
  height: 14px;
  display: block;
  transition: transform 0.3s ease;
}

/* Closed arrow faces downward */

.abfa-crypto-toggle-c94[aria-expanded="false"]
  .abfa-crypto-toggle-arrow-c94 {
  transform: rotate(180deg);
}

/* Open arrow faces upward */

.abfa-crypto-toggle-c94[aria-expanded="true"]
  .abfa-crypto-toggle-arrow-c94 {
  transform: rotate(0deg);
}

.abfa-crypto-toggle-c94[aria-expanded="true"] {
  color: #24ee89;
  border-radius: 11px 11px 0 0;
}

.abfa-crypto-toggle-c94:hover
  .abfa-crypto-arrow-box-c94,
.abfa-crypto-toggle-c94:focus
  .abfa-crypto-arrow-box-c94,
.abfa-crypto-toggle-c94[aria-expanded="true"]
  .abfa-crypto-arrow-box-c94 {
  color: #24ee89;
  background: #424a4b;
}

/* Dropdown container */

.abfa-crypto-list-c94 {
  overflow: hidden;
  background: #323738;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.abfa-crypto-list-open-c94 {
  max-height: 350px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.abfa-crypto-list-closed-c94 {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Dropdown items */

.abfa-crypto-item-c94,
.abfa-crypto-item-c94:link,
.abfa-crypto-item-c94:visited {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 8px 13px 8px 10px;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-crypto-item-c94:hover,
.abfa-crypto-item-c94:focus,
.abfa-crypto-item-c94:active {
  color: #24ee89;
  background: #383e3f;
  text-decoration: none;
}

.abfa-crypto-item-c94:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-crypto-item-main-c94 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.abfa-crypto-item-main-c94 > span {
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown SVG icons */

.abfa-crypto-item-icon-c94 {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
  color: #adb8ba;
  transition: color 0.2s ease;
}

.abfa-crypto-item-c94:hover
  .abfa-crypto-item-icon-c94,
.abfa-crypto-item-c94:focus
  .abfa-crypto-item-icon-c94,
.abfa-crypto-item-c94:active
  .abfa-crypto-item-icon-c94 {
  color: #24ee89;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-crypto-menu-c94 {
    width: 100%;
    max-width: none;
  }

  .abfa-crypto-item-c94 {
    min-height: 50px;
  }
}

/* ==================================
   Expandable Promotions Menu
=================================== */

.abfa-promotions-menu-t91,
.abfa-promotions-menu-t91 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-promotions-menu-t91 {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
  background: #323738;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* Promotions main button */

.abfa-promotions-toggle-t91 {
  width: 100%;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  appearance: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-promotions-toggle-t91:hover,
.abfa-promotions-toggle-t91:focus {
  color: #24ee89;
  background: #383e3f;
}

.abfa-promotions-toggle-t91:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-promotions-heading-t91 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.abfa-promotions-title-t91 {
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Layered tags icon */

.abfa-promotions-logo-t91 {
  width: 25px;
  height: 28px;
  display: block;
  flex: 0 0 25px;
  overflow: visible;
}

.abfa-promotions-tag-green-t91 {
  fill: #24ee89;
}

.abfa-promotions-tag-middle-t91,
.abfa-promotions-tag-front-t91 {
  fill: #adb8ba;
  transition: fill 0.2s ease;
}

.abfa-promotions-tag-hole-t91 {
  fill: #3c4142;
}

/* Turn grey tags green */

.abfa-promotions-toggle-t91:hover
  .abfa-promotions-tag-middle-t91,
.abfa-promotions-toggle-t91:hover
  .abfa-promotions-tag-front-t91,
.abfa-promotions-toggle-t91:focus
  .abfa-promotions-tag-middle-t91,
.abfa-promotions-toggle-t91:focus
  .abfa-promotions-tag-front-t91,
.abfa-promotions-toggle-t91[aria-expanded="true"]
  .abfa-promotions-tag-middle-t91,
.abfa-promotions-toggle-t91[aria-expanded="true"]
  .abfa-promotions-tag-front-t91 {
  fill: #24ee89;
}

/* Arrow container */

.abfa-promotions-arrow-box-t91 {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 6px;
  background: #3d4445;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb8ba;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-promotions-toggle-arrow-t91 {
  width: 20px;
  height: 14px;
  display: block;
  transition: transform 0.3s ease;
}

/* Closed arrow faces downward */

.abfa-promotions-toggle-t91[aria-expanded="false"]
  .abfa-promotions-toggle-arrow-t91 {
  transform: rotate(180deg);
}

/* Open arrow faces upward */

.abfa-promotions-toggle-t91[aria-expanded="true"]
  .abfa-promotions-toggle-arrow-t91 {
  transform: rotate(0deg);
}

.abfa-promotions-toggle-t91[aria-expanded="true"] {
  color: #24ee89;
  border-radius: 11px 11px 0 0;
}

.abfa-promotions-toggle-t91:hover
  .abfa-promotions-arrow-box-t91,
.abfa-promotions-toggle-t91:focus
  .abfa-promotions-arrow-box-t91,
.abfa-promotions-toggle-t91[aria-expanded="true"]
  .abfa-promotions-arrow-box-t91 {
  color: #24ee89;
  background: #424a4b;
}

/* Dropdown container */

.abfa-promotions-list-t91 {
  overflow: hidden;
  background: #323738;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.abfa-promotions-list-open-t91 {
  max-height: 350px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.abfa-promotions-list-closed-t91 {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Dropdown items */

.abfa-promotions-item-t91,
.abfa-promotions-item-t91:link,
.abfa-promotions-item-t91:visited {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 8px 13px 8px 10px;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-promotions-item-t91:hover,
.abfa-promotions-item-t91:focus,
.abfa-promotions-item-t91:active {
  color: #24ee89;
  background: #383e3f;
  text-decoration: none;
}

.abfa-promotions-item-t91:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-promotions-item-main-t91 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.abfa-promotions-item-main-t91 > span {
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown icons */

.abfa-promotions-item-icon-t91 {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
  color: #adb8ba;
  transition: color 0.2s ease;
}

.abfa-promotions-cutout-t91 {
  fill: #323738;
}

.abfa-promotions-cutout-stroke-t91 {
  fill: none;
  stroke: #323738;
}

.abfa-promotions-item-t91:hover
  .abfa-promotions-item-icon-t91,
.abfa-promotions-item-t91:focus
  .abfa-promotions-item-icon-t91,
.abfa-promotions-item-t91:active
  .abfa-promotions-item-icon-t91 {
  color: #24ee89;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-promotions-menu-t91 {
    width: 100%;
    max-width: none;
  }

  .abfa-promotions-item-t91 {
    min-height: 50px;
  }
}

/* ==================================
   Compact Sidebar Information Menu
=================================== */

.abfa-info-menu-k74,
.abfa-info-menu-k74 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-info-menu-k74 {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 11px;
  background: #323738;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* Information links */

.abfa-info-item-k74,
.abfa-info-item-k74:link,
.abfa-info-item-k74:visited {
  width: 100%;
  min-height: 43px;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-info-item-k74:hover,
.abfa-info-item-k74:focus,
.abfa-info-item-k74:active {
  color: #24ee89;
  background: #383e3f;
  text-decoration: none;
}

.abfa-info-item-k74:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

/* Main item icons */

.abfa-info-icon-k74 {
  width: 25px;
  height: 28px;
  display: block;
  flex: 0 0 25px;
  color: #adb8ba;
  transition: color 0.2s ease;
}

/* Dark internal SVG cutouts */

.abfa-info-icon-cutout-k74 {
  fill: #323738;
}

.abfa-info-icon-cutout-stroke-k74 {
  fill: none;
  stroke: #323738;
}

/* Text */

.abfa-info-text-k74 {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  color: inherit;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* VIP stays green */

.abfa-vip-green-k74 {
  color: #24ee89;
}

/* External link icon */

.abfa-external-icon-k74 {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 14px;
  margin-left: auto;
  color: #adb8ba;
  transition: color 0.2s ease;
}

/* Hover icon colour */

.abfa-info-item-k74:hover
  .abfa-info-icon-k74,
.abfa-info-item-k74:focus
  .abfa-info-icon-k74,
.abfa-info-item-k74:active
  .abfa-info-icon-k74,
.abfa-info-item-k74:hover
  .abfa-external-icon-k74,
.abfa-info-item-k74:focus
  .abfa-external-icon-k74,
.abfa-info-item-k74:active
  .abfa-external-icon-k74 {
  color: #24ee89;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-info-menu-k74 {
    width: 100%;
    max-width: none;
  }

  .abfa-info-item-k74 {
    min-height: 43px;
  }
}

/* ==================================
   Expandable Sponsorships Menu
=================================== */

.abfa-sponsorship-menu-s84,
.abfa-sponsorship-menu-s84 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-sponsorship-menu-s84 {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-radius: 11px;
  background: #323738;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* Sponsorships main button */

.abfa-sponsorship-toggle-s84 {
  width: 100%;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  appearance: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-sponsorship-toggle-s84:hover,
.abfa-sponsorship-toggle-s84:focus {
  color: #24ee89;
  background: #383e3f;
}

.abfa-sponsorship-toggle-s84:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

.abfa-sponsorship-heading-s84 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.abfa-sponsorship-title-s84 {
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Handshake icon */

.abfa-sponsorship-logo-s84 {
  width: 25px;
  height: 28px;
  display: block;
  flex: 0 0 25px;
  overflow: visible;
  color: #adb8ba;
  transition: color 0.2s ease;
}

.abfa-sponsorship-icon-cutout-s84 {
  fill: #323738;
}

.abfa-sponsorship-icon-cutout-stroke-s84 {
  fill: none;
  stroke: #323738;
}

.abfa-sponsorship-toggle-s84:hover
  .abfa-sponsorship-logo-s84,
.abfa-sponsorship-toggle-s84:focus
  .abfa-sponsorship-logo-s84,
.abfa-sponsorship-toggle-s84[aria-expanded="true"]
  .abfa-sponsorship-logo-s84 {
  color: #24ee89;
}

/* Arrow container */

.abfa-sponsorship-arrow-box-s84 {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 6px;
  background: #3d4445;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb8ba;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-sponsorship-toggle-arrow-s84 {
  width: 20px;
  height: 14px;
  display: block;
  transition: transform 0.3s ease;
}

/* Closed arrow points downward */

.abfa-sponsorship-toggle-s84[aria-expanded="false"]
  .abfa-sponsorship-toggle-arrow-s84 {
  transform: rotate(180deg);
}

/* Open arrow points upward */

.abfa-sponsorship-toggle-s84[aria-expanded="true"]
  .abfa-sponsorship-toggle-arrow-s84 {
  transform: rotate(0deg);
}

.abfa-sponsorship-toggle-s84[aria-expanded="true"] {
  color: #24ee89;
  border-radius: 11px 11px 0 0;
}

.abfa-sponsorship-toggle-s84:hover
  .abfa-sponsorship-arrow-box-s84,
.abfa-sponsorship-toggle-s84:focus
  .abfa-sponsorship-arrow-box-s84,
.abfa-sponsorship-toggle-s84[aria-expanded="true"]
  .abfa-sponsorship-arrow-box-s84 {
  color: #24ee89;
  background: #424a4b;
}

/* Dropdown */

.abfa-sponsorship-list-s84 {
  overflow: hidden;
  background: #323738;
  transition:
    max-height 0.4s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.abfa-sponsorship-list-open-s84 {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.abfa-sponsorship-list-closed-s84 {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Sponsorship links */

.abfa-sponsorship-item-s84,
.abfa-sponsorship-item-s84:link,
.abfa-sponsorship-item-s84:visited {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 8px 13px 8px 10px;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-sponsorship-item-s84:hover,
.abfa-sponsorship-item-s84:focus,
.abfa-sponsorship-item-s84:active {
  color: #24ee89;
  background: #383e3f;
  text-decoration: none;
}

.abfa-sponsorship-item-s84:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

/* Highlighted Sponsorship Journey */

.abfa-sponsorship-item-active-s84,
.abfa-sponsorship-item-active-s84:link,
.abfa-sponsorship-item-active-s84:visited {
  width: calc(100% - 12px);
  margin: 5px 6px 2px;
  padding-left: 8px;
  border-radius: 8px;
  color: #24ee89;
  background: #3c4142;
}

.abfa-sponsorship-item-active-s84:hover,
.abfa-sponsorship-item-active-s84:focus {
  color: #24ee89;
  background: #424849;
}

/* Item content */

.abfa-sponsorship-item-main-s84 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
}

.abfa-sponsorship-item-main-s84 > span {
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown icons */

.abfa-sponsorship-item-icon-s84 {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
  color: #adb8ba;
  overflow: visible;
  transition: color 0.2s ease;
}

.abfa-sponsorship-item-active-s84
  .abfa-sponsorship-item-icon-s84 {
  color: #24ee89;
}

.abfa-sponsorship-item-s84:hover
  .abfa-sponsorship-item-icon-s84,
.abfa-sponsorship-item-s84:focus
  .abfa-sponsorship-item-icon-s84,
.abfa-sponsorship-item-s84:active
  .abfa-sponsorship-item-icon-s84 {
  color: #24ee89;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-sponsorship-menu-s84 {
    width: 100%;
    max-width: none;
  }

  .abfa-sponsorship-item-s84 {
    min-height: 46px;
  }
}

/* ==================================
   Live Support Sidebar Link
=================================== */

.abfa-live-support-link-l57,
.abfa-live-support-link-l57 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-live-support-link-l57,
.abfa-live-support-link-l57:link,
.abfa-live-support-link-l57:visited {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

/* Hover and focus */

.abfa-live-support-link-l57:hover,
.abfa-live-support-link-l57:focus,
.abfa-live-support-link-l57:active {
  border: 0;
  outline: 0;
  box-shadow: none;
  background: #383e3f;
  color: #24ee89;
  text-decoration: none;
}

.abfa-live-support-link-l57:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

/* Headphones icon */

.abfa-live-support-icon-l57 {
  width: 25px;
  height: 28px;
  display: block;
  flex: 0 0 25px;
  color: #adb8ba;
  transition: color 0.2s ease;
}

/* Link text */

.abfa-live-support-text-l57 {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Icon becomes green */

.abfa-live-support-link-l57:hover
  .abfa-live-support-icon-l57,
.abfa-live-support-link-l57:focus
  .abfa-live-support-icon-l57,
.abfa-live-support-link-l57:active
  .abfa-live-support-icon-l57 {
  color: #24ee89;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-live-support-link-l57 {
    width: 100%;
    max-width: none;
  }
}

/* ==================================
   Language Sidebar Link
=================================== */

.abfa-language-link-n63,
.abfa-language-link-n63 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-language-link-n63,
.abfa-language-link-n63:link,
.abfa-language-link-n63:visited {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 9px 7px 10px;
  border: 0;
  border-radius: 11px;
  outline: 0;
  box-shadow: none;
  background: #323738;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

/* Hover and focus state */

.abfa-language-link-n63:hover,
.abfa-language-link-n63:focus,
.abfa-language-link-n63:active {
  border: 0;
  outline: 0;
  box-shadow: none;
  background: #383e3f;
  color: #24ee89;
  text-decoration: none;
}

.abfa-language-link-n63:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

/* Left content */

.abfa-language-left-n63 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Globe icon */

.abfa-language-globe-n63 {
  width: 25px;
  height: 28px;
  display: block;
  flex: 0 0 25px;
  color: #adb8ba;
  transition: color 0.2s ease;
}

/* Language text */

.abfa-language-text-n63 {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Arrow container */

.abfa-language-arrow-box-n63 {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 0;
  border-radius: 6px;
  background: #3d4445;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb8ba;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-language-arrow-n63 {
  width: 14px;
  height: 14px;
  display: block;
}

/* Green hover state */

.abfa-language-link-n63:hover
  .abfa-language-globe-n63,
.abfa-language-link-n63:focus
  .abfa-language-globe-n63,
.abfa-language-link-n63:active
  .abfa-language-globe-n63,
.abfa-language-link-n63:hover
  .abfa-language-arrow-box-n63,
.abfa-language-link-n63:focus
  .abfa-language-arrow-box-n63,
.abfa-language-link-n63:active
  .abfa-language-arrow-box-n63 {
  color: #24ee89;
}

.abfa-language-link-n63:hover
  .abfa-language-arrow-box-n63,
.abfa-language-link-n63:focus
  .abfa-language-arrow-box-n63,
.abfa-language-link-n63:active
  .abfa-language-arrow-box-n63 {
  background: #424a4b;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-language-link-n63 {
    width: 100%;
    max-width: none;
  }
}

/* ==================================
   Compact Sidebar Theme Switch
=================================== */

.abfa-theme-switch-r52,
.abfa-theme-switch-r52 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.abfa-theme-switch-r52 {
  width: 100%;
  max-width: none;
  min-height: 43px;
  margin: 0;
  padding: 3px;
  border-radius: 11px;
  background: #323738;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 3px;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* Individual theme buttons */

.abfa-theme-option-r52 {
  width: 100%;
  min-width: 0;
  min-height: 37px;
  margin: 0;
  padding: 5px 8px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  box-shadow: none;
  appearance: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #899395;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.abfa-theme-option-r52:hover {
  color: #ffffff;
  background: #383e3f;
}

.abfa-theme-option-r52:focus {
  outline: 0;
}

.abfa-theme-option-r52:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: -2px;
}

/* Active option */

.abfa-theme-option-r52.is-active {
  color: #ffffff;
  background: #555e60;
}

.abfa-theme-option-r52.is-active:hover {
  color: #ffffff;
  background: #5f696b;
}

/* Theme icons */

.abfa-theme-icon-r52 {
  width: 17px;
  height: 17px;
  display: block;
  flex: 0 0 17px;
  color: inherit;
}

/* Prevent text overflow */

.abfa-theme-option-r52 span {
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==================================
   Page Theme Colours
=================================== */

html[data-abfa-theme="dark"] {
  color-scheme: dark;
}

html[data-abfa-theme="dark"] body {
  background-color: #242a2b;
  color: #ffffff;
}

html[data-abfa-theme="light"] {
  color-scheme: light;
}

html[data-abfa-theme="light"] body {
  background-color: #f5f6f6;
  color: #222829;
}

/* Theme switch appearance in light mode */

html[data-abfa-theme="light"] .abfa-theme-switch-r52 {
  background: #e4e7e7;
}

html[data-abfa-theme="light"] .abfa-theme-option-r52 {
  color: #697375;
}

html[data-abfa-theme="light"] .abfa-theme-option-r52:hover {
  color: #222829;
  background: #d5dada;
}

html[data-abfa-theme="light"]
  .abfa-theme-option-r52.is-active {
  color: #222829;
  background: #ffffff;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .abfa-theme-switch-r52 {
    width: 100%;
    max-width: none;
  }
}
/* =========================
   Main
   ========================= */

.main-content {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  padding: 75px 16px 60px;
  background: var(--page-bg);
}

.hero-banner {
  position: relative;
  width: 100%;
  border-radius: 13px;
  overflow: hidden;
  background: #292d2e;
}

.hero-banner > img {
  width: 100%;
  aspect-ratio: 1482 / 341;
  object-fit: cover;
}

.hero-signup-hitbox,
.hero-google-hitbox,
.hero-telegram-hitbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.hero-signup-hitbox {
  left: 14.7%;
  top: 36.8%;
  width: 22%;
  height: 15.7%;
}

.hero-google-hitbox {
  left: 14.7%;
  top: 67.4%;
  width: 10.6%;
  height: 15%;
}

.hero-telegram-hitbox {
  left: 26.1%;
  top: 67.4%;
  width: 10.6%;
  height: 15%;
}

/* =========================
   Recent wins
   ========================= */

/* ==================================
   Recent Big Wins Section
=================================== */

.abfa-wins-section-v96,
.abfa-wins-section-v96 *,
.abfa-wins-slider-v96,
.abfa-wins-slider-v96 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Main section */

.abfa-wins-section-v96 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 30px 0 0;
  padding: 0;
  overflow: hidden;
}

.abfa-wins-slider-v96 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  color: #ffffff;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
}

/* ==================================
   Heading and Tabs
=================================== */

.abfa-wins-header-v96 {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  margin: 0;
  padding: 0 3px 7px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  background: transparent;
  white-space: nowrap;
}

.abfa-wins-title-v96 {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.abfa-wins-status-v96 {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #24ee89;
  box-shadow:
    0 0 0 4px rgba(36, 238, 137, 0.14),
    0 0 9px rgba(36, 238, 137, 0.35);
}

/* Tabs wrapper */

.abfa-wins-tabs-v96 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 21px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.abfa-wins-tabs-v96::-webkit-scrollbar {
  display: none;
}

/* Individual tabs */

.abfa-wins-tab-v96 {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 5px 0 9px;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: #aeb7b8;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.abfa-wins-tab-v96:hover,
.abfa-wins-tab-v96:focus,
.abfa-wins-tab-v96:active,
.abfa-wins-tab-v96.is-active {
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  color: #ffffff;
}

.abfa-wins-tab-v96:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: 3px;
  border-radius: 3px;
}

.abfa-wins-tab-v96.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 5px;
  background: #24ee89;
}

/* ==================================
   Slider Background
=================================== */

.abfa-wins-viewport-v96 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 8px 0 7px;
  overflow: hidden;
  border-radius: 10px;
  background: #292d2e;
}

/* Moving track */

.abfa-wins-track-v96 {
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Repeated card group */

.abfa-wins-group-v96 {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  margin: 0;
  padding: 0 18px 0 1px;
}

/* ==================================
   Compact Win Cards
=================================== */

.abfa-win-card-v96,
.abfa-win-card-v96:link,
.abfa-win-card-v96:visited {
  width: 72px;
  min-width: 72px;
  max-width: 72px;
  flex: 0 0 72px;
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
  outline: 0;
  box-shadow: none;
  color: #ffffff;
  text-decoration: none;
}

/* Remove any old first-card margin */

.abfa-win-card-v96:first-child {
  margin-left: 0;
}

.abfa-win-card-v96:focus-visible {
  outline: 2px solid #24ee89;
  outline-offset: 3px;
  border-radius: 9px;
}

/* Image wrapper */

.abfa-win-image-wrap-v96 {
  position: relative;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 9px;
  background:
    linear-gradient(
      145deg,
      #404849,
      #252b2c
    );
}

/* Game image */

.abfa-win-image-v96 {
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 9px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}

.abfa-win-card-v96:hover
  .abfa-win-image-v96 {
  transform: scale(1.025);
}

/* ==================================
   Player Information
=================================== */

.abfa-win-player-v96 {
  width: 72px;
  min-width: 0;
  margin: 5px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  color: #aeb7b8;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

/* Player icon */

.abfa-win-avatar-v96 {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  display: block;
  color: #adb8ba;
}

.abfa-win-avatar-v96 svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Player name */

.abfa-win-player-name-v96 {
  min-width: 0;
  max-width: 55px;
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Winning amount */

.abfa-win-amount-v96 {
  width: 72px;
  min-width: 0;
  margin: 5px 0 0;
  padding: 0;
  overflow: hidden;
  color: #24ee89;
  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hide filtered cards */

.abfa-win-card-v96.abfa-win-hidden-v96 {
  display: none;
}

/* ==================================
   Full Size Image Section
=================================== */

.abfa-full-image-section-x72 {
  width: 100%;
  margin-top: 25px;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.abfa-full-image-x72 {
  display: block;

  /* Keep actual image proportions */
  width: auto;
  height: auto;

  /* Prevent image going outside screen */
  max-width: 100%;

  /* No cropping */
  object-fit: contain;

  margin: 0;
  padding: 0;
  border: 0;
}



/* ==================================
   MULTI STEP AUTH / PROFILE POPUP
=================================== */

.abfa-auth-overlay-m81,
.abfa-auth-overlay-m81 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}


/* ==================================
   OVERLAY
=================================== */

.abfa-auth-overlay-m81 {
  position: fixed;
  inset: 0;

  z-index: 999999;

  width: 100%;
  height: 100%;

  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.72);

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}


.abfa-auth-overlay-m81.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* ==================================
   MODAL
=================================== */

.abfa-auth-modal-m81 {
  position: relative;

  width: 100%;
  max-width: 470px;

  max-height: calc(100vh - 40px);

  overflow-x: hidden;
  overflow-y: auto;

  border-radius: 15px;

  background: #232626;
  color: #ffffff;

  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;

  box-shadow:
    0 20px 65px rgba(0, 0, 0, 0.45);

  transform:
    translateY(15px)
    scale(0.98);

  transition:
    transform 0.25s ease;
}


.abfa-auth-overlay-m81.is-open
.abfa-auth-modal-m81 {
  transform:
    translateY(0)
    scale(1);
}


/* Scrollbar */

.abfa-auth-modal-m81 {
  scrollbar-width: thin;
  scrollbar-color:
    #4a5354
    transparent;
}


.abfa-auth-modal-m81::-webkit-scrollbar {
  width: 5px;
}


.abfa-auth-modal-m81::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #4a5354;
}

/* ==================================
   LOGIN METHOD SELECTOR
=================================== */

.abfa-login-method-p42 {
  width: 100%;

  margin: 0 0 24px;

  padding: 0;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 0;

  overflow: hidden;

  border-radius: 8px;

  background: #303637;
}


.abfa-login-method-btn-p42 {
  width: 100%;
  height: 44px;

  margin: 0;
  padding: 0 14px;

  border: 0;
  outline: 0;

  border-radius: 8px;

  background: transparent;

  color: #aeb7b8;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  font-family:
    "AvertaStd",
    Arial,
    sans-serif;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}


.abfa-login-method-btn-p42.is-active {
  background: #3c4445;
  color: #ffffff;
}


.abfa-login-method-btn-p42:hover {
  color: #ffffff;
}


.abfa-login-method-icon-p42 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  line-height: 1;

  opacity: 0.9;
}
.abfa-login-method-svg-p42 {
  width: 16px;
  height: 16px;

  flex: 0 0 16px;

  display: block;

  color: currentColor;
}

@media screen and (max-width: 600px) {

  .abfa-login-method-p42 {
    margin-bottom: 20px;
  }


  .abfa-login-method-btn-p42 {
    height: 42px;

    padding: 0 8px;

    font-size: 13px;
  }

}

/* ==================================
   DIRECT LOGIN SECTION
=================================== */

.abfa-direct-login-q77 {
  width: 100%;
  margin-top: 27px;

  font-family:
    "AvertaStd",
    Arial,
    sans-serif;
}


/* ==================================
   DIVIDER
=================================== */

.abfa-direct-divider-q77 {
  width: 100%;

  margin:
    0
    0
    20px;

  display: grid;
  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  gap: 14px;
}


.abfa-direct-divider-q77 span {
  display: block;

  width: 100%;
  height: 1px;

  background: #3a4142;
}


.abfa-direct-divider-q77 strong {
  color: #aeb7b8;

  font-size: 14px;
  line-height: 1;

  font-weight: 700;

  white-space: nowrap;
}


/* ==================================
   LARGE LOGIN BUTTONS
=================================== */
/* Exact SVG colouring */

.abfa-direct-main-icon-q77,
.abfa-direct-main-icon-q77 path,
.abfa-social-login-btn-q77 svg,
.abfa-social-login-btn-q77 svg path {
  fill: currentColor;
}


.abfa-cwallet-icon-q77 {
  color: #91e85b;
}


.abfa-passkey-btn-q77 .abfa-direct-main-icon-q77 {
  color: #aeb7b8;
}


.abfa-social-login-btn-q77 {
  color: #aeb7b8;
}


.abfa-social-login-btn-q77:hover {
  color: #ffffff;
}
.abfa-direct-main-btn-q77 {
  width: 100%;
  height: 54px;

  margin: 0 0 13px;
  padding: 0 18px;

  border:
    1px solid #3b4344;

  border-radius: 9px;

  outline: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  color: #eef2f2;

  font-family:
    "AvertaStd",
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1;

  font-weight: 800;

  cursor: pointer;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.15s ease;
}


.abfa-direct-main-btn-q77:active {
  transform: scale(0.99);
}


/* Cwallet */

.abfa-cwallet-btn-q77 {
  border-color: #343b3c;

  background: #303637;
}


.abfa-cwallet-btn-q77:hover {
  background: #363d3e;
}


.abfa-cwallet-icon-q77 {
  color: #91e85b;
}


/* Passkey */

.abfa-passkey-btn-q77 {
  background: #222829;

  color: #f2f4f4;
}


.abfa-passkey-btn-q77:hover {
  background: #292f30;
}


.abfa-direct-main-icon-q77 {
  width: 23px;
  height: 23px;

  flex: 0 0 23px;

  display: block;
}


/* ==================================
   SOCIAL ICON ROW
=================================== */

.abfa-social-login-row-q77 {
  width: 100%;

  margin-top: 27px;

  display: grid;
  grid-template-columns:
    repeat(7, 1fr);

  gap: 9px;
}


.abfa-social-login-btn-q77 {
  width: 100%;
  min-width: 0;
  height: 50px;

  margin: 0;
  padding: 0;

  border:
    1px solid #3a4243;

  border-radius: 9px;

  outline: 0;

  background: #242a2b;

  color: #aeb7b8;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.15s ease;
}


.abfa-social-login-btn-q77:hover {
  background: #303637;

  border-color: #4a5354;

  color: #ffffff;
}


.abfa-social-login-btn-q77:active {
  transform: scale(0.96);
}


.abfa-social-login-btn-q77 svg {
  width: 21px;
  height: 21px;

  display: block;

  color: currentColor;
}

.abfa-input-icon-wrap-m81 {
  position: relative;
  width: 100%;
}

.abfa-input-icon-wrap-m81 input {
  padding-right: 50px !important;
}

.abfa-input-eye-icon-m81 {
  position: absolute;

  top: 50%;
  right: 15px;

  width: 22px;
  height: 22px;

  transform: translateY(-50%);

  fill: #8e9899;

  pointer-events: none;
}
.forgot-password{
  font-size: 14px;
  font-weight: 800;
  margin-top: 8px;
  color: #b3bec1;
  text-align: right;
}
.forgot-password:hover{
  color: white;
  text-decoration: underline;
  text-align: right;
}
.google-code-access{
  font-size: 14px;
  font-weight: 800;
  margin-top: 8px;
  color: #b3bec1;
  text-align: center;
}
.google-code-access:hover{
  color: white;
  text-decoration: underline;
}

.phone-call-code{
  font-size: 14px;
  font-weight: 800;
  margin-top: 8px;
  color: #24EE89;
  text-align: center;
}
/* ==================================
   MOBILE
=================================== */

@media screen and (max-width: 600px) {

  .abfa-direct-login-q77 {
    margin-top: 24px;
  }


  .abfa-direct-divider-q77 {
    gap: 11px;

    margin-bottom: 17px;
  }


  .abfa-direct-divider-q77 strong {
    font-size: 13px;
  }


  .abfa-direct-main-btn-q77 {
    height: 52px;

    font-size: 15px;
  }


  .abfa-social-login-row-q77 {
    gap: 6px;

    margin-top: 23px;
  }


  .abfa-social-login-btn-q77 {
    height: 46px;

    border-radius: 8px;
  }


  .abfa-social-login-btn-q77 svg {
    width: 19px;
    height: 19px;
  }

}
/* ==================================
   HEADER
=================================== */

.abfa-auth-header-m81 {
  position: sticky;
  top: 0;

  z-index: 3;

  width: 100%;
  height: 56px;

  display: grid;
  grid-template-columns: 1fr;
  align-items: center;

  background: #232626;
}


.abfa-auth-header-tabs-m81 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.abfa-auth-header-tabs-m81.is-hidden {
  display: none;
}


.abfa-auth-header-m81.is-hidden {
  display: none;
}


.abfa-auth-header-m81.is-hidden + .abfa-auth-step-m81.is-active {
  padding-top: 12px;
}


.abfa-auth-header-tab-m81 {
  position: relative;

  width: 100%;
  height: 56px;

  margin: 0;
  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  color: #9fa9aa;

  font-family: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;

  cursor: pointer;
}


.abfa-auth-header-tab-m81.is-active {
  color: #ffffff;
}


.abfa-auth-header-tab-m81.is-active::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  height: 2px;

  background: #24ee89;
}


/* Close */



/* ==================================
   CONTENT
=================================== */

.abfa-auth-content-m81 {
  width: 100%;

  padding:
    20px
    24px
    20px;
}


/* ==================================
   DISCLOSURE
=================================== */

.abfa-auth-disclosure-m81 {
  width: 100%;

  margin: 0 0 25px;
  padding: 11px 13px;

  border:
    1px solid #3a4344;

  border-radius: 8px;

  background: #292f30;

  display: flex;
  flex-direction: column;
  gap: 4px;

  color: #9fa9aa;

  font-size: 11px;
  line-height: 1.4;
}


.abfa-auth-disclosure-m81 strong {
  color: #d5dddd;

  font-size: 12px;
  font-weight: 700;
}


/* ==================================
   STEPS
=================================== */

.abfa-auth-step-m81 {
  display: none;
}


.abfa-auth-step-m81.is-active {
  display: block;
  padding: 24px 24px 0;
}


/* ==================================
   TITLE
=================================== */

.abfa-auth-step-title-m81 {
  margin:
    0
    0
    8px;

  color: #ffffff;

  text-align: center;

  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}


.abfa-auth-step-description-m81 {

  color: #aeb7b8;
  margin-bottom: 5px;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}


/* ==================================
   FIELDS
=================================== */

.abfa-auth-field-m81 {
  width: 100%;

  margin-bottom: 22px;
  margin-top: 30px;
}


.abfa-auth-field-m81 label {
  display: block;

  margin-bottom: 7px;

  color: #b9c1c2;

  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}


.abfa-auth-field-m81 label span {
  color: #f1535b;
}


.abfa-auth-field-m81 input,
.abfa-auth-field-m81 textarea {
  width: 100%;

  margin: 0;

  border:
    1px solid #41494a;

  border-radius: 8px;

  outline: 0;

  background: #202627;

  color: #ffffff;

  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;

  font-size: 15px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.abfa-auth-field-m81 input {
  height: 52px;

  padding:
    0
    14px;
}


.abfa-auth-field-m81 textarea {
  min-height: 110px;

  padding: 13px 14px;

  line-height: 1.45;

  resize: vertical;
}


.abfa-auth-field-m81 input:focus,
.abfa-auth-field-m81 textarea:focus {
  border-color: #24ee89;

  box-shadow:
    0 0 0 1px #24ee89;
}


.abfa-auth-field-m81 input::placeholder,
.abfa-auth-field-m81 textarea::placeholder {
  color: #737d7f;
}


/* ==================================
   CONSENT BOX
=================================== */

.abfa-step-consent-m81 {
  width: 100%;

  margin:
    3px
    0
    16px;

  padding: 12px 13px;

  border:
    1px solid #3d4647;

  border-radius: 9px;

  background: #292f30;

  display: flex;
  align-items: flex-start;
  gap: 9px;

  color: #aeb7b8;

  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;

  font-size: 11px;
  line-height: 1.5;

  cursor: pointer;
}


.abfa-step-consent-m81 input {
  width: 16px;
  height: 16px;

  flex:
    0
    0
    16px;

  margin:
    1px
    0
    0;

  accent-color: #24ee89;

  cursor: pointer;
}


.abfa-step-consent-m81 span {
  min-width: 0;

  color: inherit;
}


/* ==================================
   ERROR
=================================== */

.abfa-auth-error-m81 {
  width: 100%;
  min-height: 17px;

  margin:
    -3px
    0
    9px;

  color: #ff656d;

  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}


/* ==================================
   PRIMARY BUTTON
=================================== */

.abfa-auth-main-button-m81 {
  width: 100%;
  height: 54px;

  margin-top: -50px;

  padding:
    0
    15px;

  border: 0;

  border-radius: 11px;

  outline: 0;

  background: #258859;

  color: #07130d;

  font-family:
    "AvertaStd",
    "Averta Std",
    Arial,
    sans-serif;

  font-size: 15px;
  line-height: 1;
  font-weight: 800;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.15s ease;
}


.abfa-auth-main-button-m81:hover {
  background: #2a9c66;
}


.abfa-auth-main-button-m81:active {
  transform: scale(0.99);
}


.abfa-auth-main-button-m81.is-loading,
.abfa-auth-main-button-m81:disabled {
  opacity: 0.65;

  pointer-events: none;

  cursor: wait;
}


/* ==================================
   VERIFICATION CODE + PASTE BUTTON
=================================== */

.abfa-verification-input-wrap-m81 {
  position: relative;
  width: 100%;
}

.abfa-verification-input-wrap-m81 input {
  width: 100%;

  /* space for Paste button */
  padding-right: 78px !important;
}


/* Paste button */

.abfa-verification-paste-m81 {
  position: absolute;

  top: 50%;
  right: 6px;

  height: 38px;
  min-width: 53px;

  padding: 0 10px;

  transform: translateY(-50%);

  border: 0;
  border-radius: 7px;

  background: #535c5d;

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family:
    "AvertaStd",
    Arial,
    sans-serif;

  font-size: 13px;
  line-height: 1;
  font-weight: 700;

  cursor: pointer;
}


/* hover */

.abfa-verification-paste-m81:hover {
  background: #606a6b;
}


/* mobile */

@media screen and (max-width: 600px) {

  .abfa-verification-paste-m81 {
    right: 5px;

    height: 36px;

    min-width: 51px;

    font-size: 12px;
  }

}

/* ==================================
   SWITCH EMAIL / PHONE
=================================== */

.abfa-switch-contact-k28 {
  width: 100%;

  margin: 14px 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.abfa-switch-contact-btn-k28 {
  margin: 0;
  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: #24ee89;

  font-family:
    "AvertaStd",
    Arial,
    sans-serif;

  font-size: 14px;
  line-height: 1;

  font-weight: 700;

  white-space: nowrap;

  cursor: pointer;

  transition:
    opacity 0.18s ease,
    color 0.18s ease;
}


.abfa-switch-contact-btn-k28 svg {
  width: 20px;
  height: 20px;

  flex: 0 0 20px;

  display: block;

  fill: currentColor;
}


.abfa-switch-contact-btn-k28:hover {
  color: #51f4a3;
}


.abfa-switch-contact-btn-k28:active {
  opacity: 0.75;
}


/* Mobile */

@media screen and (max-width: 600px) {

  .abfa-switch-contact-k28 {
    margin: 12px 0 16px;

    gap: 12px;
  }


  .abfa-switch-contact-btn-k28 {
    font-size: 13px;
  }


  .abfa-switch-contact-btn-k28 svg {
    width: 19px;
    height: 19px;

    flex-basis: 19px;
  }

}


/* ==================================
   STEP ICON
=================================== */

.abfa-auth-step-icon-m81 {
  width: 42px;
  height: 42px;

  margin:
    0
    auto
    15px;

  color: #aeb7b8;
}

.abfa-auth-step-subtitle-m81 {
  margin:
    0
    0
    8px;

  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.abfa-email-target-m81 {
  margin:
    0
    0
    20px;

  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}


.abfa-auth-step-icon-m81 svg {
  width: 100%;
  height: 100%;

  display: block;
}


.abfa-auth-icon-cutout-m81 {
  fill: #222829;
}


/* ==================================
   REVIEW
=================================== */

.abfa-auth-review-m81 {
  width: 100%;

  margin:
    27px
    0
    18px;

  overflow: hidden;

  border:
    1px solid #3a4344;

  border-radius: 10px;

  background: #202627;
}


.abfa-auth-review-m81 > div {
  width: 100%;

  padding: 13px 14px;

  border-bottom:
    1px solid #3a4344;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}


.abfa-auth-review-m81 > div:last-child {
  border-bottom: 0;
}


.abfa-auth-review-m81 span {
  flex: 0 0 auto;

  color: #8f999b;

  font-size: 12px;
  line-height: 1.4;
}


.abfa-auth-review-m81 strong {
  min-width: 0;
  max-width: 65%;

  color: #ffffff;

  text-align: right;

  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;

  word-break: break-word;
}


/* ==================================
   SUCCESS
=================================== */

.abfa-auth-success-m81 {
  width: 100%;

  padding:
    22px
    0
    15px;

  text-align: center;
}


.abfa-auth-success-icon-m81 {
  width: 58px;
  height: 58px;

  margin:
    0
    auto
    18px;

  border-radius: 50%;

  background: #24ee89;

  color: #102318;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 29px;
  font-weight: 800;
}


.abfa-auth-success-m81 h3 {
  margin:
    0
    0
    8px;

  color: #ad1616;

  font-size: 20px;
  font-weight: 700;
}


.abfa-auth-success-m81 p {
  margin:
    0
    0
    25px;

  color: #aeb7b8;

  font-size: 13px;
}


/* ==================================
   MOBILE BOTTOM SHEET
=================================== */

@media screen and (max-width: 600px) {

  .abfa-auth-overlay-m81 {
    align-items: flex-end;

    padding: 0;
  }


  .abfa-auth-modal-m81 {
    width: 100%;
    max-width: none;

    max-height: 92vh;

    border-radius:
      17px
      17px
      0
      0;

    transform:
      translateY(30px);
  }


  .abfa-auth-overlay-m81.is-open
  .abfa-auth-modal-m81 {
    transform:
      translateY(0);
  }


  .abfa-auth-header-m81 {
    height: 57px;
  }


  .abfa-auth-header-tab-m81 {
    height: 57px;

    font-size: 15px;
  }


  .abfa-auth-content-m81 {
    padding:
      27px
      25px
      calc(
        27px +
        env(safe-area-inset-bottom)
      );
  }


  .abfa-auth-step-title-m81 {
    font-size: 19px;
  }


  .abfa-auth-field-m81 input {
    height: 52px;
  }

}
/* ==================================
   Light Theme
=================================== */

html[data-abfa-theme="light"]
  .abfa-wins-slider-v96 {
  color: #222829;
}

html[data-abfa-theme="light"]
  .abfa-wins-title-v96 {
  color: #222829;
}

html[data-abfa-theme="light"]
  .abfa-wins-tab-v96 {
  color: #697375;
}

html[data-abfa-theme="light"]
  .abfa-wins-tab-v96:hover,
html[data-abfa-theme="light"]
  .abfa-wins-tab-v96:focus,
html[data-abfa-theme="light"]
  .abfa-wins-tab-v96:active,
html[data-abfa-theme="light"]
  .abfa-wins-tab-v96.is-active {
  color: #222829;
}

html[data-abfa-theme="light"]
  .abfa-wins-viewport-v96 {
  background: #e5e8e8;
}

html[data-abfa-theme="light"]
  .abfa-win-player-v96 {
  color: #697375;
}

html[data-abfa-theme="light"]
  .abfa-win-avatar-v96 {
  color: #697375;
}

/* ==================================
   Tablet and Mobile
=================================== */

@media screen and (max-width: 767px) {
  .abfa-wins-section-v96 {
    margin-top: 11px;
  }

  .abfa-wins-header-v96 {
    padding: 0 2px 8px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
  }

  .abfa-wins-title-v96 {
    font-size: 16px;
  }

  .abfa-wins-tabs-v96 {
    width: 100%;
    gap: 18px;
  }

  .abfa-wins-tab-v96 {
    font-size: 13px;
  }

  .abfa-wins-viewport-v96 {
    padding: 8px 0 7px;
  }

  .abfa-wins-group-v96 {
    gap: 13px;
    padding-right: 13px;
  }

  .abfa-win-card-v96,
  .abfa-win-card-v96:link,
  .abfa-win-card-v96:visited {
    width: 68px;
    min-width: 68px;
    max-width: 68px;
    flex: 0 0 68px;
  }

  .abfa-win-image-wrap-v96 {
    width: 68px;
    min-width: 68px;
    max-width: 68px;
    height: 94px;
  }

  .abfa-win-image-v96 {
    width: 68px;
    min-width: 68px;
    max-width: 68px;
    height: 94px;
  }

  .abfa-win-player-v96 {
    width: 68px;
  }

  .abfa-win-player-name-v96 {
    max-width: 51px;
  }

  .abfa-win-amount-v96 {
    width: 68px;
  }
}

/* ==================================
   Reduced Motion
=================================== */

@media (prefers-reduced-motion: reduce) {
  .abfa-wins-viewport-v96 {
    overflow-x: auto;
  }

  .abfa-wins-track-v96 {
    transform: none !important;
  }

  .abfa-win-image-v96 {
    transition: none;
  }
}



/* =========================
   Category panels
   ========================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-top: 30px;
}

.category-panel {
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 180ms ease;
}

.category-panel:hover {
  transform: translateY(-3px);
}

.category-panel img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: top;
}

.demo-spacer {
  min-height: 380px;
  margin-top: 24px;
  padding: 34px;
  border-radius: 16px;
  color: #9fa7a8;
  background: #292d2e;
}

.demo-spacer h2 {
  color: #fff;
  font-size: 23px;
  font-weight: 800;
}

.support-button {
  position: fixed;
  z-index: 1080;
  right: 32px;
  bottom: 38px;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #10271e;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  font-size: 25px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.brand-logo-image {
  display: block;
  width: auto;
  height: 34px;
  max-width: 145px;
  object-fit: contain;
}
/* =========================
   Responsive
   ========================= */

@media (max-width: 1199.98px) {
  :root {
    --sidebar-width: 285px;
  }

  .brand-name {
    font-size: 29px;
  }

  .auth-button {
    min-width: 104px;
    padding-inline: 20px;
  }

  .main-content {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 72px;
    --sidebar-width: 290px;
  }

  .top-header {
    height: var(--header-height);
    padding-inline: 12px;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-backdrop.is-visible {
    display: block;
  }

  .main-content {
    margin-left: 0;
    padding-top: 87px;
  }

  .brand-name {
    font-size: 27px;
  }

  .search-button,
  .small-action {
    display: none;
  }

  .currency-button {
    min-width: auto;
  }

  .hero-banner > img {
    min-height: 225px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 767.98px) {
  .brand-symbol {
    width: 31px;
    height: 36px;
    border-width: 6px;
  }

  .brand-name {
    font-size: 22px;
  }

  .header-left {
    gap: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .sign-in-button,
  .currency-button {
    display: none;
  }

  .sign-up-button {
    min-width: 90px;
    min-height: 46px;
    padding-inline: 16px;
    font-size: 16px;
  }

  .sidebar-trigger {
    width: 46px;
    min-height: 46px;
  }

  .wins-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-left: 4px;
  }

  .wins-tabs {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
  }

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

  .hero-banner > img {
    min-height: 260px;
    object-position: center;
  }

  .support-button {
    right: 18px;
    bottom: 20px;
  }

   .brand-logo-image {
    height: 29px;
    max-width: 120px;
  }
}

@media (max-width: 479.98px) {
  .brand-name {
    display: none;
  }

  .main-content {
    padding-inline: 10px;
  }

  .hero-banner > img {
    min-height: 215px;
  }

  .recent-wins-section {
    margin-top: 22px;
  }

  .category-panel,
  .category-panel img {
    min-height: 140px;
  }
}

/* Desktop sidebar toggle */
@media (min-width: 992px) {
  .sidebar.desktop-hidden {
    transform: translateX(-100%);
  }

  html.sidebar-collapsed .main-content {
    margin-left: 0;
  }
}
