@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@property --wb-banner-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --b: #0c1d41;
  --header: #000c24;
  --menu: #000c24;
  --hero: #018df9;
  --oc-1: #18d931;
  --oc-2: #ffd700;
  --accent: #2196f3;
  --b-sc: 255, 255, 255;
  --header-sc: 255, 255, 255;
  --menu-sc: 255, 255, 255;
  --font-family: Roboto, Arial, Helvetica, sans-serif;
  --border-radius: 4px;
  --desktop-header-height: 56px;
  --topbar-height: 32px;
  --header-offset: calc(var(--topbar-height) + var(--desktop-header-height));
  --menu-width: 72px;
  --content-max: 1170px;
  --menu-blue-top: #1b518f;
  --menu-blue-mid: #0d306c;
  --menu-blue-bottom: #071a43;
  --menu-cyan: #23caff;
  --menu-icon: #eefaff;
  --wb-banner-angle: 0deg;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100%;
  min-height: 100%;
  overflow-x: clip;
  width: 100%;
}

html.game-open,
body.game-open {
  height: 100%;
  overflow: hidden !important;
}

html {
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-family);
  overscroll-behavior-x: none;
}

body {
  background: var(--b);
  color: rgba(var(--b-sc), 0.9);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  min-height: 100vh;
}

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

button,
input {
  font-family: inherit;
}

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

.layout-bc {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  min-height: 100vh;
  min-width: 0;
  overflow-x: clip;
}

.layout-bc.topbar-hidden {
  --topbar-height: 0px;
}

.informative-widget {
  background: #061433;
  border-bottom: 1px solid rgba(33, 187, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(33, 187, 255, 0.12);
  display: flex;
  height: var(--topbar-height);
  overflow: hidden;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 961;
}

.layout-bc.topbar-hidden .informative-widget {
  display: none;
}

.informative-widget-link {
  align-items: center;
  color: inherit;
  display: flex;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
}

.informative-widget-container {
  overflow: hidden;
  width: 100%;
}

.informative-widget-track {
  animation: winbumMarquee 14s linear infinite;
  display: flex;
  width: max-content;
}

.informative-widget-track span {
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: var(--topbar-height);
  padding-right: 64px;
  white-space: nowrap;
}

.informative-widget-track strong {
  color: #3ecbff;
  font-weight: 700;
}

.informative-widget:hover .informative-widget-track {
  animation-play-state: paused;
}

.topbar-close {
  align-items: center;
  background: linear-gradient(to left, #061433 70%, transparent);
  border: 0;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  font-size: 18px;
  height: 100%;
  justify-content: center;
  line-height: 1;
  padding: 0 12px 0 22px;
  position: relative;
  z-index: 2;
}

@keyframes winbumMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.header-bc {
  background: var(--header);
  box-sizing: border-box;
  height: var(--desktop-header-height);
  max-width: 100%;
  min-width: 0;
  overflow: visible;
  padding: 0 10px;
  position: sticky;
  top: var(--topbar-height);
  width: 100%;
  z-index: 960;
}

.hdr-main-content-bc {
  align-items: center;
  display: flex;
  height: var(--desktop-header-height);
  min-width: 0;
  position: relative;
  width: 100%;
}

.logo {
  align-items: center;
  display: flex;
  flex: 0 1 auto;
  height: var(--desktop-header-height);
  min-width: 0;
}

.hdr-logo-bc {
  display: flex;
  height: 100%;
  max-width: 220px;
  min-width: 0;
  overflow: hidden;
  padding: 4px 0;
}

.hdr-logo-bc img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.hdr-user-bc {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  margin-inline-start: auto;
}

.header-custom-buttons {
  align-items: center;
  display: flex;
}

.btn.a-color {
  background: linear-gradient(-90deg, rgb(24 90 6) 0, rgb(24 115 67) 100%) !important;
  color: #fff !important;
}

.header-icon-text {
  align-items: center;
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  height: 28px !important;
  margin-inline-start: 10px;
  padding: 0 10px !important;
  position: relative;
  text-transform: none;
  white-space: nowrap;
  width: auto;
}

.header-icon-text:after,
.hdr-user-bc .sign-in:after,
.compact-mode:after,
.infoTime:after,
.smartPanel-bc:after {
  background: rgba(var(--menu-sc), 0.22);
  bottom: 0;
  content: "";
  height: 30px;
  left: -10px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 1px;
  z-index: 0;
}

.header-icon-text svg,
.header-icon-text i {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}

.header-icon-text span {
  font-size: 12px;
  line-height: normal;
  margin-inline-start: 5px;
  text-transform: none;
}

.lang-btn.compact-mode,
.infoTime,
.smartPanel-bc {
  flex-shrink: 0;
}

.lang-btn.compact-mode {
  align-items: center;
  background: transparent;
  border: 0;
  color: rgba(var(--header-sc), 0.9);
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.3px;
  margin-inline-start: 20px;
  min-height: 36px;
  padding: 0 10px;
  position: relative;
}

.lang-caret {
  height: 12px;
  opacity: 0.85;
  width: 12px;
}

.lang-flag {
  background: #1b2436;
  border-radius: 0;
  box-shadow: none;
  display: block;
  flex-shrink: 0;
  height: 14px;
  object-fit: cover;
  width: 20px;
}

.infoTime {
  align-items: center;
  background: rgba(var(--header-sc), 0.1);
  border-radius: var(--border-radius);
  color: rgba(var(--header-sc), 1);
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  height: 28px;
  justify-content: center;
  letter-spacing: 0.02em;
  margin-inline-start: 20px;
  min-width: 62px;
  padding: 0 6px;
  position: relative;
}

.smartPanel-bc {
  margin-inline-end: 5px;
  margin-inline-start: 20px;
  position: relative;
}

.hdr-toggle-button-bc {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: var(--border-radius);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 28px;
  justify-content: center;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  width: 34px;
}

.hdr-toggle-button-bc:before {
  background: currentColor;
  border-radius: 50%;
  box-shadow: -5px 0 0 currentColor, 5px 0 0 currentColor;
  content: "";
  height: 3px;
  transition: transform 0.2s ease;
  width: 3px;
}

.hdr-toggle-button-bc:hover {
  background: rgba(255, 255, 255, 0.2);
}

.smart-panel-is-visible .hdr-toggle-button-bc {
  background: #8b95a6;
  color: #1a2438;
}

.hdr-smart-panel-holder-arrow-bc {
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 42px;
  transform: translate(-50%, -4%);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  visibility: hidden;
  z-index: 980;
}

.hdr-smart-panel-holder-arrow-bc:before {
  border-color: transparent transparent #3c4b64;
  border-style: solid;
  border-width: 0 7px 7px;
  content: "";
  left: 50%;
  position: absolute;
  top: -7px;
  transform: translate(-50%, 10px);
  transition: transform 0.2s ease 0.2s;
}

.smart-panel-is-visible .hdr-smart-panel-holder-arrow-bc {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.smart-panel-is-visible .hdr-smart-panel-holder-arrow-bc:before {
  transform: translate(-50%);
}

.hdr-smart-panel-holder-bc {
  background: #3c4b64;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  max-height: 80vh;
  overflow: hidden auto;
  position: relative;
  width: 50px;
  z-index: 1;
}

.sp-button-bc {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 52px;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
}

.sp-button-icon-bc {
  display: block;
  height: 20px;
  width: 20px;
}

.sp-button-bc:hover,
.sp-button-bc.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn {
  align-items: center;
  border: none;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  padding: 0 20px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}

.btn.s-small {
  height: 28px;
  padding: 0 15px;
  width: auto;
}

.btn.sign-in,
.btn.register {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 0;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-inline-start: 20px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  position: relative;
  text-decoration: none !important;
}

.btn.sign-in {
  background: linear-gradient(-90deg, rgb(24 90 6) 0, rgb(24 115 67) 100%) !important;
}

.btn.register {
  animation: textclip 2s linear infinite;
  background: linear-gradient(0deg, rgb(33 187 255) 0, #0a2373 100%) !important;
  background-size: 200% auto !important;
  margin-inline-start: 8px;
}

.btn.register::before,
.btn.sign-in::before {
  background-color: #ffffff !important;
  content: "" !important;
  flex-shrink: 0 !important;
  height: 18px !important;
  mask-position: center !important;
  mask-repeat: no-repeat !important;
  mask-size: contain !important;
  -webkit-mask-position: center !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-size: contain !important;
  width: 18px !important;
}

.btn.register::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM6 10V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") !important;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM6 10V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") !important;
  padding-right: 10px !important;
}

.btn.sign-in::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 17l5-5-5-5v3H3v4h7v3zm9-14H5c-1.1 0-2 .9-2 2v3h2V5h14v14H5v-3H3v3c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") !important;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 17l5-5-5-5v3H3v4h7v3zm9-14H5c-1.1 0-2 .9-2 2v3h2V5h14v14H5v-3H3v3c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") !important;
  padding-right: 5px !important;
}

@keyframes textclip {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 200%;
  }
}

.asideMenuBurger {
  align-items: center;
  background: rgba(var(--b-sc), 0.08);
  border: 1px solid rgba(var(--b-sc), 0.12);
  border-radius: 8px;
  color: rgba(var(--b-sc), 0.85);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  margin-right: 8px;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 40px;
}

.asideMenuBurger-icon {
  display: block;
  height: 24px;
  width: 24px;
}

.asideMenuBurger-icon.is-open {
  display: none;
}

.asideMenuBurger:hover,
.layout-bc.menu-open .asideMenuBurger {
  background: rgba(var(--b-sc), 0.2);
  border-color: rgba(var(--b-sc), 0.15);
}

.layout-bc.menu-open .asideMenuBurger-icon.is-close {
  display: none;
}

.layout-bc.menu-open .asideMenuBurger-icon.is-open {
  display: block;
}

.menu-overlay {
  background: #00000080;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: none;
  inset: var(--header-offset) 0 0;
  position: fixed;
  z-index: 940;
}

.layout-bc.menu-open .menu-overlay {
  animation: openMenuShadow 0.2s ease forwards;
  display: block;
}

@keyframes openMenuShadow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.app-shell {
  display: flex;
  flex: 1;
  max-width: 100%;
  min-width: 0;
}

.asideMenu {
  background: var(--menu);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 8px;
  min-height: calc(100vh - var(--header-offset));
  overflow: hidden auto;
  padding: 16px 16px 24px;
  position: sticky;
  scrollbar-width: none;
  top: var(--header-offset);
  transition: width 0.22s ease;
  width: var(--menu-width);
  z-index: 950;
}

.asideMenu::-webkit-scrollbar {
  display: none;
}

.asideMenuCompact {
  width: var(--menu-width);
}

.asideMenuOpen,
.layout-bc.menu-open .asideMenu {
  background: var(--b);
  box-shadow: 8px 0 28px rgba(0, 0, 0, 0.35);
  height: calc(100vh - var(--header-offset));
  left: 0;
  padding: 16px 16px 32px;
  position: fixed;
  top: var(--header-offset);
  width: 240px;
}

.layout-bc.menu-open .app-shell::before {
  content: "";
  flex-shrink: 0;
  width: var(--menu-width);
}

.asideMenuNavItem {
  isolation: isolate;
  position: relative;
}

.asideMenuNavGradient {
  display: none;
}

.asideMenuCompact > .asideMenuNavItem::before {
  animation: winbum-menu-light 3s linear infinite;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 84%,
    rgba(0, 184, 255, 0.45) 92%,
    #00b8ff 100%
  );
  border-radius: 50%;
  content: "";
  height: 39px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 39px;
  will-change: transform;
  z-index: 3;
}

@keyframes winbum-menu-light {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.asideMenuNavLink {
  align-items: center;
  background: linear-gradient(
    145deg,
    var(--menu-blue-top) 0%,
    var(--menu-blue-mid) 48%,
    var(--menu-blue-bottom) 100%
  );
  border: 1px solid rgba(35, 202, 255, 0.42);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -9px 14px rgba(0, 7, 35, 0.3),
    0 3px 9px rgba(0, 0, 0, 0.32),
    0 0 8px rgba(35, 202, 255, 0.13);
  color: var(--menu-icon);
  display: flex;
  height: 40px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  width: 40px;
}

.asideMenuNavItemIconWrapper {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.asideMenuNavItemIconWrapper img,
.asideMenuNavItemIconWrapper svg,
.asideMenuNavLink svg {
  filter: brightness(1.45) contrast(1.12) drop-shadow(0 0 3px rgba(78, 218, 255, 0.5));
  flex-shrink: 0;
  height: 22px;
  max-height: 22px;
  object-fit: contain;
  width: 22px;
}

.asideMenuOpenNavTitle {
  display: none;
}

.menu-badge {
  display: none;
}

.asideMenuNavLink[aria-current="page"],
.asideMenuNavItem:hover .asideMenuNavLink,
.asideMenuNavItem.active .asideMenuNavLink {
  background: linear-gradient(145deg, #2472ba 0%, #10458c 48%, #092355 100%);
  border-color: #4cddff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -9px 15px rgba(0, 10, 45, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.38),
    0 0 13px rgba(35, 202, 255, 0.48);
}

.asideMenuNavItem:hover {
  transform: translateX(2px);
}

.asideMenuNavItem[data-tip]:hover::after {
  opacity: 1;
}

.asideMenuNavItem[data-tip]::after {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #111;
  content: attr(data-tip);
  font-size: 12px;
  font-weight: 700;
  left: 52px;
  letter-spacing: 0.4px;
  opacity: 0;
  padding: 7px 10px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  top: 6px;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  z-index: 30;
}

.asideMenuNavLink[data-badge]::after {
  border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
  content: "";
  height: 10px;
  position: absolute;
  right: -3px;
  top: -3px;
  width: 10px;
  z-index: 4;
}

.asideMenuNavLink.badge-jackpot::after {
  animation: badge-pulse 1.6s ease-in-out infinite;
  background: linear-gradient(#c4a43a, #7b6418);
}

.asideMenuNavLink.badge-hot::after {
  animation: badge-pulse 1.6s ease-in-out infinite 0.2s;
  background: linear-gradient(#e32020, #b31414);
}

.asideMenuNavLink.badge-tournament::after {
  animation: badge-pulse 1.6s ease-in-out infinite 0.4s;
  background: linear-gradient(#8a6cff, #3b26ac);
}

.asideMenuNavLink.badge-exclusive::after {
  animation: badge-pulse 1.6s ease-in-out infinite 0.6s;
  background: linear-gradient(#53c44c, #186360);
}

.asideMenuNavLink.badge-free::after {
  animation: badge-pulse 1.6s ease-in-out infinite 0.8s;
  background: linear-gradient(#4db7ff, #1077c3);
}

.asideMenuNavLink.badge-promo::after {
  animation: badge-pulse 1.6s ease-in-out infinite 0.5s;
  background: linear-gradient(#2ec7b5, #186360);
}

.asideMenuNavLink.badge-jackpot::before {
  background: linear-gradient(#e8c35a, #7b6418);
  border-radius: 2px 8px 2px 2px;
  color: #fff;
  content: "JACKPOT";
  font-size: 8px;
  font-weight: 700;
  left: -6px;
  letter-spacing: 0.3px;
  line-height: 1;
  max-width: 42px;
  overflow: hidden;
  padding: 2px 5px;
  position: absolute;
  text-overflow: ellipsis;
  top: -7px;
  white-space: nowrap;
  z-index: 5;
}

.asideMenuOpen .asideMenuNavItem::before,
.asideMenuOpen .asideMenuNavItem[data-tip]::after,
.asideMenuOpen .asideMenuNavLink::after,
.asideMenuOpen .asideMenuNavLink.badge-jackpot::before {
  animation: none;
  display: none;
}

.asideMenuOpen .asideMenuNavItem:hover {
  transform: none;
}

.asideMenuOpen .asideMenuNavLink {
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  height: 40px;
  justify-content: flex-start;
  padding: 0 8px;
  width: 208px;
}

.asideMenuOpen .asideMenuNavItemIconWrapper img,
.asideMenuOpen .asideMenuNavItemIconWrapper svg,
.asideMenuOpen .asideMenuNavLink svg {
  filter: none;
  height: 20px;
  max-height: 20px;
  opacity: 0.92;
  width: 20px;
}

.asideMenuOpen .asideMenuNavItem:hover .asideMenuNavLink,
.asideMenuOpen .asideMenuNavItem.active .asideMenuNavLink {
  background: rgba(255, 255, 255, 0.12);
  border-color: transparent;
  box-shadow: none;
}

.asideMenuOpen .asideMenuOpenNavTitle {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  flex: auto;
  font-size: 14px;
  font-weight: 400;
  margin-inline-start: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asideMenuOpen .menu-badge {
  color: #fff;
  display: inline-block;
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-left: 6px;
  padding: 3px 6px;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}

.asideMenuOpen .menu-badge::after {
  border-style: solid;
  border-width: 5px 4px 0 0;
  bottom: -4px;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}

.asideMenuOpen .badge-jackpot .menu-badge {
  background: linear-gradient(#d4b24a, #7b6418);
  border-radius: 4px 4px 2px;
}

.asideMenuOpen .badge-jackpot .menu-badge::after {
  border-color: #7b6418 transparent transparent;
}

.asideMenuOpen .badge-hot .menu-badge {
  background: linear-gradient(#e32020, #b31414);
  border-radius: 4px 4px 2px;
}

.asideMenuOpen .badge-hot .menu-badge::after {
  border-color: #b31414 transparent transparent;
}

.asideMenuOpen .badge-tournament .menu-badge {
  background: linear-gradient(#8a6cff, #3b26ac);
  border-radius: 4px 4px 2px;
}

.asideMenuOpen .badge-tournament .menu-badge::after {
  border-color: #3b26ac transparent transparent;
}

.asideMenuOpen .badge-exclusive .menu-badge {
  background: linear-gradient(#53c44c, #186360);
  border-radius: 4px 4px 2px;
}

.asideMenuOpen .badge-exclusive .menu-badge::after {
  border-color: #186360 transparent transparent;
}

.asideMenuOpen .badge-promo .menu-badge {
  background: linear-gradient(#2ec7b5, #186360);
  border-radius: 4px 4px 2px;
}

.asideMenuOpen .badge-promo .menu-badge::after {
  border-color: #186360 transparent transparent;
}

.asideMenuOpen .badge-free .menu-badge {
  background: linear-gradient(#4db7ff, #1077c3);
  border-radius: 4px 4px 2px;
}

.asideMenuOpen .badge-free .menu-badge::after {
  border-color: #1077c3 transparent transparent;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15), 0 0 6px currentColor;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0), 0 0 10px currentColor;
    transform: scale(1.12);
  }
}

.layout-content-holder-bc {
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px;
  min-width: 0;
  padding: 12px 16px 48px;
  width: 100%;
}

.swiper {
  border-radius: 30px !important;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.swiper-track {
  display: flex;
  transition: transform 0.55s ease;
  width: 100%;
}

.swiper-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.swiper-slide img {
  aspect-ratio: 2500 / 688;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.swiper-arrow {
  align-items: center;
  background: rgba(0, 12, 36, 0.45);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  z-index: 3;
}

.swiper-arrow.prev {
  left: 14px;
}

.swiper-arrow.next {
  right: 14px;
}

.swiper-count {
  background: rgba(0, 12, 36, 0.55);
  border-radius: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  position: absolute;
  right: 16px;
  z-index: 3;
}

.swiper-dots {
  bottom: 12px;
  display: flex;
  gap: 6px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.swiper-dots button {
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  width: 8px;
}

.swiper-dots button.active {
  background: var(--hero);
}

.mid-banner {
  margin: 0 0 18px;
}

.mid-banner a {
  display: block;
}

.mid-banner img {
  border-radius: 12px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-banner-container-bc {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 6px 0 22px;
}

.product-banner-container-bc > div {
  overflow: visible;
  position: relative;
}

.product-banner-bc {
  background: transparent !important;
  border: 0 !important;
  border-radius: 11px !important;
  box-shadow:
    0 0 0 1px rgba(0, 210, 255, 0.42),
    0 8px 22px rgba(0, 0, 0, 0.42),
    0 0 14px rgba(0, 178, 255, 0.22) !important;
  display: block !important;
  filter: drop-shadow(0 0 0 transparent);
  height: 100% !important;
  isolation: isolate;
  margin: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  position: relative !important;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease !important;
  width: 100% !important;
}

.product-banner-bc::before {
  animation: wb-banner-spin 4s linear infinite;
  background: conic-gradient(
    from var(--wb-banner-angle),
    transparent 0% 14%,
    #00e5ff 21%,
    #2878ff 30%,
    transparent 40% 63%,
    #875cff 72%,
    #00d9ff 81%,
    transparent 91% 100%
  );
  border-radius: 14px;
  content: "";
  filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.9));
  inset: -3px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.product-banner-bc::after {
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.24) 47%,
    transparent 63%
  );
  background-position: 150% 0;
  background-size: 260% 100%;
  border-radius: 11px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: background-position 700ms ease;
  z-index: 4;
}

@media (hover: hover) and (pointer: fine) {
  .product-banner-bc:hover {
    filter: saturate(1.12) brightness(1.05);
    transform: translateY(-5px) scale(1.018);
    box-shadow:
      0 0 0 1px rgba(0, 229, 255, 0.8),
      0 14px 28px rgba(0, 0, 0, 0.48),
      0 0 22px rgba(0, 217, 255, 0.55) !important;
  }

  .product-banner-bc:hover::after {
    background-position: -60% 0;
  }
}

.product-banner-img-bc {
  border-radius: 11px !important;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

@keyframes wb-banner-spin {
  to {
    --wb-banner-angle: 360deg;
  }
}

.provider-games {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 4px 0 8px;
}

.featured-play {
  margin: 6px 0 18px;
}

.featured-play-row {
  align-items: stretch;
  gap: 14px;
  padding: 6px 3px 10px;
}

.featured-play-card {
  display: flex;
  flex: 0 0 calc((100% - 70px) / 6);
  flex-direction: column;
  min-width: 0;
  overflow: visible;
  text-decoration: none;
}

.featured-play-frame {
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(0, 210, 255, 0.42),
    0 8px 22px rgba(0, 0, 0, 0.42),
    0 0 14px rgba(0, 178, 255, 0.22);
  display: block;
  isolation: isolate;
  overflow: visible;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.featured-play-frame::before {
  animation: wb-banner-spin 4s linear infinite;
  background: conic-gradient(
    from var(--wb-banner-angle),
    transparent 0% 14%,
    #00e5ff 21%,
    #2878ff 30%,
    transparent 40% 63%,
    #875cff 72%,
    #00d9ff 81%,
    transparent 91% 100%
  );
  border-radius: 19px;
  content: "";
  filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.9));
  inset: -3px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.featured-play-card:nth-child(2n) .featured-play-frame::before {
  animation-delay: -1.3s;
}

.featured-play-card:nth-child(3n) .featured-play-frame::before {
  animation-delay: -2.6s;
}

.featured-play-frame::after {
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.24) 47%,
    transparent 63%
  );
  background-position: 150% 0;
  background-size: 260% 100%;
  border-radius: 16px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: background-position 700ms ease;
  z-index: 4;
}

.featured-play-card img {
  aspect-ratio: 371 / 565;
  border-radius: 16px;
  display: block;
  height: auto;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .featured-play-card:hover .featured-play-frame {
    box-shadow:
      0 0 0 1px rgba(0, 229, 255, 0.8),
      0 14px 28px rgba(0, 0, 0, 0.48),
      0 0 22px rgba(0, 217, 255, 0.55);
    filter: saturate(1.12) brightness(1.05);
    transform: translateY(-4px) scale(1.018);
  }

  .featured-play-card:hover .featured-play-frame::after {
    background-position: -60% 0;
  }
}

@media (max-width: 1100px) {
  .featured-play-card {
    flex-basis: calc((100% - 42px) / 4);
  }
}

@media (max-width: 760px) {
  .featured-play-card {
    flex-basis: calc((100% - 14px) / 2);
  }
}

.games-section,
.provider-games,
main {
  min-width: 0;
  max-width: 100%;
}

.section-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 0 12px;
  min-height: 32px;
}

.section-head h2 {
  color: rgba(var(--b-sc), 0.92);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.games-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.games-nav[hidden] {
  display: none;
}

.games-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  height: 28px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 1px;
  width: 28px;
}

.games-arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.24);
}

.games-arrow:disabled {
  cursor: default;
  opacity: 0.35;
}

.games-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.games-row::-webkit-scrollbar {
  display: none;
}

.game-card {
  background: #000c24;
  border: 0;
  border-radius: 8px;
  display: block;
  flex: 0 0 calc((100% - 72px) / 7);
  overflow: hidden;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.game-card img {
  aspect-ratio: 371 / 565;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.games-row .game-card {
  border-radius: 12px;
}

.games-row .game-card img {
  aspect-ratio: 371 / 565;
  object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
  .game-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(1, 141, 249, 0.28);
    transform: translateY(-6px);
  }
}

.providers-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
  margin-right: 2px;
}

.providers-row {
  gap: 10px;
}

.provider-card {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  flex: 0 0 110px;
  font: inherit;
  height: 64px;
  justify-content: center;
  overflow: hidden;
  padding: 10px 12px;
  position: relative;
  transition: background 0.2s ease;
}

.provider-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.provider-card img {
  display: block;
  filter: brightness(0) invert(1);
  height: 36px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
  width: 100%;
}

.provider-card-title {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.provider-badge {
  border-radius: 8px;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  padding: 3px 5px;
  pointer-events: none;
  position: absolute;
  right: 4px;
  top: 3px;
  white-space: nowrap;
  z-index: 2;
}

.provider-badge.badge-top {
  background: #6e3a85;
}

.provider-badge.badge-hot {
  background: #e32020;
}

.provider-badge.badge-new {
  background: #7f194f;
}

.live-rtp {
  margin: 8px 0 4px;
}

.rtp-periods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.rtp-period {
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 14px;
}

.rtp-period.active {
  background: var(--hero);
  color: #fff;
}

.rtp-cols {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.rtp-panel {
  border-radius: 16px;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  padding: 16px 14px 14px;
  position: relative;
}

.rtp-panel::before,
.rtp-panel::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.rtp-hot {
  background: rgba(28, 10, 8, 0.55);
  border: 1px solid rgba(255, 122, 40, 0.28);
  box-shadow: 0 0 28px rgba(255, 90, 20, 0.12);
}

.rtp-hot::before {
  background: url("../img/rtp/hotBlurEffect.png") center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.rtp-hot::after {
  background: url("../img/rtp/hotElements.png") center bottom / 100% auto no-repeat;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.rtp-cold {
  background: rgba(6, 16, 36, 0.62);
  border: 1px solid rgba(80, 190, 255, 0.28);
  box-shadow: 0 0 28px rgba(40, 160, 255, 0.12);
}

.rtp-cold::before {
  background: url("../img/rtp/coldBlurEffect.png") center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.rtp-cold::after {
  background: url("../img/rtp/coldElements.png") center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.rtp-panel-head,
.rtp-grid,
.rtp-card {
  position: relative;
  z-index: 1;
}

.rtp-panel-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  min-height: 48px;
  padding-right: 4px;
}

.rtp-panel-head h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.rtp-panel-icon {
  filter: drop-shadow(0 0 12px rgba(255, 140, 40, 0.65));
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.rtp-cold .rtp-panel-icon {
  filter: drop-shadow(0 0 12px rgba(80, 190, 255, 0.7));
}

.rtp-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.rtp-card {
  align-items: center;
  background: rgba(8, 14, 32, 0.62);
  border-radius: 10px;
  color: inherit;
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  text-decoration: none;
}

.rtp-thumb {
  border-radius: 8px;
  flex: 0 0 54px;
  height: 54px;
  object-fit: cover;
  width: 54px;
}

.rtp-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.rtp-line {
  align-items: center;
  display: flex;
  gap: 6px;
}

.rtp-pct {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.rtp-trend {
  align-items: center;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  height: 18px;
  justify-content: center;
  line-height: 1;
  width: 18px;
}

.rtp-trend.up {
  background: #f46a16;
}

.rtp-trend.up::before {
  content: "↗";
}

.rtp-trend.down {
  background: #2b86ff;
}

.rtp-trend.down::before {
  content: "↘";
}

.rtp-name {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tournaments-widget {
  margin: 18px 0 8px;
}

.tournaments-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  min-height: 28px;
  padding: 0 2px;
}

.tournaments-title {
  align-items: center;
  color: #e8eef8;
  display: flex;
  gap: 8px;
}

.tournaments-title h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tournaments-all {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  padding: 0;
}

.tournaments-all:hover {
  color: rgba(255, 255, 255, 0.72);
}

.tournaments-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.tournaments-row {
  align-items: center;
  background: #2f3648;
  display: flex;
  gap: 12px;
  min-height: 52px;
  padding: 8px 14px;
  text-decoration: none;
}

.tournaments-row:hover {
  background: #383f54;
}

.tournaments-row img {
  background: #1b2234;
  border-radius: 6px;
  flex-shrink: 0;
  height: 32px;
  object-fit: cover;
  width: 32px;
}

.tournaments-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tournaments-name {
  color: #f3f6fb;
  font-size: 14px;
  font-weight: 500;
}

.tournaments-prize {
  color: #d4b45c;
  font-size: 13px;
  font-weight: 600;
}

.tournaments-widget:not(.is-open) .tournaments-row.extra {
  display: none;
}

.tournaments-more {
  align-items: center;
  background: #2f3648;
  border: 0;
  border-radius: 50%;
  color: #d7e3f7;
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  margin: 14px auto 0;
  width: 36px;
}

.tournaments-more:hover {
  background: #3a4258;
}

.tournaments-widget:not(.is-open) .tournaments-more svg {
  transform: rotate(180deg);
}

.footer-bc {
  background: var(--header);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(var(--b-sc), 0.55);
  flex-shrink: 0;
  margin-top: 28px;
  padding: 36px 20px 40px;
}

.footer-inner {
  margin: 0 auto;
  max-width: 1170px;
}

.footer-cols {
  display: grid;
  gap: 28px 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 36px;
}

.footer-col h3 {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.42);
  display: block;
  font-size: 13px;
  line-height: 1.85;
  text-decoration: none;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.82);
}

.footer-regs {
  text-align: center;
}

.footer-regs h3 {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.footer-seal {
  display: inline-block;
  width: 112px;
}

.footer-seal img {
  display: block;
  height: auto;
  width: 100%;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.55;
  margin: 22px auto 0;
  max-width: 920px;
  padding-top: 18px;
  text-align: center;
}

.footer-social {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 22px;
}

.footer-social a {
  display: block;
  height: 48px;
  width: 48px;
}

.footer-social img {
  display: block;
  height: 100%;
  width: 100%;
}

.footer-payments {
  margin-top: 28px;
}

.footer-payments h3 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}

.footer-payments-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
}

.footer-payments-row img {
  display: block;
  height: 50px;
  width: auto;
}

.search-panel {
  background: #031938;
  border: 1px solid #00b9f2;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.55);
  display: none;
  padding: 12px;
  position: absolute;
  right: 210px;
  top: calc(var(--header-offset) + 8px);
  width: 280px;
  z-index: 980;
}

.search-panel.open {
  display: block;
}

.search-panel input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  outline: none;
  padding: 10px 12px;
  width: 100%;
}

.search-panel input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1100px) {
  .header-icon-text span {
    display: none;
  }

  .game-card {
    flex-basis: calc((100% - 48px) / 5);
  }
}

.hdr-navigation-scrollable-bc-holder {
  display: none;
}

@media (max-width: 860px) {
  .informative-widget-track span {
    font-size: 12px;
  }

  .asideMenu,
  .asideMenuCompact {
    display: none;
  }

  .layout-bc.menu-open .app-shell::before {
    display: none;
  }

  .layout-bc.menu-open .asideMenu,
  .asideMenuOpen,
  .asideMenuCompact.open {
    display: flex;
    height: calc(100dvh - var(--header-offset) - 46px);
    left: 0;
    overflow: auto;
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    position: fixed;
    top: calc(var(--header-offset) + 46px);
    width: 240px;
    z-index: 970;
  }

  .menu-overlay {
    top: calc(var(--header-offset) + 46px);
  }

  .hdr-navigation-scrollable-bc-holder,
  .hdr-navigation-scrollable-bc {
    background: linear-gradient(180deg, #071d59 0%, #051443 100%);
    border: 0;
    border-bottom: 2px solid rgba(25, 183, 255, 0.65);
    border-top: 1px solid rgba(75, 149, 255, 0.25);
    box-shadow:
      0 3px 10px rgba(0, 4, 30, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: block;
    height: 46px;
    overflow: hidden;
    position: sticky;
    top: var(--header-offset);
    width: 100%;
    z-index: 955;
  }

  .hdr-navigation-scrollable-content {
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    display: flex;
    gap: 0;
    height: 46px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 4px;
    scrollbar-width: none;
    width: 100%;
  }

  .hdr-navigation-scrollable-content::-webkit-scrollbar {
    display: none;
  }

  .hdr-navigation-link-bc {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: rgba(229, 238, 255, 0.88);
    display: flex;
    flex: 0 0 auto;
    gap: 4px;
    height: 46px;
    justify-content: center;
    min-width: max-content;
    overflow: visible;
    padding: 5px 10px 0;
    position: relative;
    text-decoration: none;
  }

  .hdr-navigation-link-bc:not(:last-child) {
    border-right: 1px solid rgba(102, 154, 230, 0.1);
  }

  .hdr-navigation-link-bc svg {
    color: #dceaff;
    flex: 0 0 16px;
    filter:
      drop-shadow(0 0 2px rgba(90, 188, 255, 0.65))
      drop-shadow(0 0 5px rgba(38, 116, 255, 0.22));
    height: 15px;
    width: 16px;
  }

  .hdr-navigation-link-bc .nav-menu-title {
    color: rgba(235, 241, 255, 0.9);
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1px;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hdr-navigation-link-bc[data-badge]::after {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
    color: #fff;
    content: attr(data-badge);
    font-size: 6px;
    font-weight: 900;
    height: 10px;
    letter-spacing: 0.45px;
    line-height: 9px;
    padding: 0 4px;
    position: absolute;
    right: 5px;
    text-transform: uppercase;
    top: 1px;
    z-index: 5;
  }

  .hdr-navigation-link-bc.badge-jackpot::after {
    background: linear-gradient(#69696e, #323239);
  }

  .hdr-navigation-link-bc.badge-hot::after {
    background: linear-gradient(#d94a67, #8e213c);
    box-shadow:
      0 0 5px rgba(255, 57, 104, 0.65),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  .hdr-navigation-link-bc.badge-top::after {
    background: linear-gradient(#7b619a, #453453);
  }

  .hdr-navigation-link-bc.badge-exclusive::after {
    background: linear-gradient(#53c44c, #186360);
  }

  .hdr-navigation-link-bc.badge-promo::after {
    background: linear-gradient(#568d79, #315b50);
  }

  .hdr-navigation-link-bc.badge-free::after {
    background: linear-gradient(#4db7ff, #1077c3);
  }

  .hdr-navigation-link-bc.active,
  .hdr-navigation-link-bc[aria-current="page"] {
    background: linear-gradient(180deg, rgba(51, 146, 255, 0.13), rgba(20, 92, 202, 0.04));
    border-bottom: 2px solid #28ceff;
    box-shadow: inset 0 -5px 10px rgba(24, 178, 255, 0.1);
    color: #fff;
  }

  .hdr-navigation-link-bc:active {
    background: rgba(40, 137, 255, 0.14);
    color: #fff;
    filter: brightness(1.18);
  }

  .product-banner-container-bc {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .rtp-cols {
    grid-template-columns: 1fr;
  }

  .game-card {
    flex-basis: calc((100% - 36px) / 4);
  }

  .btn.sign-in,
  .btn.register {
    font-size: 11px !important;
    margin-inline-start: 6px;
    padding-left: 10px !important;
    padding-right: 12px !important;
  }

  .header-bc {
    overflow: hidden;
    padding: 0 6px;
  }

  .asideMenuBurger {
    height: 36px;
    margin-right: 6px;
    width: 36px;
  }

  .asideMenuBurger-icon {
    height: 22px;
    width: 22px;
  }

  .logo {
    flex: 0 0 auto;
    max-width: 132px;
    overflow: hidden;
  }

  .hdr-logo-bc {
    max-width: 132px;
    padding: 6px 0;
    width: auto;
  }

  .search-btn,
  .lang-btn,
  .infoTime,
  .smartPanel-bc {
    display: none;
  }

  .search-panel {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .header-custom-buttons {
    display: flex;
    margin-inline-end: 2px;
  }

  .header-icon-text {
    background: linear-gradient(-90deg, rgb(24 90 6), rgb(24 115 67));
    border-radius: 50%;
    height: 26px;
    justify-content: center;
    margin-inline: 2px;
    min-width: 26px;
    padding: 0;
    width: 26px;
  }

  .header-icon-text:after {
    display: none;
  }

  .header-icon-text svg {
    color: #fff;
    height: 13px;
    width: 13px;
  }

  .wheel-btn {
    height: 26px !important;
    margin: 0 2px !important;
    min-width: 26px !important;
    width: 26px !important;
  }

  .wheel-btn svg {
    height: 18px;
    width: 18px;
  }

  .hdr-user-bc .btn.sign-in,
  .hdr-user-bc .btn.register {
    display: inline-flex !important;
    flex: 0 0 auto;
    font-size: 11px !important;
    height: 28px;
    margin-inline-start: 6px;
    max-width: none;
    min-width: 0;
    padding-left: 8px !important;
    padding-right: 10px !important;
    visibility: visible;
    white-space: nowrap;
    width: auto !important;
  }

  .hdr-user-bc .btn.register::before,
  .hdr-user-bc .btn.sign-in::before {
    height: 13px !important;
    padding-right: 4px !important;
    width: 13px !important;
  }

  .layout-content-holder-bc {
    padding: 0 10px 32px;
  }

  .layout-content-holder-bc > .swiper {
    border-radius: 0 0 16px 16px !important;
    margin-bottom: 12px;
  }

  .product-banner-container-bc {
    gap: 10px;
    padding: 4px 2px;
  }

  .games-nav .games-arrow {
    display: none;
  }

  .swiper {
    border-radius: 0 0 16px 16px !important;
  }
}

@media (max-width: 560px) {
  .game-card {
    flex-basis: calc((100% - 24px) / 3);
  }

  .header-custom-buttons {
    display: flex;
  }

  .header-icon-text span {
    display: none;
  }

  .logo {
    max-width: 120px;
  }

  .hdr-logo-bc {
    max-width: 120px;
  }

  .swiper {
    border-radius: 0 0 14px 14px !important;
  }

  .footer-bc {
    padding: 28px 14px 20px;
  }

  .footer-cols {
    gap: 22px 16px;
  }

  .footer-social a {
    height: 42px;
    width: 42px;
  }

  .footer-payments-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .footer-payments-row::-webkit-scrollbar {
    display: none;
  }

  .footer-payments-row img {
    flex-shrink: 0;
    height: 42px;
  }

  .rtp-pct {
    font-size: 15px;
  }

  .rtp-thumb {
    flex-basis: 48px;
    height: 48px;
    width: 48px;
  }
}

.tab-navigation-w-bc {
  display: none;
}

@media (max-width: 860px) {
  body,
  .layout-bc {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .tab-navigation-w-bc.withToggleNavigation {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(3, 18, 68, 0.98) 0%, rgba(0, 7, 44, 0.99) 100%);
    border: 2px solid #21bbff;
    border-radius: 13px;
    bottom: env(safe-area-inset-bottom, 0px);
    box-shadow:
      0 0 8px rgba(33, 187, 255, 0.85),
      0 0 22px rgba(0, 153, 255, 0.35),
      inset 0 0 18px rgba(17, 95, 210, 0.22);
    box-sizing: border-box;
    display: block;
    height: 76px;
    isolation: isolate;
    left: 4px;
    overflow: visible;
    position: fixed;
    right: 4px;
    width: auto;
    z-index: 980;
  }

  .tab-navigation-w-bc.withToggleNavigation::before {
    animation: wb-nav-light 4s linear infinite;
    background: linear-gradient(90deg, transparent 0%, #21bbff 25%, #fff 50%, #21bbff 75%, transparent 100%);
    background-size: 220% 100%;
    content: "";
    filter: drop-shadow(0 0 5px #21bbff);
    height: 2px;
    left: 15px;
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: -2px;
    z-index: 1;
  }

  .tab-navigation-w-bc.withToggleNavigation::after {
    background: rgba(0, 174, 255, 0.18);
    border-radius: 16px;
    content: "";
    filter: blur(14px);
    inset: -7px 12px -6px;
    pointer-events: none;
    position: absolute;
    z-index: -1;
  }

  .tabNavigationsWrapper,
  .defaultTabNavigation {
    background: transparent;
    height: 74px;
    overflow: visible;
    width: 100%;
  }

  .defaultTabNavigation {
    align-items: end;
    display: grid;
    grid-template-columns: 1fr 1fr 66px 1fr 1fr;
    width: 100%;
  }

  .tab-nav-item-bc {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 9px;
    color: rgba(236, 245, 255, 0.94);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 72px;
    justify-content: center;
    min-width: 0;
    width: 100%;
    overflow: visible;
    padding: 8px 3px 5px;
    position: relative;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, filter 180ms ease, transform 120ms ease;
  }

  .tab-nav-icon-bc {
    color: #dbeeff;
    display: flex;
    filter: drop-shadow(0 0 3px rgba(33, 187, 255, 0.75)) drop-shadow(0 0 8px rgba(0, 104, 255, 0.25));
    height: 23px;
    position: relative;
    width: 23px;
    z-index: 2;
  }

  .tab-nav-icon-bc svg {
    height: 100%;
    width: 100%;
  }

  .tab-nav-title-bc {
    color: inherit;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.15;
    max-width: none;
    min-height: 0;
    overflow: visible;
    position: relative;
    text-align: center;
    text-overflow: unset;
    white-space: normal;
    z-index: 2;
  }

  .layout-bc:not(.navigation-is-visible) .tab-nav-item-bc.active:not(.tab-nav-casino),
  .layout-bc.navigation-is-visible .tab-nav-item-bc.tab-nav-menu {
    background: radial-gradient(circle at 50% 20%, rgba(33, 187, 255, 0.32), rgba(15, 56, 125, 0.08) 68%);
    box-shadow: inset 0 0 16px rgba(33, 187, 255, 0.16), 0 0 9px rgba(33, 187, 255, 0.16);
    color: #fff;
  }

  .tab-nav-item-bc.tab-nav-menu {
    grid-column: 5;
  }

  .tab-nav-item-bc:nth-child(1) { grid-column: 1; }
  .tab-nav-item-bc:nth-child(2) { grid-column: 2; }
  .tab-nav-item-bc.tab-nav-casino { grid-column: 3; }
  .tab-nav-item-bc:nth-child(4) { grid-column: 4; }

  .tab-nav-item-bc.tab-nav-casino {
    background: #21bbff;
    box-sizing: border-box;
    clip-path: polygon(0 4%, 100% 4%, 100% 64%, 82% 83%, 50% 100%, 18% 83%, 0 64%);
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(33, 187, 255, 1)) drop-shadow(0 0 11px rgba(0, 128, 255, 0.72));
    height: 78px;
    isolation: isolate;
    justify-self: center;
    overflow: hidden;
    padding: 21px 4px 9px;
    top: -4px;
    width: 66px;
    z-index: 50;
  }

  .tab-nav-item-bc.tab-nav-casino::before {
    background:
      radial-gradient(circle at 50% 14%, rgba(20, 100, 215, 0.65), transparent 45%),
      linear-gradient(180deg, #082866 0%, #061a49 63%, #020d2c 100%);
    box-shadow: inset 0 0 18px rgba(33, 187, 255, 0.22);
    clip-path: polygon(0 4%, 100% 4%, 100% 64%, 82% 83%, 50% 100%, 18% 83%, 0 64%);
    content: "";
    inset: 2px;
    position: absolute;
    z-index: -1;
  }

  .tab-nav-item-bc.tab-nav-casino::after {
    content: none;
  }

  .tab-nav-crown {
    animation: wb-nav-crown 2.4s ease-in-out infinite;
    color: #55ddff;
    display: block;
    filter: drop-shadow(0 0 3px #21bbff) drop-shadow(0 0 7px rgba(33, 187, 255, 0.75));
    height: 12px;
    left: 50%;
    position: absolute;
    top: 5px;
    transform: translateX(-50%);
    width: 14px;
    z-index: 4;
  }

  .tab-nav-crown svg {
    display: block;
    height: 100%;
    width: 100%;
  }

  .tab-nav-item-bc.tab-nav-casino .tab-nav-icon-bc {
    color: #fff;
    filter: drop-shadow(0 0 4px #21bbff) drop-shadow(0 0 8px rgba(33, 187, 255, 0.75));
    height: 23px;
    width: 23px;
    z-index: 2;
  }

  .tab-nav-item-bc.tab-nav-casino .tab-nav-title-bc {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    max-width: 62px;
    z-index: 2;
  }

  .tab-nav-item-bc.tab-nav-casino.active {
    filter: drop-shadow(0 0 7px rgba(33, 187, 255, 1)) drop-shadow(0 0 16px rgba(0, 136, 255, 0.95));
  }

  .tab-nav-item-bc[data-badge]::after {
    background: #08a9ff;
    border: 1px solid #00163f;
    border-radius: 10px;
    box-shadow: 0 0 5px #08a9ff, 0 0 10px rgba(8, 169, 255, 0.55);
    color: #fff;
    content: attr(data-badge);
    font-size: 8px;
    font-weight: 800;
    height: 16px;
    left: 54%;
    line-height: 14px;
    min-width: 16px;
    padding: 0 3px;
    position: absolute;
    text-align: center;
    top: 8px;
    z-index: 30;
  }

  .tab-nav-item-bc:not(.tab-nav-casino):active {
    transform: scale(0.94);
  }

  .tab-nav-item-bc.tab-nav-casino:active {
    filter: brightness(1.15) drop-shadow(0 0 10px #21bbff);
  }
}

@keyframes wb-nav-light {
  from {
    background-position: 210% 0;
  }
  to {
    background-position: -110% 0;
  }
}

@keyframes wb-nav-crown {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tab-navigation-w-bc.withToggleNavigation::before,
  .tab-nav-crown {
    animation: none;
  }
}

.popup-holder-bc {
  align-items: center;
  background: rgba(0, 0, 0, 0.62);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 2000;
}

.popup-holder-bc[hidden] {
  display: none;
}

.popup-middleware-bc {
  align-items: center;
  display: flex;
  justify-content: center;
  max-height: 100%;
  padding: 20px;
  width: 100%;
}

.entrance-popup-bc.register {
  background: #031938;
  border: 1px solid #00b9f2;
  border-radius: 10px;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(0, 184, 242, 0.08);
  display: flex;
  flex-direction: column;
  height: min(720px, calc(100dvh - 40px));
  max-height: calc(100dvh - 40px);
  max-width: calc(100vw - 40px);
  overflow: hidden;
  position: relative;
  width: 430px;
}

.entrance-popup-bc.register .e-p-content-holder-bc {
  background: #031938;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.entrance-popup-bc.register .e-p-header-bc {
  align-items: center;
  background: #031938;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  height: 60px;
  min-height: 60px;
  padding: 0 16px;
  position: relative;
}

.entrance-popup-bc.register .e-p-logo-bc {
  display: block;
  height: 38px;
  max-width: 140px;
  object-fit: contain;
}

.entrance-popup-bc.register .e-p-section-title-bc {
  align-items: center;
  background: linear-gradient(-90deg, rgb(24 90 6) 0, rgb(24 115 67) 100%);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 157, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  margin-left: auto;
  margin-right: 36px;
  min-height: 30px;
  padding: 0 25px;
}

.entrance-popup-bc.register .e-p-close-icon-bc {
  background: transparent;
  border: 0;
  color: #8394b2;
  cursor: pointer;
  font-size: 22px;
  height: 28px;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 16px;
  width: 28px;
}

.entrance-popup-bc.register .e-p-close-icon-bc:hover {
  color: #fff;
}

.entrance-popup-bc.register .e-p-body-bc {
  background: #031938;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0;
}

.entrance-popup-bc.register #register_form_id {
  background: #031938;
  box-sizing: border-box;
  padding: 14px 14px 0;
}

.entrance-popup-bc.register .sgn-text-row-1-bc {
  color: #8393ac;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 5px;
}

.entrance-popup-bc.register .sgn-text-row-2-bc {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px;
}

.entrance-popup-bc.register .entrance-f-item-bc {
  background: transparent;
  margin: 0 0 10px;
  position: relative;
}

.entrance-popup-bc.register .entrance-f-item-bc input {
  background: #2b3f62;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  height: 44px;
  min-height: 44px;
  outline: none;
  padding: 10px 12px;
  width: 100%;
}

.entrance-popup-bc.register .entrance-f-item-bc.has-icon input[type="text"] {
  padding-right: 40px;
}

.entrance-popup-bc.register .entrance-f-item-bc input::placeholder {
  color: #97a7c0;
  opacity: 1;
}

.entrance-popup-bc.register .entrance-f-item-bc input:focus {
  background: #30476e;
  border-color: #08baf3;
  box-shadow: 0 0 0 2px rgba(8, 186, 243, 0.1);
}

.entrance-popup-bc.register .field-icon {
  color: #a8b9d2;
  display: flex;
  height: 20px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 20px;
}

.entrance-popup-bc.register .field-icon svg {
  display: block;
  height: 20px;
  width: 20px;
}

.entrance-popup-bc.register .date-native {
  height: 0 !important;
  left: 0;
  min-height: 0 !important;
  opacity: 0;
  padding: 0 !important;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 0 !important;
}

.entrance-popup-bc.register .entrance-f-item-checkbox-bc {
  align-items: flex-start;
  color: #d5dce8;
  display: flex;
  font-size: 10px;
  gap: 8px;
  line-height: 1.4;
  margin: 10px 0 4px;
}

.entrance-popup-bc.register .entrance-f-item-checkbox-bc input {
  accent-color: #08baf3;
  flex-shrink: 0;
  height: 14px;
  margin-top: 1px;
  width: 14px;
}

.entrance-popup-bc.register .entrance-f-item-checkbox-bc a {
  color: #fff;
  text-decoration: underline;
}

.entrance-popup-bc.register .reg-form-footer-bc {
  background: #031938;
  flex-shrink: 0;
  margin: 0;
  padding: 12px 14px 0;
}

.entrance-popup-bc.register .btn.register {
  animation: none;
  background: linear-gradient(180deg, #187ae9 0%, #00bbf4 100%) !important;
  background-size: auto !important;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 4px 13px rgba(0, 169, 246, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex !important;
  font-size: 12px;
  font-weight: 800;
  height: 40px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
}

.entrance-popup-bc.register .btn.register::before {
  content: none !important;
  display: none !important;
}

.entrance-popup-bc.register .live-chat-adviser-bc {
  align-items: center;
  background: #031938;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #9caac0;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.2px;
  margin: 0;
  padding: 12px 0 18px;
  text-decoration: underline;
  text-transform: uppercase;
}

.entrance-popup-bc.register .live-chat-adviser-bc svg {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}

.entrance-popup-bc.register .live-chat-adviser-bc:hover {
  color: #fff;
}

.entrance-popup-bc.register .e-p-body-bc::-webkit-scrollbar {
  width: 6px;
}

.entrance-popup-bc.register .e-p-body-bc::-webkit-scrollbar-track {
  background: transparent;
}

.entrance-popup-bc.register .e-p-body-bc::-webkit-scrollbar-thumb {
  background: #4e6282;
  border-radius: 20px;
}

.entrance-popup-bc.sign-in {
  background: #031938;
  border: 1px solid #00b9f2;
  border-radius: 10px;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(0, 184, 242, 0.08);
  max-height: calc(100dvh - 30px);
  max-width: calc(100vw - 30px);
  overflow: hidden;
  position: relative;
  width: 400px;
}

.entrance-popup-bc.sign-in .e-p-content-holder-bc {
  background: #031938;
  display: flex;
  flex-direction: column;
}

.entrance-popup-bc.sign-in .e-p-header-bc {
  align-items: center;
  background: #031938;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 8px;
  height: 70px;
  min-height: 70px;
  padding: 0 16px;
  position: relative;
}

.entrance-popup-bc.sign-in .e-p-logo-bc {
  display: block;
  height: 48px;
  max-height: 75px;
  max-width: 160px;
  object-fit: contain;
}

.entrance-popup-bc.sign-in .e-p-section-title-bc {
  align-items: center;
  background: linear-gradient(180deg, #187ae9 0%, #04bdf5 100%);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 157, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  margin-left: auto;
  margin-right: 42px;
  min-height: 30px;
  padding: 0 14px;
}

.entrance-popup-bc.sign-in .e-p-close-icon-bc {
  background: transparent;
  border: 0;
  color: #8394b2;
  cursor: pointer;
  font-size: 22px;
  height: 28px;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 20px;
  width: 28px;
}

.entrance-popup-bc.sign-in .e-p-close-icon-bc:hover {
  color: #fff;
}

.entrance-popup-bc.sign-in .e-p-body-bc {
  background: #031938;
}

.entrance-popup-bc.sign-in #login_form_id {
  background: #031938;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 20px 15px 18px;
}

.entrance-popup-bc.sign-in .sgn-text-row-1-bc {
  color: #8393ac;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
  text-align: center;
}

.entrance-popup-bc.sign-in .sgn-text-row-2-bc {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
  text-align: center;
}

.entrance-popup-bc.sign-in .entrance-f-item-bc {
  margin: 0 0 14px;
}

.entrance-popup-bc.sign-in .entrance-f-item-bc input {
  background: #283d5d;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  height: 53px;
  outline: none;
  padding: 0 14px;
  transition: 0.2s ease;
  width: 100%;
}

.entrance-popup-bc.sign-in .entrance-f-item-bc input::placeholder {
  color: #8796ad;
  opacity: 1;
}

.entrance-popup-bc.sign-in .entrance-f-item-bc input:hover,
.entrance-popup-bc.sign-in .entrance-f-item-bc input:focus {
  background: #2b4264;
  color: #fff;
}

.entrance-popup-bc.sign-in .entrance-f-item-bc input:focus {
  border-color: #08baf3;
  box-shadow: 0 0 0 2px rgba(8, 186, 243, 0.1);
}

.entrance-popup-bc.sign-in .entrance-f-item-checkbox-bc {
  align-items: center;
  color: #d5dce8;
  display: flex;
  font-size: 13px;
  gap: 8px;
  margin: -2px 0 15px;
}

.entrance-popup-bc.sign-in .entrance-f-item-checkbox-bc input {
  accent-color: #08baf3;
  height: 15px;
  width: 15px;
}

.entrance-popup-bc.sign-in .entrance-form-actions-holder-bc .btn.sign-in {
  animation: none;
  background: linear-gradient(180deg, #1267d7 0%, #00bbf4 100%) !important;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 4px 13px rgba(0, 169, 246, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  height: 38px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  transition: 0.2s ease;
  width: 100%;
}

.entrance-popup-bc.sign-in .entrance-form-actions-holder-bc .btn.sign-in::before {
  content: none !important;
  display: none !important;
}

.entrance-popup-bc.sign-in .entrance-form-actions-holder-bc .btn.sign-in:hover {
  box-shadow: 0 5px 17px rgba(0, 179, 255, 0.32);
  filter: brightness(1.1);
}

.entrance-popup-bc.sign-in .sgn-f-forgot-password-text {
  background: transparent;
  border: 0;
  color: #bec9da;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  margin: 32px 0 18px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

.entrance-popup-bc.sign-in .sgn-f-forgot-password-text:hover {
  color: #fff;
}

.entrance-popup-bc.sign-in .live-chat-adviser-bc {
  align-items: center;
  color: #7eb6d9;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
  padding: 14px 0 2px;
  text-decoration: underline;
  text-transform: uppercase;
}

.entrance-popup-bc.sign-in .live-chat-adviser-bc svg {
  height: 16px;
  width: 16px;
}

.entrance-popup-bc.sign-in .live-chat-adviser-bc:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .popup-holder-bc {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .popup-middleware-bc {
    align-items: center;
    min-height: 100%;
    padding: 8px;
  }

  .entrance-popup-bc.register {
    height: auto;
    max-height: calc(100dvh - 16px);
    max-width: 420px;
    width: calc(100vw - 16px);
  }

  .entrance-popup-bc.register .e-p-header-bc {
    height: 54px;
    min-height: 54px;
    padding: 0 20px;
  }

  .entrance-popup-bc.register .e-p-logo-bc {
    height: auto;
    max-height: 34px;
    max-width: 128px;
  }

  .entrance-popup-bc.register .e-p-section-title-bc {
    flex-shrink: 0;
    font-size: 12px;
    height: 32px;
    margin-right: 28px;
    min-height: 32px;
    padding: 0 14px;
    transform: none;
  }

  .entrance-popup-bc.register .e-p-close-icon-bc {
    right: 11px;
    top: 13px;
  }

  .entrance-popup-bc.register .e-p-body-bc {
    max-height: none;
  }

  .entrance-popup-bc.register #register_form_id {
    padding: 12px 12px 0;
  }

  .entrance-popup-bc.register .sgn-text-row-1-bc {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .entrance-popup-bc.register .sgn-text-row-2-bc {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .entrance-popup-bc.register .entrance-f-item-bc {
    margin-bottom: 8px;
  }

  .entrance-popup-bc.register .entrance-f-item-bc input {
    font-size: 16px;
    height: 42px;
    min-height: 42px;
  }

  .entrance-popup-bc.register .reg-form-footer-bc {
    padding: 10px 12px 0;
  }

  .entrance-popup-bc.register .btn.register {
    font-size: 18px;
    height: 50px;
  }

  .entrance-popup-bc.register .live-chat-adviser-bc {
    font-size: 10px;
    padding: 9px 0 14px;
  }

  .entrance-popup-bc.sign-in {
    max-height: calc(100dvh - 16px);
    max-width: 400px;
    width: calc(100vw - 16px);
  }

  .entrance-popup-bc.sign-in .e-p-header-bc {
    height: 62px;
    min-height: 62px;
    padding: 0 14px;
  }

  .entrance-popup-bc.sign-in .e-p-logo-bc {
    height: 40px;
    max-width: 140px;
  }

  .entrance-popup-bc.sign-in .e-p-section-title-bc {
    flex-shrink: 0;
    margin-right: 28px;
    padding: 0 12px;
  }

  .entrance-popup-bc.sign-in .e-p-close-icon-bc {
    right: 10px;
    top: 16px;
  }

  .entrance-popup-bc.sign-in #login_form_id {
    padding: 16px 14px 14px;
  }

  .entrance-popup-bc.sign-in .entrance-f-item-bc input {
    font-size: 16px;
    height: 48px;
  }

  .entrance-popup-bc.sign-in .sgn-f-forgot-password-text {
    margin: 20px 0 12px;
  }
}

@media (max-width: 400px) {
  .logo {
    max-width: 110px;
  }

  .hdr-logo-bc {
    max-width: 110px;
  }

  .header-icon-text,
  .wheel-btn {
    height: 24px !important;
    min-width: 24px !important;
    width: 24px !important;
  }

  .hdr-user-bc .btn.sign-in::before,
  .hdr-user-bc .btn.register::before {
    display: none !important;
  }

  .hdr-user-bc .btn.sign-in,
  .hdr-user-bc .btn.register {
    font-size: 10px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .tab-nav-title-bc {
    font-size: 11px;
    letter-spacing: 0.15px;
    max-width: none;
  }

  .entrance-popup-bc.register .e-p-header-bc {
    height: 50px;
    min-height: 50px;
    padding: 0 10px;
  }

  .entrance-popup-bc.register .e-p-logo-bc {
    max-width: 118px;
  }

  .entrance-popup-bc.register .e-p-section-title-bc {
    font-size: 11px;
    height: 26px;
    min-height: 26px;
    padding: 0 14px;
  }

  .popup-middleware-bc {
    padding: 5px;
  }

  .entrance-popup-bc.register,
  .entrance-popup-bc.sign-in {
    width: calc(100vw - 10px);
  }
}

.casino-page {
  padding-top: 10px;
}

@media (max-width: 860px) {
  .casino-page,
  .promotion-page {
    padding-top: 0;
  }
}

.casino-cats-wrap {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
  min-width: 0;
}

.casino-cats {
  display: flex;
  flex: 1;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: none;
}

.casino-cats::-webkit-scrollbar {
  display: none;
}

.casino-cats-next,
.casino-cats-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 22px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}

.casino-cats-arrow:disabled {
  cursor: default;
  opacity: 0.35;
}

.casino-cat {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid transparent;
  border-radius: 22px;
  color: rgba(229, 238, 255, 0.78);
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  white-space: nowrap;
}

.casino-cat svg {
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}

.casino-cat.active {
  background: rgba(1, 141, 249, 0.12);
  border-color: #21bbff;
  box-shadow: 0 0 14px rgba(33, 187, 255, 0.28);
  color: #fff;
}

.casino-toolbar {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  min-width: 0;
}

.casino-search {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 22px;
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  min-width: 0;
  padding: 0 16px;
}

.casino-search svg {
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}

.casino-search input {
  background: transparent;
  border: 0;
  color: #fff;
  flex: 1;
  font-family: inherit;
  font-size: 14px;
  height: 40px;
  min-width: 0;
  outline: none;
}

.casino-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.casino-games-section {
  margin-top: 8px;
}

.casino-random:hover,
.casino-prov-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.casino-random,
.casino-prov-btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  white-space: nowrap;
}

.casino-prov-btn svg {
  height: 16px;
  width: 16px;
}

.casino-prov-wrap {
  position: relative;
}

.casino-prov-menu {
  background: #0c1d41;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  min-width: 180px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
}

.casino-prov-menu[hidden] {
  display: none;
}

.casino-prov {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  text-align: left;
}

.casino-prov.active,
.casino-prov:hover {
  background: rgba(33, 187, 255, 0.16);
  color: #fff;
}

.casino-count {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin: 0 0 14px;
}

.casino-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.casino-grid .game-card {
  flex: none;
  width: 100%;
}

.casino-game-name {
  background: linear-gradient(180deg, transparent, rgba(0, 8, 28, 0.88));
  bottom: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 18px 8px 8px;
  position: absolute;
  right: 0;
  text-overflow: ellipsis;
  transition: opacity 0.18s ease;
  white-space: nowrap;
  z-index: 1;
}

.casino-play {
  background: linear-gradient(180deg, #21bbff, #0870d8);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(1, 141, 249, 0.4);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  left: 50%;
  letter-spacing: 0.06em;
  opacity: 0;
  padding: 7px 16px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -40%);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 2;
}

.casino-games-row .game-card::before,
.casino-grid .game-card::before {
  background: rgba(0, 8, 28, 0.38);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.18s ease;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .casino-games-row .game-card:hover .casino-game-name,
  .casino-games-row .game-card:hover .casino-play,
  .casino-games-row .game-card:hover::before,
  .casino-grid .game-card:hover .casino-game-name,
  .casino-grid .game-card:hover .casino-play,
  .casino-grid .game-card:hover::before {
    opacity: 1;
  }

  .casino-games-row .game-card:hover .casino-play,
  .casino-grid .game-card:hover .casino-play {
    transform: translate(-50%, -50%);
  }
}

.casino-games-row .game-card.hidden,
.casino-grid .game-card.hidden {
  display: none;
}

.casino-empty {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 28px 0;
  text-align: center;
}

@media (max-width: 1100px) {
  .casino-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .casino-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .casino-toolbar {
    flex-wrap: wrap;
  }

  .casino-search {
    flex: 1 1 100%;
  }
}

@media (max-width: 560px) {
  .casino-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .casino-cat {
    font-size: 12px;
    height: 36px;
    padding: 0 12px;
  }

  .casino-random {
    flex: 1 1 auto;
  }

  .casino-game-name {
    opacity: 1;
  }

  .casino-play,
  .casino-games-row .game-card::before,
  .casino-grid .game-card::before {
    display: none;
  }
}

.live-games-row {
  flex-wrap: wrap;
  overflow: visible;
}

.live-games-row .game-card {
  flex: 0 0 calc((100% - 48px) / 5);
}

.live-games-row .game-card img {
  aspect-ratio: 3 / 4;
  background: #000814;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1100px) {
  .live-games-row .game-card {
    flex: 0 0 calc((100% - 36px) / 4);
  }
}

@media (max-width: 860px) {
  .live-games-row .game-card {
    flex: 0 0 calc((100% - 24px) / 3);
  }
}

@media (max-width: 560px) {
  .live-games-row .game-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@property --wb-promo-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.promotion-page {
  min-width: 0;
  padding-top: 4px;
}

.promotion-horizontal-sl-list-bc {
  display: flex;
  gap: 5px;
  margin: 12px 0 8px;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
}

.promotion-horizontal-sl-list-bc::-webkit-scrollbar {
  display: none;
}

.promotion-horizontal-sl-list-bc .horizontal-sl-item-bc {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(229, 238, 255, 0.55);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: inherit;
  gap: 8px;
  height: 38px;
  padding: 0 12px;
  text-transform: uppercase;
}

.promotion-horizontal-sl-list-bc .horizontal-sl-icon-bc {
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}

.promotion-horizontal-sl-list-bc .horizontal-sl-title-bc {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.promotion-horizontal-sl-list-bc .horizontal-sl-item-bc:hover {
  background: rgba(1, 141, 249, 0.16);
  color: #fff;
}

.promotion-horizontal-sl-list-bc .horizontal-sl-item-bc.active {
  background: rgba(1, 141, 249, 0.12);
  border-color: #21bbff;
  box-shadow: 0 0 14px rgba(33, 187, 255, 0.28);
  color: #fff;
}

.promotionsListEl-bc.hidden {
  display: none;
}

.promo-empty {
  color: rgba(255, 255, 255, 0.5);
  display: none;
  font-size: 14px;
  grid-column: 1 / -1;
  margin: 28px 0;
  text-align: center;
}

.promo-empty.is-visible {
  display: block;
}

.promotionsList-bc {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
  padding: 10px 0 24px;
}

.promotionsListEl-bc {
  --wb-promo-delay: 0s;
  background: linear-gradient(180deg, rgba(10, 35, 80, 0.98), rgba(4, 14, 38, 0.98));
  border: 1px solid rgba(0, 213, 255, 0.3);
  border-radius: 12px;
  box-shadow:
    inset 0 0 16px rgba(0, 190, 255, 0.1),
    0 8px 22px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(0, 190, 255, 0.2);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.promotionsListEl-bc:nth-child(3n + 2) {
  --wb-promo-delay: -1.6s;
}

.promotionsListEl-bc:nth-child(3n) {
  --wb-promo-delay: -3.2s;
}

.promotionsListEl-bc::before {
  animation: wb-promo-frame-spin 5s linear infinite;
  animation-delay: var(--wb-promo-delay);
  background: conic-gradient(from var(--wb-promo-angle), transparent 0% 10%, #00e5ff 17%, #2878ff 26%, transparent 35% 56%, #875cff 65%, #00d9ff 74%, transparent 84% 100%);
  border-radius: inherit;
  content: "";
  filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.75));
  inset: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 2px;
  pointer-events: none;
  position: absolute;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  z-index: 5;
}

.promotionsListEl-bc::after {
  animation: wb-promo-light-sweep 6.5s ease-in-out infinite;
  animation-delay: var(--wb-promo-delay);
  background: linear-gradient(110deg, transparent 25%, rgba(63, 204, 255, 0.08) 38%, rgba(255, 255, 255, 0.34) 48%, rgba(126, 92, 255, 0.12) 57%, transparent 69%);
  background-position: 160% 0;
  background-size: 300% 100%;
  border-radius: inherit;
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.promotionsArticleThumbnail-bc {
  border-radius: 11px 11px 0 0;
  display: block;
  filter: saturate(1.07) contrast(1.035) brightness(1.01);
  height: auto;
  object-fit: cover;
  position: relative;
  transform: scale(1.001);
  transition: transform 550ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 350ms ease;
  width: 100%;
  z-index: 1;
}

.promotions-article-title {
  background: linear-gradient(90deg, #061633 0%, #0a2c68 48%, #071a42 100%);
  background-size: 200% 100%;
  box-shadow: inset 0 1px 0 rgba(73, 213, 255, 0.35), inset 0 8px 18px rgba(27, 114, 220, 0.1);
  color: rgba(240, 249, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  height: 34px;
  letter-spacing: 0.15px;
  line-height: 34px;
  margin: 1px 0 0;
  padding: 0 12px;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75), 0 0 7px rgba(0, 199, 255, 0.2);
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .promotionsListEl-bc:hover {
    border-color: rgba(88, 228, 255, 0.78);
    box-shadow:
      inset 0 0 22px rgba(0, 210, 255, 0.15),
      0 15px 32px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(0, 229, 255, 0.45),
      0 0 24px rgba(0, 203, 255, 0.48);
    transform: translateY(-7px) scale(1.015);
    z-index: 10;
  }

  .promotionsListEl-bc:hover .promotionsArticleThumbnail-bc {
    filter: saturate(1.18) contrast(1.06) brightness(1.07);
    transform: scale(1.055);
  }

  .promotionsListEl-bc:hover .promotions-article-title {
    background-position: 100% 0;
    color: #fff;
  }
}

@keyframes wb-promo-frame-spin {
  to {
    --wb-promo-angle: 360deg;
  }
}

@keyframes wb-promo-light-sweep {
  0%,
  54% {
    background-position: 160% 0;
    opacity: 0;
  }
  76% {
    background-position: -65% 0;
    opacity: 0.85;
  }
  84%,
  100% {
    background-position: -65% 0;
    opacity: 0;
  }
}

.promotion-details-popup .popup-inner-bc {
  background: #000c24;
  border: 1px solid rgba(0, 213, 255, 0.28);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  height: min(90vh, 820px);
  max-width: calc(100vw - 24px);
  overflow: hidden;
  width: min(1340px, calc(100vw - 24px));
}

.back-nav-bc {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  height: 49px;
  padding: 0 12px;
}

.back-nav-btn {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 0 6px;
}

.back-nav-title-bc-h1 {
  color: #fff;
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  min-width: 0;
}

.promo-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.promotion-details-container {
  display: grid;
  flex: 1;
  gap: 0;
  grid-template-columns: 400px minmax(0, 1fr);
  min-height: 0;
  padding: 15px;
}

.promotion-details-header {
  min-width: 0;
}

.promotion-details-img {
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.promotion-details-info {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
  min-height: 0;
  overflow: auto;
  padding-left: 20px;
  -webkit-user-select: text;
  user-select: text;
}

.promotion-details-info .accordion {
  background: transparent;
  display: grid;
  gap: 8px;
  width: 100%;
}

.promotion-details-info .accordion details {
  background: linear-gradient(110deg, rgba(7, 31, 72, 0.3), rgba(13, 38, 84, 0.16), rgba(25, 18, 78, 0.18));
  border: 1px solid rgba(72, 210, 255, 0.25);
  border-radius: 11px;
  overflow: hidden;
}

.promotion-details-info .accordion summary {
  color: #a9e9ff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  padding: 15px 18px;
}

.promotion-details-info .accordion summary::-webkit-details-marker {
  display: none;
}

.promotion-details-info .accordion .content,
.promotion-details-info .accordion details > *:not(summary) {
  color: #c9eaff;
  font-size: 15px;
  line-height: 1.75;
  padding: 0 18px 16px;
}

.promotion-details-info a {
  color: #79e8ff;
}

.promotion-details-info img {
  max-width: 100%;
}

body.promo-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .promotionsList-bc {
    grid-template-columns: 1fr;
    padding: 10px 7px 24px;
  }

  .promotionsListEl-bc {
    border-radius: 9px;
  }

  .promotions-article-title {
    font-size: 12px;
  }

  .promotion-details-popup .popup-middleware-bc {
    padding: 8px;
  }

  .promotion-details-popup .popup-inner-bc {
    height: min(96dvh, 100%);
    max-width: none;
    width: 100%;
  }

  .promotion-details-container {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .promotion-details-info {
    padding-left: 0;
    padding-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promotionsListEl-bc::before,
  .promotionsListEl-bc::after {
    animation: none;
  }
}

.casino-more {
  background: rgba(33, 187, 255, 0.16);
  border: 0;
  border-radius: 22px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  margin: 18px auto 8px;
  padding: 10px 22px;
}

.casino-more[hidden] {
  display: none;
}

.casino-grid.live-casino-grid .game-card img,
.live-games-row .game-card img {
  aspect-ratio: 3 / 4;
  background: #000814;
  object-fit: contain;
  object-position: center;
}

.provider-card .provider-name {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  height: 64px;
  justify-content: center;
  padding: 8px;
  text-align: center;
}

body.game-open .layout-bc,
body.game-open .header-bc,
body.game-open .asideMenu,
body.game-open .tab-navigation-w-bc,
body.game-open .informative-widget,
body.game-open .layout-content-holder-bc {
  pointer-events: none;
  visibility: hidden;
}

.game-overlay {
  background: #000;
  height: 100dvh;
  inset: 0;
  position: fixed;
  width: 100vw;
  z-index: 5000;
}

.game-overlay[hidden] {
  display: none !important;
}

.game-overlay:not([hidden]),
.game-overlay.is-open {
  display: flex;
  flex-direction: column;
}

.game-overlay-bar {
  align-items: center;
  background: #07122c;
  display: flex;
  flex: 0 0 48px;
  gap: 12px;
  height: 48px;
  padding: 0 12px;
}

.game-overlay-bar button {
  background: #21bbff;
  border: 0;
  border-radius: 16px;
  color: #041226;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
}

.game-overlay-bar strong {
  color: #fff;
  flex: 1;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-overlay-bal {
  color: #9fe3ff;
  font-size: 13px;
  font-weight: 700;
}

.game-overlay iframe {
  background: #000;
  border: 0;
  display: block;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  width: 100%;
}

.play-page {
  min-height: 40vh;
}

.play-loading {
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 16px;
  text-align: center;
}

html.sportsbook-open,
body.sportsbook-open {
  height: 100%;
  overflow: hidden;
}

body.sportsbook-open {
  padding-bottom: 0 !important;
}

body.sportsbook-open .layout-bc {
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0 !important;
}

body.sportsbook-open .app-shell {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

body.sportsbook-open .asideMenu {
  height: 100%;
  max-height: 100%;
  min-height: 0;
}

body.sportsbook-open .layout-content-holder-bc.sportsbook-page {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 100%;
  max-width: none;
  min-height: 0;
  min-width: 0;
  padding: 0;
}

.sportsbook-page {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sportsbook-frame {
  background: #070b16;
  border: 0;
  display: block;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  width: 100%;
}

@media (max-width: 860px) {
  body.sportsbook-open .layout-bc {
    height: calc(100dvh - 80px - env(safe-area-inset-bottom, 0px));
    padding-bottom: 0 !important;
  }
}

.bonus-talep-page {
  padding-top: 8px;
}

.bonus-talep-head {
  margin: 8px 0 18px;
}

.bonus-talep-head h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}

.bonus-talep-head p {
  color: rgba(220, 231, 255, 0.7);
  margin: 0;
  max-width: 640px;
}

.bonus-talep-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.bonus-talep-card {
  background: linear-gradient(180deg, rgba(10, 35, 80, 0.98), rgba(4, 14, 38, 0.98));
  border: 1px solid rgba(0, 213, 255, 0.3);
  border-radius: 12px;
  box-shadow:
    inset 0 0 16px rgba(0, 190, 255, 0.1),
    0 8px 22px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  padding: 16px;
}

.bonus-talep-visual {
  border-radius: 10px;
  margin: -4px -4px 2px;
  overflow: hidden;
}

.bonus-talep-visual img {
  display: block;
  height: auto;
  width: 100%;
}

.bonus-talep-card-top {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.bonus-talep-card h2 {
  color: #fff;
  font-size: 17px;
  margin: 0;
}

.bonus-talep-card-top strong {
  color: #21bbff;
  font-size: 18px;
  white-space: nowrap;
}

.bonus-talep-card p {
  color: rgba(220, 231, 255, 0.72);
  font-size: 13px;
  margin: 0;
}

.bonus-talep-note {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: rgba(220, 231, 255, 0.75);
  font-size: 13px;
  padding: 8px 10px;
}

.bonus-talep-note.ok {
  background: rgba(24, 217, 49, 0.12);
  color: #9ff0aa;
}

.bonus-talep-card .btn,
.bonus-talep-card form {
  margin-top: auto;
  width: 100%;
}

.bonus-talep-card .btn {
  align-self: stretch;
  text-align: center;
  width: 100%;
}

.bonus-talep-empty {
  color: rgba(255, 255, 255, 0.5);
  padding: 28px 4px;
}

.bonus-talep-history {
  margin-top: 28px;
}

.bonus-talep-history h2 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 12px;
}

.bonus-talep-table-wrap {
  overflow-x: auto;
}

.bonus-talep-table {
  border-collapse: collapse;
  width: 100%;
}

.bonus-talep-table th,
.bonus-talep-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 8px;
  text-align: left;
}

.bonus-talep-table th {
  color: rgba(220, 231, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.bonus-st {
  border-radius: 999px;
  display: inline-block;
  font-size: 12px;
  padding: 3px 8px;
}

.bonus-st.is-approved {
  background: rgba(24, 217, 49, 0.16);
  color: #9ff0aa;
}

.bonus-st.is-pending {
  background: rgba(255, 215, 0, 0.14);
  color: #ffe38a;
}

.bonus-st.is-rejected {
  background: rgba(255, 80, 80, 0.14);
  color: #ffb3b3;
}

.wheel-page {
  padding-bottom: 48px;
  padding-top: 8px;
}

.wheel-head {
  margin: 8px 0 20px;
  text-align: center;
}

.wheel-head h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.wheel-head p {
  color: rgba(220, 231, 255, 0.7);
  margin: 0 auto 12px;
  max-width: 520px;
}

.wheel-rights {
  background: rgba(33, 187, 255, 0.12);
  border: 1px solid rgba(33, 187, 255, 0.4);
  border-radius: 999px;
  color: #dce7ff;
  display: inline-block;
  font-size: 14px;
  padding: 6px 14px;
}

.wheel-rights strong {
  color: #21bbff;
}

.wheel-stage {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 10px 0 8px;
  position: relative;
}

.wheel-glow {
  background: radial-gradient(circle, rgba(33, 187, 255, 0.28) 0%, rgba(12, 29, 65, 0) 68%);
  height: 420px;
  pointer-events: none;
  position: absolute;
  top: 10px;
  width: 420px;
}

.wheel-pointer {
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 26px solid #ffd700;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.65));
  height: 0;
  position: relative;
  width: 0;
  z-index: 3;
}

.wheel-pointer::after {
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #0c1d41;
  content: "";
  height: 10px;
  left: -5px;
  position: absolute;
  top: -30px;
  width: 10px;
}

.wheel-wrap {
  background: radial-gradient(circle at 50% 50%, #12366e 0%, #071433 70%);
  border: 8px solid #21bbff;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(7, 20, 51, 0.9),
    0 0 28px rgba(33, 187, 255, 0.35),
    inset 0 0 24px rgba(0, 0, 0, 0.35);
  height: min(420px, 86vw);
  margin-top: -6px;
  overflow: hidden;
  position: relative;
  width: min(420px, 86vw);
}

.wheel-disk {
  height: 100%;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  width: 100%;
  will-change: transform;
}

.wheel-disk svg {
  display: block;
  height: 100%;
  width: 100%;
}

.wheel-hub {
  align-items: center;
  background: radial-gradient(circle, #1b518f 0%, #071a43 72%);
  border: 4px solid #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.35);
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 78px;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.08em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
}

.wheel-spin-btn {
  align-items: center;
  background: linear-gradient(180deg, #ffe38a 0%, #c9a227 55%, #8a6d12 100%);
  border: 0;
  border-radius: 999px;
  box-shadow:
    0 8px 22px rgba(201, 162, 39, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #2a1d00;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.12em;
  margin-top: 22px;
  min-width: 180px;
  padding: 12px 36px;
  text-decoration: none;
}

.wheel-spin-btn:hover:not(:disabled) {
  filter: brightness(1.06);
}

.wheel-spin-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.wheel-hint {
  color: rgba(220, 231, 255, 0.7);
  font-size: 13px;
  margin: 12px 0 0;
  text-align: center;
}

.wheel-prizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 22px 0 8px;
}

.wheel-prizes div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(33, 187, 255, 0.22);
  border-radius: 8px;
  color: #dce7ff;
  font-size: 13px;
  padding: 7px 10px;
}

.wheel-history {
  margin: 28px auto 0;
  max-width: 520px;
}

.wheel-history h2 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 10px;
}

.wheel-history ul {
  list-style: none;
}

.wheel-history li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  padding: 9px 2px;
}

.wheel-empty {
  color: rgba(255, 255, 255, 0.5);
}

.wheel-result {
  align-items: center;
  background: rgba(3, 10, 28, 0.72);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 2400;
}

.wheel-result[hidden] {
  display: none !important;
}

.wheel-result-card {
  background: linear-gradient(180deg, #12366e, #071433);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  max-width: 360px;
  padding: 28px 22px 22px;
  text-align: center;
  width: calc(100% - 32px);
}

.wheel-result-card p {
  color: rgba(220, 231, 255, 0.7);
  margin: 0 0 8px;
}

.wheel-result-card strong {
  color: #ffd700;
  display: block;
  font-size: 28px;
  margin-bottom: 18px;
}

.call-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 48px;
  padding-top: 8px;
}

.call-head {
  margin: 8px 0 20px;
  max-width: 560px;
  text-align: center;
  width: 100%;
}

.call-head h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}

.call-head p {
  color: rgba(220, 231, 255, 0.7);
  margin: 0;
}

.call-success {
  background: rgba(24, 217, 49, 0.12);
  border: 1px solid rgba(24, 217, 49, 0.35);
  border-radius: 12px;
  color: #9ff0aa;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 560px;
  padding: 14px 16px;
  width: 100%;
}

.call-form {
  background: linear-gradient(180deg, rgba(10, 35, 80, 0.98), rgba(4, 14, 38, 0.98));
  border: 1px solid rgba(0, 213, 255, 0.3);
  border-radius: 14px;
  display: grid;
  gap: 14px;
  max-width: 560px;
  padding: 20px;
  width: 100%;
}

.call-form label {
  color: #dce7ff;
  display: grid;
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
}

.call-form input,
.call-form textarea {
  background: rgba(0, 12, 36, 0.65);
  border: 1px solid rgba(33, 187, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  font: inherit;
  padding: 10px 12px;
}

.call-form input:focus,
.call-form textarea:focus {
  border-color: #21bbff;
  outline: none;
}

.call-submit {
  justify-self: start;
  margin-top: 4px;
  padding: 10px 18px;
}
