:root {
  --theme-fill: #0a0e1a;
  --theme-tile-background: #101420;
  --surface-alt: #191d29;
  --ui-main: #2dd4a8;
  --hover-main: #53face;
  --alt: #02a68e;
  --theme-copy: #e8e6e3;
  --ui-dim-label: #9a9a9a;
  --theme-highlight: #00bb37;
  --bonus-btn-grad-top-area: #2dd4a8;
  --beonbet-promo-button-grad-bottom-area: color-mix(in srgb, #2dd4a8, #000 20%);
  --beonbet-border-line: #202430;
  --blend: linear-gradient(180deg,  #2dd4a8 0%, #02a68e 100%);
  --beonbet-halo: rgba(255,255,255,0.1);
  --halo-strong: rgba(255,255,255,0.2);
  --headline-font: 'Inter','Helvetica Neue',Arial,sans-serif;
  --font-base: 'Inter','Helvetica Neue',Arial,sans-serif;
  --area-pad: 7rem 2.5rem;
  --beonbet-tile-padding: 2.5rem;
  --ui-spacing: 2.2rem;
  --theme-radius: 14px;
  --card-corner: 20px;
  --beonbet-glass-background: #101420;
  --sheen-outline: #202430;
  --ui-frosted-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  --button-copy: #0b0605;
  --topbar-h: 64px;
  --ui-site-header-surface: var(--theme-fill);
  --beonbet-site-header-copy: var(--theme-copy);
  --theme-masthead-label-subtle: var(--ui-dim-label);
  --site-header-chip-surface: var(--surface-alt);
  --beonbet-page-header-tag-border: var(--beonbet-border-line);
  --site-header-action-background: var(--theme-highlight);
  --ui-site-header-button-label: #fff;
  --topbar-bonus-fill: #009900;
  --theme-topbar-bonus-copy: #fff;
  --ui-aside-width: 64px;
  --text-content-accent-color: #fff
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%
}
body {
  font-family: var(--font-base);
  background: var(--theme-fill);
  color: var(--theme-copy);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--topbar-h)
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headline-font);
  line-height: 1.15
}
a {
  color: var(--ui-main);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--hover-main)
}
@keyframes shimmer {
  0% {
    background-position: 200% center
  }
  100% {
    background-position: -200% center
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-6px)
  }
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 15px var(--beonbet-halo)
  }
  50% {
    box-shadow: 0 0 28px var(--halo-strong)
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.header-burger-open span:first-child {
  transform: translateY(7px) rotate(45deg)
}
.header-burger-open span:nth-child(2) {
  opacity: 0
}
.header-burger-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}
@media (max-width:768px) {
  .header-nav-open {
    display: flex!important
  }
}
.widget-zone.alt-area {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--ui-aside-width,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.site-side-panel-core {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.colophon-top-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}
.colophon-brand {
  display: flex;
  align-items: center;
  gap: .5rem
}
.site-footer-logo-wrapper {
  height: 30px;
  width: auto
}
.page-footer-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.page-footer-nav a {
  font-size: .82rem;
  color: var(--ui-dim-label);
  text-decoration: none;
  transition: color .2s
}
.page-footer-nav a:hover {
  color: var(--ui-main);
  text-decoration: underline;
  text-underline-offset: 2px
}
.page-footer-rule {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .5rem 0
}
.site-page-footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --area-pad: 1.8rem 0.8rem;
    --beonbet-tile-padding: 0.9rem;
    --ui-spacing: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --area-pad: 2.5rem 1rem;
    --beonbet-tile-padding: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --area-pad: 3.5rem 1.5rem;
    --beonbet-tile-padding: 1.5rem
  }
}
header {
  background-color: var(--ui-site-header-surface);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-h);
  z-index: 9999;
  font-family: var(--headline-font);
  font-family: var(--headline-font)
}
.site-header-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto
}
.site-header-wrapper a {
  color: var(--beonbet-site-header-copy);
  text-decoration: none;
  transition: color .2s
}
.site-header-wrapper a:hover {
  color: unset
}
.site-header-left-side {
  display: flex;
  align-items: center;
  gap: 32px
}
.logo-holder-area {
  display: flex;
  align-items: center
}
.logo-holder-area img {
  max-height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block
}
.toggle-holder {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--site-header-chip-surface);
  padding: 4px;
  border-radius: 1000px;
  border: 1px solid var(--beonbet-page-header-tag-border)
}
.toggle-holder > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--theme-masthead-label-subtle);
  border-radius: 1000px;
  transition: background .2s,color .2s
}
.picker-start-section {
  background: var(--ui-main);
  color: var(--ui-site-header-button-label)!important
}
.picker-start-section img {
  filter: brightness(0) invert(1)
}
.page-header-navigation-wrapper {
  display: flex;
  align-items: center;
  height: 100%
}
.page-header-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  height: 100%
}
.page-header-nav li {
  display: flex;
  align-items: center;
  height: 100%
}
.page-header-nav a {
  color: var(--beonbet-site-header-copy);
  height: 100%;
  display: flex;
  align-items: center;
  position: relative
}
.page-header-nav a:hover {
  color: var(--ui-main)
}
.page-header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ui-main)
}
.page-header-end {
  display: flex;
  align-items: center;
  gap: 12px
}
.main-missions-button-panel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--site-header-action-background);
  color: var(--ui-site-header-button-label);
  padding: 7px 12px 7px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.18);
  transition: filter .2s,transform .15s
}
.main-missions-button-panel:hover {
  filter: brightness(1.1)
}
.main-missions-button-panel:active {
  transform: translateY(1px)
}
.main-missions-button-panel img {
  width: 18px;
  height: 18px
}
.missions-headline-wrap {
  letter-spacing: .2px
}
.main-header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .2s
}
.main-header-search:hover {
  background: var(--site-header-chip-surface)
}
.main-header-search img {
  opacity: .75
}
.site-header-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700
}
.site-header-action-buttons a {
  padding: 9px 18px;
  border-radius: 1000px;
  line-height: 1;
  letter-spacing: .2px;
  transition: filter .2s,background .2s,transform .15s
}
.site-sign-in-button {
  border: 1px solid var(--beonbet-page-header-tag-border);
  color: var(--beonbet-site-header-copy);
  background: 0 0
}
.site-sign-in-button:hover {
  background: var(--site-header-chip-surface)
}
.join-button-wrapper {
  position: relative
}
.site-sign-up-cta {
  background: var(--ui-main);
  border: 1px solid var(--ui-main);
  color: var(--button-copy,#fff);
  box-shadow: 0 2px 10px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.2)
}
.site-sign-up-cta:hover {
  filter: brightness(1.1)
}
.site-sign-up-cta:active {
  transform: translateY(1px)
}
.join-offer-row {
  position: absolute;
  top: -13px;
  right: 2px;
  background-color: var(--topbar-bonus-fill);
  color: var(--theme-topbar-bonus-copy);
  border-radius: 1000px;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px 2px 4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  white-space: nowrap
}
.main-hamburger-cta-wrapper {
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center
}
.main-hamburger-cta-wrapper img {
  filter: invert(1)
}
.main-offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--ui-site-header-surface);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.main-offcanvas.open {
  left: 0
}
.offcanvas-close-box {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--beonbet-site-header-copy);
  cursor: pointer
}
.site-offcanvas-header {
  display: flex;
  justify-content: flex-end
}
.offcanvas-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-inner .page-header-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-inner .page-header-nav a {
  font-size: 16px;
  padding: 12px 0;
  display: block;
  height: auto
}
.site-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.site-offcanvas-backdrop.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .page-header-navigation-wrapper,
  .toggle-holder {
    display: none
  }
  .main-offcanvas .page-header-navigation-wrapper,
  .main-offcanvas .toggle-holder {
    display: flex;
    max-width: fit-content
  }
  .main-offcanvas .page-header-nav {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    gap: 15px
  }
  .main-offcanvas .toggle-holder {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .main-hamburger-cta-wrapper,
  .main-offcanvas,
  .site-offcanvas-backdrop {
    display: none
  }
}
@media (max-width:768px) {
  .main-header-search,
  .main-missions-button-panel {
    display: none
  }
  .site-header-wrapper {
    padding: 0 12px
  }
  .site-header-left-side {
    gap: 8px
  }
  .page-header-end {
    gap: 6px;
    flex-shrink: 0
  }
  .logo-holder-area {
    max-width: 130px;
    min-width: 0;
    flex-shrink: 1
  }
  .logo-holder-area img {
    max-height: 38px;
    object-fit: contain;
    width: auto;
    max-width: 100%
  }
  .main-hamburger-cta-wrapper img {
    width: 20px;
    height: 20px
  }
  .site-header-action-buttons {
    gap: 6px
  }
  .site-header-action-buttons a {
    padding: 7px 12px;
    font-size: 10px;
    white-space: nowrap;
    line-height: 1
  }
  .join-offer-row {
    font-size: 7px;
    padding: 2px 5px;
    top: -11px;
    right: 0
  }
  .join-offer-row img {
    width: 8px;
    height: 8px
  }
}
.toggle-holder > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary {
  width: 64px;
  min-width: 64px;
  background: var(--surface-alt);
  border-right: 1px solid rgba(128,128,128,.18)
}
.site-side-panel-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 8px
}
.aside-glyph-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s
}
.aside-glyph-entry:hover {
  background: var(--theme-tile-background)
}
.aside-glyph-entry img {
  opacity: .7;
  transition: opacity .2s
}
.aside-glyph-entry:hover img {
  opacity: 1
}
.site-side-rail-hr-panel {
  border: 0;
  height: 1px;
  background: rgba(128,128,128,.18);
  width: 80%;
  margin: 4px auto
}
.header-fill-lower,
.header-fill-lower *,
.header-surface-box,
.header-surface-box * {
  font-family: var(--headline-font)!important
}
.header-surface-box {
  background: url(../images/header-bg.png?v=3463b360) 0 0/cover no-repeat;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden
}
.page-header-background-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px
}
.page-header-background-main br {
  display: none
}
.page-header-background-main > a {
  display: inline-block;
  width: auto
}
.site-header-background-name {
  text-transform: uppercase;
  font-size: 36px!important;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--theme-highlight);
  text-shadow: 2px 2px 4px #000,0 0 15px #000
}
.masthead-surface-deposit {
  font-size: 126px!important;
  font-weight: 900!important;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--theme-copy);
  filter: drop-shadow(0px 2px 2.7px rgba(0, 0, 0, 1)) drop-shadow(2px 2px 2.9px rgba(0, 0, 0, 1))
}
.header-fill-reward {
  font-size: 28.8px!important;
  font-weight: 900;
  color: var(--theme-copy);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px #000,0 0 15px #000;
  margin-bottom: 20px
}
.site-page-header-surface-button {
  background: var(--ui-main);
  color: var(--button-copy,#fff);
  border: none;
  cursor: pointer;
  padding: 9px 58px!important;
  border-radius: 1000px!important;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  width: auto!important;
  box-shadow: none;
  transition: .5s
}
.site-page-header-surface-button:hover {
  background: var(--hover-main);
  transform: translateY(-2px)
}
.site-header-bg-action-content-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0
}
.site-header-bg-button-primary-panel {
  font-size: 24px!important;
  font-weight: 700;
  line-height: 1.6
}
.topbar-fill-button-description-row {
  font-size: 13px!important;
  font-weight: 500;
  opacity: .8;
  text-transform: none;
  line-height: 1.6
}
.header-fill-lower {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--surface-alt);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.header-fill-lower::after,
.header-fill-lower::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.header-fill-lower::before {
  left: 0;
  background: linear-gradient(to right,var(--theme-fill),transparent)
}
.header-fill-lower::after {
  right: 0;
  background: linear-gradient(to left,var(--theme-fill),transparent)
}
.header-fill-lower p {
  display: none
}
.page-header-bg-bottom-content-body-section {
  text-align: center;
  margin: 0 26px
}
.page-header-bg-bottom-content-body-section .small-content-body-box {
  font-size: 10px;
  color: var(--ui-dim-label);
  font-weight: 700
}
.page-header-bg-bottom-content-body-section .site-big-content-body {
  font-size: 16px;
  font-weight: 700;
  color: #fff
}
@media (min-width:769px) {
  .page-header-background-main {
    padding-top: calc(12% - 21px)!important;
    padding-bottom: 29px!important
  }
}
@media (max-width:768px) {
  .header-surface-box {
    background-image: url(../images/header-bg-mobile.png?v=b5b6be45);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    padding: 0;
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
    max-width: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
    --banner-drop: 144px;
    margin-bottom: calc(var(--banner-drop) + 16px)
  }
  .header-surface-box .page-header-background-main {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--banner-drop) * -1);
    padding: 0 16px;
    gap: 4px
  }
  .site-header-background-name {
    font-size: 20px!important;
    margin-bottom: 4px
  }
  .masthead-surface-deposit {
    font-size: 66px!important;
    line-height: 1.1
  }
  .header-fill-reward {
    font-size: 24px!important;
    margin-bottom: 16px
  }
  .header-fill-lower {
    background: var(--surface-alt);
    gap: 10px;
    padding: 8px 15px
  }
  .site-big-content-body {
    font-size: 14px
  }
}
.pay-methods-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 20px 24px;
  margin: 24px auto;
  max-width: 1100px;
  background: 0 0
}
.pay-methods-block img {
  width: 72px;
  height: 56px;
  object-fit: fill;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s,transform .2s;
  filter: grayscale(10%)
}
.pay-methods-block img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px)
}
@media (max-width:768px) {
  .pay-methods-block {
    gap: 14px 20px;
    padding: 16px
  }
  .pay-methods-block img {
    width: 56px;
    height: 44px
  }
}
.game-sort-row {
  width: 100%;
  max-width: 1400px;
  margin: 24px auto;
  padding: 12px 0;
  background: var(--theme-fill);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin
}
.game-sort-row::-webkit-scrollbar {
  height: 4px
}
.game-sort-row::-webkit-scrollbar-thumb {
  background: var(--beonbet-border-line);
  border-radius: 2px
}
.play-sort-line-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  white-space: nowrap;
  width: max-content
}
.play-sort-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--surface-alt,#151c35);
  border: 1px solid var(--beonbet-border-line);
  color: var(--theme-copy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: background .2s,border-color .2s,color .2s,transform .15s;
  flex: 0 0 auto
}
.play-sort-badge:hover {
  background: var(--theme-tile-background,var(--surface-alt));
  border-color: var(--ui-main);
  color: var(--theme-copy)
}
.play-sort-badge.active {
  background: var(--ui-main);
  border-color: var(--ui-main);
  color: var(--button-copy,#fff)
}
.main-play-sort-glyph {
  width: 20px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .85
}
.play-sort-badge:hover .main-play-sort-glyph {
  opacity: 1
}
@media (max-width:768px) {
  .play-sort-line-wrap {
    gap: 6px;
    padding: 0 12px
  }
  .play-sort-badge {
    padding: 10px 14px;
    font-size: 13px
  }
}
.main-site {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.main-zone {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ui-dim-label)
}
.main-zone p {
  margin-bottom: 1rem
}
.main-zone strong {
  color: var(--theme-copy)
}
.main-zone a:not(.site-primary-cta):not(.app-promo-banner-cta):not([class*="-button"]) {
  color: var(--ui-main);
  text-decoration: underline
}
.main-zone a:not(.site-primary-cta):not(.app-promo-banner-cta):not([class*="-button"]):hover {
  color: var(--theme-highlight)
}
@media (max-width:768px) {
  .main-site {
    padding: 5rem 15px 30px
  }
  .main-zone {
    font-size: 14px
  }
  .main-site > .site-application-banner-container,
  .site-application-banner-container {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .site-application-banner-mobile-block img,
  .site-mobile-banner {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.highlights-shell {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1400px
}
.feature-panel-grid {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  background-color: var(--theme-tile-background,var(--surface-alt));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform .25s,box-shadow .25s
}
.feature-panel-grid:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,.22)
}
.feature-panel-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.55) 100%);
  pointer-events: none
}
.highlights-shell .feature-panel-grid h3 {
  text-transform: none;
  border: none;
  padding: 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #fff;
  letter-spacing: .2px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  text-align: left;
  width: auto
}
.site-fcdl-payouts {
  background-image: url(../images/fast-pay.png?v=7710e643)
}
.cashback-grid {
  background-image: url(../images/cashback.png?v=bd76098e)
}
.main-vip-block {
  background-image: url(../images/vip-level.png?v=4bff1963)
}
.main-slots {
  background-image: url(../images/games.png?v=78ad393f)
}
.missions-wrap {
  background-image: url(../images/feature-missions.png?v=280dffa4)
}
@media (max-width:1024px) {
  .highlights-shell {
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:768px) {
  .highlights-shell {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 16px 24px;
    gap: 12px;
    margin: 0 -16px;
    scrollbar-width: thin
  }
  .highlights-shell::-webkit-scrollbar {
    height: 4px
  }
  .highlights-shell::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2);
    border-radius: 2px
  }
  .feature-panel-grid {
    flex: 0 0 44%;
    max-width: 44%;
    scroll-snap-align: start
  }
  .highlights-shell .feature-panel-grid h3 {
    font-size: 12px
  }
}
.region-support {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto
}
.unit-care-group {
  flex: 1;
  background: var(--surface-alt);
  border-radius: 8px;
  padding: 18px;
  max-width: 320px
}
.main-name-service {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}
.main-name-service img {
  width: 33px;
  height: 33px;
  flex-shrink: 0
}
.heading-help-copy {
  font-weight: 700;
  font-size: 16px
}
.unit-care-group p {
  color: var(--ui-dim-label);
  font-size: 13px;
  margin-bottom: 0
}
@media (max-width:768px) {
  .region-support {
    flex-direction: column;
    padding: 0 16px
  }
}
.site-application-banner-container {
  margin: 32px auto;
  max-width: 800px
}
.site-mobile-banner {
  display: flex;
  align-items: stretch;
  background: var(--theme-tile-background,var(--surface-alt));
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--beonbet-border-line);
  box-shadow: 0 4px 18px rgba(0,0,0,.18)
}
.application-banner-content-body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}
.application-banner-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--beonbet-border-line);
  background: var(--surface-alt);
  align-self: flex-start
}
.app-promo-banner-tag-image {
  border-radius: 6px;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: 0 0
}
.site-app-promo-banner-text-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.app-banner-tag-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--theme-copy);
  letter-spacing: .2px
}
.main-mobile-banner-text-rate {
  display: flex;
  gap: 1px
}
.main-mobile-banner-text-rate img {
  width: 12px;
  height: 12px
}
.main-mobile-banner-text-rate .star-half-wrap {
  opacity: .85
}
.application-banner-text-verify-row {
  background: #069815;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: none;
  letter-spacing: .3px;
  align-self: center;
  white-space: nowrap
}
.application-banner-name {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--theme-copy);
  font-family: var(--headline-font);
  margin: 0
}
.main-app-banner-description {
  color: var(--ui-dim-label);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0
}
.app-promo-banner-button-shell {
  margin-top: 4px
}
.app-promo-banner-button-shell .site-primary-cta {
  margin: 0;
  display: inline-block
}
.app-banner-image-holder {
  flex: 0 0 38%;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  padding: 16px;
  box-sizing: border-box
}
.mobile-banner-image {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px
}
.site-application-banner-mobile-block {
  display: none
}
.site-application-banner-mobile-block img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  border-radius: 12px
}
@media (max-width:768px) {
  .site-mobile-banner {
    flex-direction: column;
    min-height: unset
  }
  .app-banner-image-holder {
    display: none
  }
  .site-application-banner-mobile-block {
    display: block;
    padding: 0;
    line-height: 0
  }
  .site-application-banner-mobile-block img {
    max-width: 100%;
    width: 100%;
    border-radius: 0
  }
  .application-banner-content-body {
    padding: 16px 20px 24px;
    gap: 12px
  }
  .application-banner-content-body .application-banner-text {
    margin-top: -2px
  }
  .application-banner-name {
    font-size: 20px
  }
  .app-promo-banner-button-shell .site-primary-cta {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.site-primary-cta {
  font-size: 18px;
  font-weight: 700;
  background: var(--ui-main);
  color: var(--button-copy,#fff);
  padding: 10px 56px;
  border-radius: 30px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none;
  transition: filter .2s
}
.site-primary-cta:hover {
  filter: brightness(1.15);
  color: var(--button-copy,#fff)
}
.updated-date-area {
  background: var(--surface-alt);
  margin: 30px auto;
  border-radius: 10px;
  border-left: 5px solid var(--ui-main);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 30px;
  color: var(--theme-copy);
  max-width: 1400px
}
@media (max-width:768px) {
  .updated-date-area {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.site-page-footer-panel.main-page-footer-grid {
  background: var(--colophon-bg,var(--surface-alt,#060e2a));
  color: var(--theme-copy-site-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-page-footer-panel.main-page-footer-grid .colophon-top-area,
.site-page-footer-panel.main-page-footer-grid .site-page-footer-lower {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box
}
.site-page-footer-panel.main-page-footer-grid .colophon-top-area {
  display: grid;
  grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(180px,1fr) minmax(220px,297px);
  gap: 24px;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 36px
}
.site-page-footer-panel.main-page-footer-grid .colophon-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}
.site-page-footer-panel.main-page-footer-grid .site-footer-logo-wrapper {
  width: 135px;
  height: 34px;
  object-fit: contain;
  object-position: left center
}
.site-page-footer-panel.main-page-footer-grid .colophon-follow-tag {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.site-page-footer-panel.main-page-footer-grid .site-page-footer-socials {
  display: flex;
  gap: 4px
}
.site-page-footer-panel.main-page-footer-grid .page-footer-socials-section {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--colophon-social-fill,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.site-page-footer-panel.main-page-footer-grid .page-footer-socials-section:hover {
  background: var(--theme-highlight,#5a6178)
}
.site-page-footer-panel.main-page-footer-grid .page-footer-socials-section img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
.site-page-footer-panel.main-page-footer-grid .colophon-brand-label {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 8px
}
.site-page-footer-panel.main-page-footer-grid .page-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px
}
.site-page-footer-panel.main-page-footer-grid .page-footer-nav a {
  color: var(--link-site-footer,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-page-footer-panel.main-page-footer-grid .page-footer-nav a:hover {
  color: var(--theme-copy-site-footer,#fff)
}
.site-page-footer-panel.main-page-footer-grid .footer-support {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-page-footer-panel.main-page-footer-grid .footer-support .colophon-help-heading {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-page-footer-panel.main-page-footer-grid .footer-support p {
  color: var(--theme-copy-site-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.site-page-footer-panel.main-page-footer-grid .footer-inbox-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-copy-site-footer,#fff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none
}
.site-page-footer-panel.main-page-footer-grid .footer-inbox-box img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-page-footer-panel.main-page-footer-grid .page-footer-rule {
  height: 0;
  background: 0 0;
  margin: 0
}
.site-page-footer-panel.main-page-footer-grid .site-page-footer-lower {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "license  right" "copyright right";
  column-gap: 24px;
  row-gap: 8px;
  align-items: start;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 36px
}
.site-page-footer-panel.main-page-footer-grid .page-footer-licence {
  grid-area: license;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ui-license-colophon,#869dee);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer
}
.site-page-footer-panel.main-page-footer-grid .site-footer-copyright {
  grid-area: copyright;
  color: var(--theme-copy-site-footer,#a2a5af);
  font-size: 12px;
  font-weight: 400;
  line-height: 22.29px;
  margin: 0;
  max-width: 720px
}
.site-page-footer-panel.main-page-footer-grid .site-footer-bottom-right {
  grid-area: right;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 16px
}
.site-page-footer-panel.main-page-footer-grid .page-footer-licence .site-footer-arrow-row {
  width: 12px;
  height: 12px
}
.site-page-footer-panel.main-page-footer-grid .site-footer-safe-pill {
  height: 48px;
  width: auto;
  max-width: none;
  object-fit: contain
}
.site-page-footer-panel.main-page-footer-grid .page-footer-lang-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--colophon-social-fill,#444a5f);
  border: none;
  border-radius: 22px;
  padding: 8px 12px 8px 16px;
  color: var(--theme-copy-site-footer,#fff);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  text-transform: capitalize;
  cursor: pointer;
  min-width: 88px;
  justify-content: space-between
}
.site-page-footer-panel.main-page-footer-grid .page-footer-lang-wrapper .site-footer-arrow-row {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
@media (max-width:960px) {
  .site-page-footer-panel.main-page-footer-grid .colophon-top-area {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}
@media (max-width:600px) {
  .site-page-footer-panel.main-page-footer-grid .colophon-top-area {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .site-page-footer-panel.main-page-footer-grid .site-footer-logo-wrapper {
    object-position: center
  }
  .site-page-footer-panel.main-page-footer-grid .site-page-footer-lower {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
    grid-template-areas: "license" "copyright" "right";
    grid-template-columns: 1fr;
    row-gap: 12px
  }
  .site-page-footer-panel.main-page-footer-grid .page-footer-rule {
    margin: 0
  }
  .site-page-footer-panel.main-page-footer-grid .colophon-brand,
  .site-page-footer-panel.main-page-footer-grid .colophon-top-area,
  .site-page-footer-panel.main-page-footer-grid .footer-support,
  .site-page-footer-panel.main-page-footer-grid .site-page-footer-lower {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-page-footer-panel.main-page-footer-grid .site-footer-bottom-right,
  .site-page-footer-panel.main-page-footer-grid .site-page-footer-socials {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-page-footer-panel.main-page-footer-grid .page-footer-nav {
    align-items: center
  }
  .site-page-footer-panel.main-page-footer-grid .footer-inbox-box {
    justify-content: center
  }
  .site-page-footer-panel.main-page-footer-grid .site-footer-safe-pill {
    height: 36px
  }
  .site-page-footer-panel.main-page-footer-grid .site-footer-bottom-right {
    align-self: start
  }
}
.site-page-footer-panel .page-footer-nav:not(:has(a)) {
  display: none
}
.site-page-footer-panel .page-footer-menu-legal,
.site-page-footer-panel .page-footer-navigation-accent-primary-holder {
  text-align: left
}
.site-page-footer-panel.main-page-footer-grid .page-footer-nav:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-page-footer-panel.main-page-footer-grid .colophon-top-area:has(.page-footer-navigation-accent-primary-holder a):not(:has(.page-footer-menu-legal a)),
  .site-page-footer-panel.main-page-footer-grid .colophon-top-area:not(:has(.page-footer-navigation-accent-primary-holder a)):has(.page-footer-menu-legal a) {
    grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(220px,297px)
  }
  .site-page-footer-panel.main-page-footer-grid .colophon-top-area:not(:has(.page-footer-nav a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-block {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.site-inner-row {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-inner-row .main-site {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px
}
.highlights-shell,
.site-mobile-banner {
  margin-left: auto;
  margin-right: auto
}
.site-page-footer-panel[class] {
  padding-left: var(--ui-aside-width,0)
}
.site-page-footer-panel[class] .colophon-top-area,
.site-page-footer-panel[class] .site-page-footer-lower {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .site-page-footer-panel[class] {
    padding-left: 0
  }
}
.site-cta-center {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.site-cta-center .site-primary-cta,
.site-cta-center a.site-primary-cta {
  display: inline-block
}
@media (max-width:768px) {
  .site-cta-center {
    display: block;
    margin: 30px auto
  }
  .legal-content-body .table-scroll > table,
  .main-zone .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.site-primary-cta.app-promo-banner-cta {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.highlights-shell h2,
.questions-headline {
  font-family: var(--headline-font);
  color: var(--theme-copy);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.highlights-shell .feature-panel-grid {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  background-size: contain;
  background-position: center 40px
}
.highlights-shell .feature-panel-grid h3 {
  margin: 0;
  font-size: 14px
}
.main-zone li {
  padding: .3rem 0;
  line-height: 1.7
}
.main-zone table {
  font-size: .92rem
}
.main-zone table th {
  background: var(--ui-main);
  color: var(--button-copy,#fff);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600
}
.main-zone table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.main-zone table tr:nth-child(2n) td {
  background: rgba(255,255,255,.03)
}
.site-layout-block > .widget-zone.alt-area {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--ui-aside-width,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-block > .site-inner-row {
  margin-left: var(--ui-aside-width,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-inner-row .main-site {
    padding-left: 20px
  }
  .site-layout-block > .widget-zone.alt-area {
    max-width: var(--ui-aside-width,80px)
  }
}
@media (max-width:992px) {
  .site-layout-block > .widget-zone.alt-area {
    display: none
  }
  .site-layout-block > .site-inner-row {
    margin-left: 0
  }
}
.header-surface-box {
  position: relative;
  z-index: 1
}
.page-header-background-main {
  position: relative;
  z-index: 2
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
.aside-glyph-entry img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.aside-glyph-entry.side-rail-icon-mark-lg-inner img {
  object-fit: contain;
  opacity: 1;
  width: 48px;
  height: 48px
}
.toggle-holder img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.main-header-search img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.join-offer-row img {
  width: 12px;
  height: 12px;
  object-fit: contain
}
.main-hamburger-cta-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.game-sort-row a,
.play-sort-badge,
.play-sort-badge:hover,
.play-sort-badge:visited {
  text-decoration: none!important
}
.legal-headline-box {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--theme-copy);
  line-height: 1.15;
  letter-spacing: -.02em
}
.legal-content-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ui-dim-label)
}
.legal-content-body p {
  margin-bottom: 1.1rem
}
.legal-content-body strong {
  color: var(--theme-copy)
}
.legal-content-body li,
.main-zone li {
  color: var(--ui-dim-label)
}
.legal-content-body li strong,
.main-zone li strong {
  color: var(--ui-dim-label);
  font-weight: 700
}
.legal-content-body a {
  color: var(--ui-main);
  text-decoration: underline;
  text-underline-offset: 2px
}
.legal-content-body a:hover {
  color: var(--hover-main,var(--theme-highlight))
}
.legal-content-body article em {
  color: var(--ui-dim-label);
  font-style: italic
}
img {
  max-width: 100%;
  height: auto
}
.site-content-img {
  max-width: 24%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain
}
.site-inner-img-end {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.main-zone h2,
.main-zone h3,
.main-zone table {
  clear: both
}
.main-inner-clear {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .legal-headline-box {
    font-size: 1.6rem
  }
  .legal-content-body h1 {
    font-size: 1.5rem
  }
  .legal-content-body h2 {
    font-size: 1.2rem
  }
  .site-content-img,
  .site-inner-img-end {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    max-height: none;
    height: auto;
    margin: 1rem auto
  }
}
.faq-question-item-row,
.legal-content-body h1,
.legal-content-body h2,
.legal-content-body h3,
.main-zone h1,
.main-zone h2,
.main-zone h3,
.questions-headline {
  font-family: var(--headline-font);
  color: var(--theme-copy);
  text-decoration: none;
  border: none
}
.legal-content-body h1,
.main-zone h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.legal-content-body h2,
.main-zone h2,
.questions-headline {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.faq-question-item-row,
.legal-content-body h3,
.main-zone h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.legal-content-body ul,
.main-zone ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.legal-content-body ul li,
.main-zone ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .6rem;
  line-height: 1.6
}
.legal-content-body ul li::before,
.main-zone ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ui-main)
}
.legal-content-body ol,
.main-zone ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.legal-content-body ol li,
.main-zone ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  counter-increment: ol-counter
}
.legal-content-body ol li::before,
.main-zone ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--ui-main);
  font-weight: 600
}
.legal-content-body table,
.main-zone table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--theme-tile-background,rgba(255,255,255,.03));
  border: 1px solid var(--beonbet-border-line,rgba(255,255,255,.08));
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.18);
  margin: 1.5rem 0;
  color: var(--ui-dim-label,#c9ccd6);
  font-family: var(--font-base, 'Montserrat', system-ui, sans-serif)
}
.legal-content-body table thead tr:first-child th:first-child,
.main-zone table thead tr:first-child th:first-child {
  border-top-left-radius: 10px
}
.legal-content-body table thead tr:first-child th:last-child,
.main-zone table thead tr:first-child th:last-child {
  border-top-right-radius: 10px
}
.legal-content-body table tbody tr:last-child td:first-child,
.main-zone table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px
}
.legal-content-body table tbody tr:last-child td:last-child,
.main-zone table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px
}
.legal-content-body table thead tr,
.main-zone table thead tr {
  background: var(--surface-alt,rgba(255,255,255,.06))
}
.legal-content-body table thead th,
.main-zone table thead th {
  font-weight: 700;
  color: var(--theme-copy,#fff);
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid var(--beonbet-border-line,rgba(255,255,255,.12));
  font-size: .875rem;
  background: 0 0;
  letter-spacing: .2px
}
.legal-content-body table thead th:last-child,
.main-zone table thead th:last-child {
  border-right: none
}
.legal-content-body table tbody tr:nth-child(odd),
.main-zone table tbody tr:nth-child(odd) {
  background: 0 0
}
.legal-content-body table tbody tr:nth-child(2n),
.main-zone table tbody tr:nth-child(2n) {
  background: var(--surface-alt,rgba(255,255,255,.03))
}
.legal-content-body table tbody td,
.main-zone table tbody td {
  padding: 14px 20px;
  border-right: 1px solid var(--beonbet-border-line,rgba(255,255,255,.06));
  border-bottom: 1px solid var(--beonbet-border-line,rgba(255,255,255,.06));
  color: var(--ui-dim-label,#c9ccd6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6
}
.legal-content-body table tbody td:last-child,
.main-zone table tbody td:last-child {
  border-right: none
}
.legal-content-body table tbody tr:last-child td,
.main-zone table tbody tr:last-child td {
  border-bottom: none
}
.site-questions-group-wrapper {
  background: var(--surface-alt,rgba(255,255,255,.02));
  border: 1px solid var(--beonbet-border-line,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 28px 32px 32px;
  margin: 30px auto;
  font-family: Montserrat,system-ui,sans-serif
}
.site-questions-group-wrapper .questions-headline {
  color: var(--theme-copy,#fff);
  font-family: var(--headline-font, 'Montserrat', system-ui, sans-serif);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-top: 4px
}
.site-questions-group-wrapper .faq-card-box {
  background: var(--theme-tile-background,rgba(255,255,255,.04));
  border: 1px solid var(--beonbet-border-line,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 14px;
  color: var(--ui-dim-label,#b1b4bc)
}
.site-questions-group-wrapper .faq-card-box:last-child {
  margin-bottom: 0
}
.site-questions-group-wrapper .faq-question-item-row {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--theme-copy,#fff);
  margin: 0 0 12px
}
.site-questions-group-wrapper .faqs-reply {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ui-dim-label,#b1b4bc)
}
.site-questions-group-wrapper .faqs-reply p {
  margin: 0 0 8px
}
.site-questions-group-wrapper .faqs-reply p:last-child {
  margin-bottom: 0
}
.site-questions-group-wrapper .faqs-reply b,
.site-questions-group-wrapper .faqs-reply strong {
  font-weight: 700;
  color: var(--theme-copy,#fff)
}
@media (max-width:600px) {
  .legal-content-body h1,
  .main-zone h1 {
    font-size: 2rem
  }
  .legal-content-body h2,
  .main-zone h2,
  .questions-headline {
    font-size: 1.6rem
  }
  .faq-question-item-row,
  .legal-content-body h3,
  .main-zone h3 {
    font-size: 1.2rem
  }
  .legal-content-body table tbody td,
  .legal-content-body table thead th,
  .main-zone table tbody td,
  .main-zone table thead th {
    padding: 10px 12px;
    font-size: .8rem
  }
  .site-questions-group-wrapper {
    padding: 24px 20px 28px;
    margin: 24px 12px
  }
  .site-questions-group-wrapper .questions-headline {
    letter-spacing: .3px;
    margin: 0 0 24px;
    padding-top: 4px
  }
  .site-questions-group-wrapper .faq-card-box {
    padding: 20px 18px;
    margin-bottom: 12px
  }
  .site-questions-group-wrapper .faq-question-item-row {
    line-height: 1.35
  }
}
.main-zone h2 {
  border: none;
  border-bottom: none
}
.legal-content-body ol li,
.legal-content-body ul li,
.main-zone ol li,
.main-zone ul li {
  border-bottom: none
}
.legal-content-body,
.main-zone {
  max-width: 1400px;
  margin: 0 auto
}
[data-slot=content-image-1]:not(a):not(button) {
  max-width: 40%!important;
  max-height: none!important
}
[data-slot=app-content-image-2]:not(a):not(button) {
  max-width: 20%!important;
  max-height: none!important
}
@media (max-width:768px) {
  [data-slot=app-content-image-2]:not(a):not(button),
  [data-slot=content-image-1]:not(a):not(button) {
    max-width: 100%!important
  }
}
.site-header-background-name {
  color: #f7f7f7!important
}
.header-fill-reward,
.masthead-surface-deposit {
  color: #ffe631!important
}
.site-page-header-surface-button {
  background: #2dd4a8!important;
  color: #0b0605!important
}
.site-header-bg-button-primary-panel,
.topbar-fill-button-description-row {
  color: #0b0605!important
}
:root .picker-start-section,
:root .picker-start-section .main-selector-title-wrapper,
:root .site-sign-up-cta {
  color: #000!important
}