:root {
  --background: #171516;
  --tile-background: #1d1b1c;
  --theme-background-alt: #262425;
  --ui-accent-primary: #00FF6F;
  --ui-hover-accent-primary: #ffffff;
  --alt: #00FF6F;
  --copy: #e8e6e3;
  --copy-faded: #9a9a9a;
  --betninja-accent-color: #ffffff;
  --promo-cta-grad-top: #00FF6F;
  --theme-bonus-btn-grad-bottom: color-mix(in srgb, #00FF6F, #000 20%);
  --betninja-edge: #2d2b2c;
  --theme-gradient-overlay: linear-gradient(135deg, #00FF6F 0%, #00FF6F 100%);
  --theme-glow: rgba(255,255,255,0.1);
  --betninja-glow-deep: rgba(255,255,255,0.2);
  --betninja-typeface-caption: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --font-base: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --section-padding: 3rem 1.5rem;
  --ui-card-inset: 1.2rem;
  --ui-gutter: 1rem;
  --ui-corner: 10px;
  --tile-corner: 16px;
  --sheen-background: #1d1b1c;
  --sheen-outline: #2d2b2c;
  --theme-glass-shade: 0 2px 12px rgba(0, 0, 0, 0.3);
  --action-label: #1a1a1a;
  --aside-width: 64px;
  --betninja-emphasis-copy: #1a1a1a
}
*,
::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(--background);
  color: var(--copy);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 64px
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--betninja-typeface-caption);
  line-height: 1.15
}
a {
  color: var(--ui-accent-primary);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--ui-hover-accent-primary)
}
@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(--theme-glow)
  }
  50% {
    box-shadow: 0 0 28px var(--betninja-glow-deep)
  }
}
@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-field.sub-box {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--aside-width,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.side-panel-main-area {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.colophon-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem
}
.page-footer-brand {
  height: 30px;
  width: auto
}
.page-footer-navbar-area {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.page-footer-navbar-area a {
  font-size: .82rem;
  color: var(--copy-faded);
  text-decoration: none;
  transition: color .2s
}
.page-footer-navbar-area a:hover {
  color: var(--ui-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.site-footer-separator {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .5rem 0
}
.colophon-bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --section-padding: 1.8rem 0.8rem;
    --ui-card-inset: 0.9rem;
    --ui-gutter: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --section-padding: 2.5rem 1rem;
    --ui-card-inset: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --section-padding: 3.5rem 1.5rem;
    --ui-card-inset: 1.5rem
  }
}
header {
  background-color: var(--background);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 64px;
  font-family: var(--betninja-typeface-caption);
  background-color: #171516!important
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center
}
.header-wrapper a {
  color: var(--copy);
  text-decoration: none
}
.header-wrapper a:hover {
  color: unset
}
.site-page-header-left-side {
  display: flex;
  align-items: center;
  gap: 40px
}
.logo-holder-area img {
  max-height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block
}
.selector-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--theme-background-alt);
  padding: 5px 10px;
  border-radius: 1000px;
  border: 1px solid var(--betninja-edge)
}
.selector-wrapper > a,
.selector-wrapper div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--copy-faded)
}
.main-toggle-start {
  background: var(--ui-accent-primary);
  padding: 3px 8px;
  border-radius: 1000px
}
.masthead-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600
}
.masthead-nav a {
  color: var(--copy-faded)
}
.masthead-nav a:hover {
  color: var(--copy)
}
.page-header-right-row {
  display: flex;
  align-items: center;
  gap: 15px
}
.header-button-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700
}
.header-button-buttons a {
  padding: 10px 12px;
  border-radius: 1000px;
  line-height: normal
}
.sign-in-button-container {
  border: 1px solid var(--betninja-edge);
  color: var(--copy)
}
.sign-in-button-container:hover {
  background-color: var(--theme-background-alt)
}
.site-signup-action-holder {
  position: relative
}
.join-btn {
  background: var(--ui-accent-primary);
  border: 1px solid var(--ui-accent-primary);
  color: var(--action-label,#fff)
}
.join-btn:hover {
  filter: brightness(1.15)
}
.menu-toggle-action {
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center
}
.menu-toggle-action img {
  filter: invert(1)
}
.main-offcanvas-grid {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--background);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.main-offcanvas-grid.open {
  left: 0
}
.main-offcanvas-close-area {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--copy);
  cursor: pointer
}
.main-offcanvas-close-area:hover {
  background: 0 0
}
.offcanvas-site-header-container {
  display: flex;
  justify-content: flex-end
}
.offcanvas-content-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-content-body .masthead-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-content-body .masthead-nav a {
  font-size: 16px;
  padding: 12px 0;
  display: block
}
.offcanvas-backdrop-group {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.offcanvas-backdrop-group.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .selector-wrapper,
  .site-header-navigation-shell {
    display: none
  }
  .main-offcanvas-grid .selector-wrapper,
  .main-offcanvas-grid .site-header-navigation-shell {
    display: flex;
    max-width: fit-content
  }
  .main-offcanvas-grid .masthead-nav {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    gap: 15px
  }
  .main-offcanvas-grid .selector-wrapper {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .main-offcanvas-grid,
  .menu-toggle-action,
  .offcanvas-backdrop-group {
    display: none
  }
}
@media (max-width:768px) {
  .header-wrapper {
    padding: 0 20px
  }
  .site-page-header-left-side {
    gap: 10px
  }
  .page-header-right-row {
    flex-shrink: 0
  }
  .logo-holder-area {
    max-width: 80px;
    min-width: 0;
    flex-shrink: 1
  }
  .logo-holder-area img {
    max-width: 100%
  }
}
.selector-wrapper > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary {
  width: 64px;
  min-width: 64px;
  background: var(--theme-background-alt);
  border-right: 1px solid rgba(128,128,128,.18)
}
.side-panel-main-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 8px
}
.aside-symbol-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s
}
.aside-symbol-cell:hover {
  background: var(--tile-background)
}
.aside-symbol-cell img {
  opacity: .7;
  transition: opacity .2s
}
.aside-symbol-cell:hover img {
  opacity: 1
}
.site-sidebar-hr {
  border: 0;
  height: 1px;
  background: rgba(128,128,128,.18);
  width: 80%;
  margin: 4px auto
}
.masthead-background-block,
.masthead-background-block *,
.masthead-surface-bottom-area-holder,
.masthead-surface-bottom-area-holder * {
  font-family: var(--betninja-typeface-caption)!important
}
.masthead-background-block {
  background: url(../images/header-bg.png?v=6dc747de) 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(--betninja-accent-color);
  text-shadow: 2px 2px 4px #000,0 0 15px #000
}
.header-surface-deposit-holder {
  font-size: 126px!important;
  font-weight: 900!important;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--copy);
  filter: drop-shadow(0px 2px 2.7px rgba(0, 0, 0, 1)) drop-shadow(2px 2px 2.9px rgba(0, 0, 0, 1))
}
.site-header-surface-offer {
  font-size: 28.8px!important;
  font-weight: 900;
  color: var(--copy);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px #000,0 0 15px #000;
  margin-bottom: 20px
}
.main-page-header-surface-button {
  background: var(--ui-accent-primary);
  color: var(--action-label,#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
}
.main-page-header-surface-button:hover {
  background: var(--ui-hover-accent-primary);
  transform: translateY(-2px)
}
.header-bg-action-inner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0
}
.header-surface-cta-core {
  font-size: 24px!important;
  font-weight: 700;
  line-height: 1.6
}
.main-topbar-fill-btn-description-wrap {
  font-size: 13px!important;
  font-weight: 500;
  opacity: .8;
  text-transform: none;
  line-height: 1.6
}
.masthead-surface-bottom-area-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--theme-background-alt);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.masthead-surface-bottom-area-holder::after,
.masthead-surface-bottom-area-holder::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.masthead-surface-bottom-area-holder::before {
  left: 0;
  background: linear-gradient(to right,var(--background),transparent)
}
.masthead-surface-bottom-area-holder::after {
  right: 0;
  background: linear-gradient(to left,var(--background),transparent)
}
.masthead-surface-bottom-area-holder p {
  display: none
}
.main-page-header-surface-bottom {
  text-align: center;
  margin: 0 26px
}
.main-page-header-surface-bottom .small-main {
  font-size: 10px;
  color: var(--copy-faded);
  font-weight: 700
}
.main-page-header-surface-bottom .big-inner {
  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) {
  .masthead-background-block {
    background-image: url(../images/header-bg-mobile.png?v=ecdb6182);
    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)
  }
  .masthead-background-block .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
  }
  .header-surface-deposit-holder {
    font-size: 66px!important;
    line-height: 1.1
  }
  .site-header-surface-offer {
    font-size: 24px!important;
    margin-bottom: 16px
  }
  .masthead-surface-bottom-area-holder {
    background: var(--theme-background-alt);
    gap: 10px;
    padding: 8px 15px
  }
  .big-inner {
    font-size: 14px
  }
}
.payment-method-methods {
  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
}
.payment-method-methods img {
  width: 72px;
  height: 56px;
  object-fit: fill;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s,transform .2s;
  filter: grayscale(10%)
}
.payment-method-methods img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px)
}
@media (max-width:768px) {
  .payment-method-methods {
    gap: 14px 20px;
    padding: 16px
  }
  .payment-method-methods img {
    width: 56px;
    height: 44px
  }
}
.play-filter {
  background: var(--background);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 56px;
  margin: 24px 0
}
.play-filter .play-sort-row-group-holder {
  display: flex;
  align-items: stretch;
  height: 60px;
  overflow-x: auto;
  scrollbar-width: thin;
  width: 100%;
  max-width: 1344px
}
.play-filter .play-sort-row-group-holder::-webkit-scrollbar {
  height: 4px
}
.play-filter .play-sort-row-group-holder::-webkit-scrollbar-thumb {
  background: var(--betninja-edge);
  border-radius: 2px
}
.play-filter .play-selector-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 60px;
  background: 0 0;
  color: var(--copy-faded);
  font-family: var(--betninja-typeface-caption);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.2px;
  text-transform: capitalize;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
  transition: color .2s,background .2s
}
.play-filter .play-selector-tab:hover {
  color: var(--copy)
}
.play-filter .play-selector-tab.is-active {
  background: var(--theme-background-alt);
  color: var(--copy)
}
.play-filter .play-selector-tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ui-accent-primary)
}
.play-filter .games-filter-icon-mark {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}
@media (max-width:768px) {
  .play-filter {
    padding: 0 16px
  }
  .play-filter .play-selector-tab {
    padding: 0 10px;
    font-size: 11px
  }
}
.main-site {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.content-body-zone {
  font-size: 15px;
  line-height: 1.8;
  color: var(--copy-faded)
}
.content-body-zone p {
  margin-bottom: 1rem
}
.content-body-zone strong {
  color: var(--copy)
}
.content-body-zone a:not(.main-button):not(.application-banner-cta-wrapper):not([class*="-button"]) {
  color: var(--ui-accent-primary);
  text-decoration: underline
}
.content-body-zone a:not(.main-button):not(.application-banner-cta-wrapper):not([class*="-button"]):hover {
  color: var(--betninja-accent-color)
}
@media (max-width:768px) {
  .main-site {
    padding: 5rem 15px 30px
  }
  .content-body-zone {
    font-size: 14px
  }
  .main-site > .site-app-banner-container-grid,
  .site-app-banner-container-grid {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .app-promo-banner-mobile-section img,
  .site-mobile-banner {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.perks-wrapper {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1400px
}
.main-perk-tile {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  background-color: var(--tile-background,var(--theme-background-alt));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform .25s,box-shadow .25s
}
.main-perk-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,.22)
}
.main-perk-tile::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
}
.perks-wrapper .main-perk-tile 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
}
.fcdl-payouts-container {
  background-image: url(../images/fast-pay.png?v=7710e643)
}
.cashback-area {
  background-image: url(../images/cashback.png?v=bd76098e)
}
.main-vip-block {
  background-image: url(../images/vip-level.png?v=4bff1963)
}
.slots {
  background-image: url(../images/games.png?v=78ad393f)
}
.main-missions {
  background-image: url(../images/feature-missions.png?v=280dffa4)
}
@media (max-width:1024px) {
  .perks-wrapper {
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:768px) {
  .perks-wrapper {
    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
  }
  .perks-wrapper::-webkit-scrollbar {
    height: 4px
  }
  .perks-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2);
    border-radius: 2px
  }
  .main-perk-tile {
    flex: 0 0 44%;
    max-width: 44%;
    scroll-snap-align: start
  }
  .perks-wrapper .main-perk-tile h3 {
    font-size: 12px
  }
}
.area-care {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto
}
.block-care {
  flex: 1;
  background: var(--theme-background-alt);
  border-radius: 8px;
  padding: 18px;
  max-width: 320px
}
.site-heading-service {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}
.site-heading-service img {
  width: 33px;
  height: 33px;
  flex-shrink: 0
}
.headline-service-text {
  font-weight: 700;
  font-size: 16px
}
.block-care p {
  color: var(--copy-faded);
  font-size: 13px;
  margin-bottom: 0
}
@media (max-width:768px) {
  .area-care {
    flex-direction: column;
    padding: 0 16px
  }
}
.site-app-banner-container-grid {
  margin: 32px auto;
  max-width: 800px
}
.site-mobile-banner {
  display: flex;
  align-items: stretch;
  background: var(--tile-background,var(--theme-background-alt));
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--betninja-edge);
  box-shadow: 0 4px 18px rgba(0,0,0,.18)
}
.site-mobile-banner-content {
  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(--betninja-edge);
  background: var(--theme-background-alt);
  align-self: flex-start
}
.app-banner-caption-image {
  border-radius: 6px;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: 0 0
}
.app-banner-text-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.main-app-promo-banner-label-title-panel {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--copy);
  letter-spacing: .2px
}
.app-banner-label-rate-wrap {
  display: flex;
  gap: 1px
}
.app-banner-label-rate-wrap img {
  width: 12px;
  height: 12px
}
.app-banner-label-rate-wrap .main-star-half-inner {
  opacity: .85
}
.mobile-banner-text-verify {
  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-heading {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--copy);
  font-family: var(--betninja-typeface-caption);
  margin: 0
}
.app-promo-banner-description-box {
  color: var(--copy-faded);
  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 .main-button {
  margin: 0;
  display: inline-block
}
.application-banner-image-container {
  flex: 0 0 38%;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  padding: 16px;
  box-sizing: border-box
}
.app-promo-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
}
.app-promo-banner-mobile-section {
  display: none
}
.app-promo-banner-mobile-section 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
  }
  .application-banner-image-container {
    display: none
  }
  .app-promo-banner-mobile-section {
    display: block;
    padding: 0;
    line-height: 0
  }
  .app-promo-banner-mobile-section img {
    max-width: 100%;
    width: 100%;
    border-radius: 0
  }
  .site-mobile-banner-content {
    padding: 16px 20px 24px;
    gap: 12px
  }
  .site-mobile-banner-content .application-banner-text {
    margin-top: -2px
  }
  .application-banner-heading {
    font-size: 20px
  }
  .app-promo-banner-button-shell .main-button {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.main-button {
  font-size: 18px;
  font-weight: 700;
  background: var(--ui-accent-primary);
  color: var(--action-label,#fff);
  padding: 10px 56px;
  border-radius: 30px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none;
  transition: filter .2s
}
.main-button:hover {
  filter: brightness(1.15);
  color: var(--action-label,#fff)
}
.site-updated-date {
  background: var(--theme-background-alt);
  margin: 30px auto;
  border-radius: 10px;
  border-left: 5px solid var(--ui-accent-primary);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 30px;
  color: var(--copy);
  max-width: 1400px
}
@media (max-width:768px) {
  .site-updated-date {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.site-page-footer-panel.footer-holder {
  background: var(--page-footer-fill,var(--theme-background-alt,#060e2a));
  color: var(--theme-text-content-page-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-page-footer-panel.footer-holder .colophon-bottom-area,
.site-page-footer-panel.footer-holder .colophon-upper,
.site-page-footer-panel.footer-holder > .footer-payment-methods-block {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box
}
.site-page-footer-panel.footer-holder .colophon-upper {
  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
}
.site-page-footer-panel.footer-holder .site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}
.site-page-footer-panel.footer-holder .page-footer-brand {
  width: 135px;
  height: 34px;
  object-fit: contain;
  object-position: left center
}
.site-page-footer-panel.footer-holder .footer-brand-title-group {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4
}
.site-page-footer-panel.footer-holder .site-footer-contact-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-text-content-page-footer,#fff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none
}
.site-page-footer-panel.footer-holder .site-footer-contact-box img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-page-footer-panel.footer-holder .page-footer-navbar-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px
}
.site-page-footer-panel.footer-holder .page-footer-navbar-area a {
  color: var(--page-footer-anchor,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-page-footer-panel.footer-holder .page-footer-navbar-area a:hover {
  color: var(--theme-text-content-page-footer,#fff)
}
.site-page-footer-panel.footer-holder .site-footer-support-container {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-page-footer-panel.footer-holder .site-footer-support-container .colophon-help-center-name-panel {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-page-footer-panel.footer-holder .site-footer-support-container p {
  color: var(--theme-text-content-page-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.site-page-footer-panel.footer-holder .site-footer-separator {
  height: 1px;
  background: 0 0;
  margin: 24px 40px
}
.site-page-footer-panel.footer-holder .colophon-bottom-area {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-top: 0;
  padding-bottom: 24px
}
.site-page-footer-panel.footer-holder .footer-bottom-area-start-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start
}
.site-page-footer-panel.footer-holder .footer-certification-holder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-licence-page-footer,#869dee);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer
}
.site-page-footer-panel.footer-holder .footer-certification-holder .site-footer-indicator {
  width: 10px;
  height: 10px;
  flex-shrink: 0
}
.site-page-footer-panel.footer-holder .site-footer-share-pills-block {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.site-page-footer-panel.footer-holder .site-footer-social-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217,217,217,.2);
  border: 1px solid #fff;
  border-radius: 25px;
  box-shadow: 4px 5px 4px rgba(0,0,0,.25);
  padding: 8px 22px;
  min-width: 110px;
  min-height: 38px;
  color: var(--theme-text-content-page-footer,#fff);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  box-sizing: border-box
}
.site-page-footer-panel.footer-holder .site-footer-social-tag img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1)
}
.site-page-footer-panel.footer-holder .site-footer-social-tag:hover {
  background: rgba(217,217,217,.3)
}
.site-page-footer-panel.footer-holder .footer-payment-methods-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 36px
}
.site-page-footer-panel.footer-holder .footer-payment-methods-block img {
  width: 100px;
  height: 50px;
  object-fit: fill;
  flex-shrink: 0
}
.site-page-footer-panel.footer-holder .page-footer-lower-right-side-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end
}
.site-page-footer-panel.footer-holder .site-footer-lang-select {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--footer-social-links-bg,#444a5f);
  border: none;
  border-radius: 22px;
  padding: 8px 12px 8px 16px;
  color: var(--theme-text-content-page-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.footer-holder .site-footer-lang-select img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
.site-page-footer-panel.footer-holder .colophon-legal {
  color: var(--theme-text-content-page-footer,#a2a5af);
  font-size: 10px;
  font-weight: 400;
  line-height: 22.29px;
  margin: 0;
  text-align: right;
  text-transform: uppercase;
  max-width: 480px
}
@media (max-width:960px) {
  .site-page-footer-panel.footer-holder .colophon-upper {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
  .site-page-footer-panel.footer-holder .colophon-bottom-area {
    grid-template-columns: 1fr
  }
  .site-page-footer-panel.footer-holder .page-footer-lower-right-side-row {
    align-items: flex-start
  }
  .site-page-footer-panel.footer-holder .colophon-legal {
    text-align: left
  }
}
@media (max-width:600px) {
  .site-page-footer-panel.footer-holder .colophon-upper {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .site-page-footer-panel.footer-holder .page-footer-brand {
    object-position: center
  }
  .site-page-footer-panel.footer-holder .colophon-bottom-area {
    padding: 0 20px 24px
  }
  .site-page-footer-panel.footer-holder > .footer-payment-methods-block {
    padding: 8px 20px 32px;
    gap: 16px;
    justify-content: center
  }
  .site-page-footer-panel.footer-holder .footer-payment-methods-block img {
    width: 70px;
    height: 35px
  }
  .site-page-footer-panel.footer-holder .site-footer-separator {
    margin-left: 20px;
    margin-right: 20px
  }
  .site-page-footer-panel.footer-holder .colophon-upper,
  .site-page-footer-panel.footer-holder .footer-bottom-area-start-wrapper,
  .site-page-footer-panel.footer-holder .page-footer-lower-right-side-row,
  .site-page-footer-panel.footer-holder .site-footer-brand,
  .site-page-footer-panel.footer-holder .site-footer-support-container {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-page-footer-panel.footer-holder .footer-payment-methods-block,
  .site-page-footer-panel.footer-holder .site-footer-share-pills-block {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-page-footer-panel.footer-holder .page-footer-navbar-area {
    align-items: center
  }
  .site-page-footer-panel.footer-holder .site-footer-contact-box {
    justify-content: center
  }
  .site-page-footer-panel.footer-holder .colophon-legal {
    text-align: center
  }
}
.site-page-footer-panel .page-footer-navbar-area:not(:has(a)) {
  display: none
}
.site-page-footer-panel .footer-navigation-main,
.site-page-footer-panel .page-footer-menu-legal {
  text-align: left
}
.site-page-footer-panel.footer-holder .page-footer-navbar-area:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-page-footer-panel.footer-holder .colophon-upper:has(.footer-navigation-main a):not(:has(.page-footer-menu-legal a)),
  .site-page-footer-panel.footer-holder .colophon-upper:not(:has(.footer-navigation-main a)):has(.page-footer-menu-legal a) {
    grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(220px,297px)
  }
  .site-page-footer-panel.footer-holder .colophon-upper:not(:has(.page-footer-navbar-area a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-wrap {
  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
}
.perks-wrapper,
.site-mobile-banner {
  margin-left: auto;
  margin-right: auto
}
.site-page-footer-panel[class] {
  padding-left: var(--aside-width,0)
}
.site-page-footer-panel[class] .colophon-bottom-area,
.site-page-footer-panel[class] .colophon-upper {
  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 .main-button,
.site-cta-center a.main-button {
  display: inline-block
}
@media (max-width:768px) {
  .site-cta-center {
    display: block;
    margin: 30px auto
  }
  .content-body-zone .table-scroll > table,
  .main-legal-content-body-section .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.main-button.application-banner-cta-wrapper {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.main-questions-heading,
.perks-wrapper h2 {
  font-family: var(--betninja-typeface-caption);
  color: var(--copy);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.perks-wrapper .main-perk-tile {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  background-size: contain;
  background-position: center 40px
}
.perks-wrapper .main-perk-tile h3 {
  margin: 0;
  font-size: 14px
}
.content-body-zone li {
  padding: .3rem 0;
  line-height: 1.7
}
.content-body-zone table {
  font-size: .92rem
}
.content-body-zone table th {
  background: var(--ui-accent-primary);
  color: var(--action-label,#fff);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600
}
.content-body-zone table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.content-body-zone table tr:nth-child(2n) td {
  background: rgba(255,255,255,.03)
}
.site-layout-wrap > .widget-field.sub-box {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--aside-width,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-wrap > .site-inner-row {
  margin-left: var(--aside-width,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-inner-row .main-site {
    padding-left: 20px
  }
  .site-layout-wrap > .widget-field.sub-box {
    max-width: var(--aside-width,80px)
  }
}
@media (max-width:992px) {
  .site-layout-wrap > .widget-field.sub-box {
    display: none
  }
  .site-layout-wrap > .site-inner-row {
    margin-left: 0
  }
}
.masthead-background-block {
  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-symbol-cell img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.aside-symbol-cell.sidebar-icon-lg-box img {
  object-fit: contain;
  opacity: 1;
  width: 48px;
  height: 48px
}
.selector-wrapper img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.menu-toggle-action img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.play-filter-bar-holder a {
  text-decoration: none!important
}
.main-legal-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--copy);
  line-height: 1.15;
  letter-spacing: -.02em
}
.main-legal-content-body-section {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--copy-faded)
}
.main-legal-content-body-section p {
  margin-bottom: 1.1rem
}
.main-legal-content-body-section strong {
  color: var(--copy)
}
.content-body-zone li,
.main-legal-content-body-section li {
  color: var(--copy-faded)
}
.content-body-zone li strong,
.main-legal-content-body-section li strong {
  color: var(--copy-faded);
  font-weight: 700
}
.main-legal-content-body-section a {
  color: var(--ui-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.main-legal-content-body-section a:hover {
  color: var(--ui-hover-accent-primary,var(--betninja-accent-color))
}
.main-legal-content-body-section article em {
  color: var(--copy-faded);
  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
}
.main-img-left-wrap {
  float: left;
  margin: .75rem 1.8rem 1rem 0
}
.content-body-img-right {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.content-img-center {
  display: block;
  float: none;
  margin: 1rem auto;
  max-width: 80%
}
.content-body-zone h2,
.content-body-zone h3,
.content-body-zone table {
  clear: both
}
.main-clear {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .main-legal-title {
    font-size: 1.6rem
  }
  .main-legal-content-body-section h1 {
    font-size: 1.5rem
  }
  .main-legal-content-body-section h2 {
    font-size: 1.2rem
  }
  .content-body-img-right,
  .content-img-center,
  .main-img-left-wrap,
  .site-content-img {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    max-height: none;
    height: auto;
    margin: 1rem auto
  }
}
.content-body-zone h1,
.content-body-zone h2,
.content-body-zone h3,
.faqs-ask-grid,
.main-legal-content-body-section h1,
.main-legal-content-body-section h2,
.main-legal-content-body-section h3,
.main-questions-heading {
  font-family: var(--betninja-typeface-caption);
  color: var(--copy);
  text-decoration: none;
  border: none
}
.content-body-zone h1,
.main-legal-content-body-section h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.content-body-zone h2,
.main-legal-content-body-section h2,
.main-questions-heading {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.content-body-zone h3,
.faqs-ask-grid,
.main-legal-content-body-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.content-body-zone ul,
.main-legal-content-body-section ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.content-body-zone ul li,
.main-legal-content-body-section ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .6rem;
  line-height: 1.6
}
.content-body-zone ul li::before,
.main-legal-content-body-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ui-accent-primary)
}
.content-body-zone ol,
.main-legal-content-body-section ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.content-body-zone ol li,
.main-legal-content-body-section ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  counter-increment: ol-counter
}
.content-body-zone ol li::before,
.main-legal-content-body-section ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--ui-accent-primary);
  font-weight: 600
}
.content-body-zone table,
.main-legal-content-body-section table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--tile-background,rgba(255,255,255,.03));
  border: 1px solid var(--betninja-edge,rgba(255,255,255,.08));
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.18);
  margin: 1.5rem 0;
  color: var(--copy-faded,#c9ccd6);
  font-family: var(--font-base, 'Montserrat', system-ui, sans-serif)
}
.content-body-zone table thead tr:first-child th:first-child,
.main-legal-content-body-section table thead tr:first-child th:first-child {
  border-top-left-radius: 10px
}
.content-body-zone table thead tr:first-child th:last-child,
.main-legal-content-body-section table thead tr:first-child th:last-child {
  border-top-right-radius: 10px
}
.content-body-zone table tbody tr:last-child td:first-child,
.main-legal-content-body-section table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px
}
.content-body-zone table tbody tr:last-child td:last-child,
.main-legal-content-body-section table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px
}
.content-body-zone table thead tr,
.main-legal-content-body-section table thead tr {
  background: var(--theme-background-alt,rgba(255,255,255,.06))
}
.content-body-zone table thead th,
.main-legal-content-body-section table thead th {
  font-weight: 700;
  color: var(--copy,#fff);
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid var(--betninja-edge,rgba(255,255,255,.12));
  font-size: .875rem;
  background: 0 0;
  letter-spacing: .2px
}
.content-body-zone table thead th:last-child,
.main-legal-content-body-section table thead th:last-child {
  border-right: none
}
.content-body-zone table tbody tr:nth-child(odd),
.main-legal-content-body-section table tbody tr:nth-child(odd) {
  background: 0 0
}
.content-body-zone table tbody tr:nth-child(2n),
.main-legal-content-body-section table tbody tr:nth-child(2n) {
  background: var(--theme-background-alt,rgba(255,255,255,.03))
}
.content-body-zone table tbody td,
.main-legal-content-body-section table tbody td {
  padding: 14px 20px;
  border-right: 1px solid var(--betninja-edge,rgba(255,255,255,.06));
  border-bottom: 1px solid var(--betninja-edge,rgba(255,255,255,.06));
  color: var(--copy-faded,#c9ccd6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6
}
.content-body-zone table tbody td:last-child,
.main-legal-content-body-section table tbody td:last-child {
  border-right: none
}
.content-body-zone table tbody tr:last-child td,
.main-legal-content-body-section table tbody tr:last-child td {
  border-bottom: none
}
.main-questions-section {
  background: var(--theme-background-alt,rgba(255,255,255,.02));
  border: 1px solid var(--betninja-edge,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 28px 32px 32px;
  margin: 30px auto;
  font-family: Montserrat,system-ui,sans-serif
}
.main-questions-section .main-questions-heading {
  color: var(--copy,#fff);
  font-family: var(--betninja-typeface-caption, 'Montserrat', system-ui, sans-serif);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-top: 4px
}
.main-questions-section .questions-panel-inner {
  background: var(--tile-background,rgba(255,255,255,.04));
  border: 1px solid var(--betninja-edge,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 14px;
  color: var(--copy-faded,#b1b4bc)
}
.main-questions-section .questions-panel-inner:last-child {
  margin-bottom: 0
}
.main-questions-section .faqs-ask-grid {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--copy,#fff);
  margin: 0 0 12px
}
.main-questions-section .site-faqs-reply {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--copy-faded,#b1b4bc)
}
.main-questions-section .site-faqs-reply p {
  margin: 0 0 8px
}
.main-questions-section .site-faqs-reply p:last-child {
  margin-bottom: 0
}
.main-questions-section .site-faqs-reply b,
.main-questions-section .site-faqs-reply strong {
  font-weight: 700;
  color: var(--copy,#fff)
}
@media (max-width:600px) {
  .content-body-zone h1,
  .main-legal-content-body-section h1 {
    font-size: 2rem
  }
  .content-body-zone h2,
  .main-legal-content-body-section h2,
  .main-questions-heading {
    font-size: 1.6rem
  }
  .content-body-zone h3,
  .faqs-ask-grid,
  .main-legal-content-body-section h3 {
    font-size: 1.2rem
  }
  .content-body-zone table tbody td,
  .content-body-zone table thead th,
  .main-legal-content-body-section table tbody td,
  .main-legal-content-body-section table thead th {
    padding: 10px 12px;
    font-size: .8rem
  }
  .main-questions-section {
    padding: 24px 20px 28px;
    margin: 24px 12px
  }
  .main-questions-section .main-questions-heading {
    letter-spacing: .3px;
    margin: 0 0 24px;
    padding-top: 4px
  }
  .main-questions-section .questions-panel-inner {
    padding: 20px 18px;
    margin-bottom: 12px
  }
  .main-questions-section .faqs-ask-grid {
    line-height: 1.35
  }
}
.content-body-zone h2 {
  border: none;
  border-bottom: none
}
.content-body-zone ol li,
.content-body-zone ul li,
.main-legal-content-body-section ol li,
.main-legal-content-body-section ul li {
  border-bottom: none
}
.content-body-zone,
.main-legal-content-body-section {
  max-width: 1400px;
  margin: 0 auto
}
.header-surface-deposit-holder,
.site-header-surface-offer {
  color: #ffe524!important
}
.main-page-header-surface-button,
.promo .promo-cta {
  background: linear-gradient(180deg,var(--promo-cta-grad-top) 0,var(--theme-bonus-btn-grad-bottom) 100%)!important;
  background-image: linear-gradient(180deg,var(--promo-cta-grad-top) 0,var(--theme-bonus-btn-grad-bottom) 100%)!important
}
.main-page-header-surface-button:hover,
.promo .promo-cta:hover {
  background: linear-gradient(180deg,var(--theme-bonus-btn-grad-bottom) 0,var(--promo-cta-grad-top) 100%)!important
}
.sign-in-button-container {
  background: #3b3b3b!important
}
.join-btn {
  background: #00e060!important;
  color: #000!important
}
.selector-wrapper a,
.selector-wrapper span {
  color: #fff!important
}
.main-toggle-start,
.main-toggle-start .site-picker-name {
  color: #000!important
}