:root {
  --surface: #0f181b;
  --ui-tile-surface: #14141f;
  --alt-bg: #1e272a;
  --theme-accent-primary: #f4a261;
  --hover-main: #ffc887;
  --ui-secondary-alt: #e76f51;
  --text-content: #e8e6e3;
  --herospin-subtle-text-content: #9a9a9a;
  --ui-accent: #ffd166;
  --herospin-reward-cta-grad-top-area: #f4a261;
  --theme-bonus-btn-grad-bottom: color-mix(in srgb, #f4a261, #000 20%);
  --edge: #2a2a3e;
  --theme-blend: linear-gradient(315deg,  #f4a261 0%, #e76f51 100%);
  --halo: rgba(255,255,255,0.1);
  --herospin-strong-halo: rgba(255,255,255,0.2);
  --ui-font-family-heading: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --text-base: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --block-pad: 8rem 2rem;
  --panel-inset: 2.8rem;
  --ui-gutter: 2.5rem;
  --corner: 12px;
  --herospin-card-box-corner: 18px;
  --sheen-fill: #14141f;
  --sheen-border: #2a2a3e;
  --frosted-shade: 0 2px 12px rgba(0, 0, 0, 0.3);
  --ui-cta-text-content: #fff;
  --width-sidebar: 248px;
  --text-content-accent-color: #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(--text-base);
  background: var(--surface);
  color: var(--text-content);
  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(--ui-font-family-heading);
  line-height: 1.15
}
a {
  color: var(--theme-accent-primary);
  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(--halo)
  }
  50% {
    box-shadow: 0 0 28px var(--herospin-strong-halo)
  }
}
@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-inner.main-sub-grid {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--width-sidebar,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.side-panel-main-grid {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.main-site-footer-upper-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}
.page-footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem
}
.site-footer-brand {
  height: 30px;
  width: auto
}
.page-footer-navigation-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.page-footer-navigation-grid a {
  font-size: .82rem;
  color: var(--herospin-subtle-text-content);
  text-decoration: none;
  transition: color .2s
}
.page-footer-navigation-grid a:hover {
  color: var(--theme-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.site-footer-rule {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .5rem 0
}
.main-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 {
    --block-pad: 1.8rem 0.8rem;
    --panel-inset: 0.9rem;
    --ui-gutter: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --block-pad: 2.5rem 1rem;
    --panel-inset: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --block-pad: 3.5rem 1.5rem;
    --panel-inset: 1.5rem
  }
}
header {
  background-color: var(--surface);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 64px;
  font-family: var(--ui-font-family-heading)
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center
}
.header-wrapper a {
  color: var(--text-content);
  text-decoration: none
}
.header-wrapper a:hover {
  color: unset
}
.site-header-left-side {
  display: flex;
  align-items: center;
  gap: 40px
}
.herospin-wrapper img {
  max-height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain
}
.switcher-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--alt-bg);
  padding: 5px 10px;
  border-radius: 1000px;
  border: 1px solid var(--edge)
}
.switcher-wrapper > a,
.switcher-wrapper div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--herospin-subtle-text-content)
}
.site-picker-left-side {
  background: var(--theme-accent-primary);
  color: #fff!important;
  padding: 3px 8px;
  border-radius: 1000px
}
.page-header-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600
}
.page-header-nav a {
  color: var(--herospin-subtle-text-content)
}
.page-header-nav a:hover {
  color: var(--text-content)
}
.topbar-right-side {
  display: flex;
  align-items: center;
  gap: 15px
}
.topbar-button-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700
}
.topbar-button-buttons a {
  padding: 10px 12px;
  border-radius: 1000px;
  line-height: normal
}
.sign-in-button {
  border: 1px solid var(--edge);
  color: var(--text-content)
}
.sign-in-button:hover {
  background-color: var(--alt-bg)
}
.signup-cta-container {
  position: relative
}
.signup-action-wrapper {
  background: var(--theme-accent-primary);
  border: 1px solid var(--theme-accent-primary);
  color: var(--ui-cta-text-content,#fff)
}
.signup-action-wrapper:hover {
  filter: brightness(1.15)
}
.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)
}
.site-offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--surface);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.site-offcanvas.open {
  left: 0
}
.site-offcanvas-close {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--text-content);
  cursor: pointer
}
.site-offcanvas-close:hover {
  background: 0 0
}
.main-offcanvas-masthead-container {
  display: flex;
  justify-content: flex-end
}
.offcanvas-content-holder {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-content-holder .page-header-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-content-holder .page-header-nav a {
  font-size: 16px;
  padding: 12px 0;
  display: block
}
.offcanvas-backdrop-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.offcanvas-backdrop-wrap.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .switcher-wrapper,
  .topbar-nav-shell-holder {
    display: none
  }
  .site-offcanvas .switcher-wrapper,
  .site-offcanvas .topbar-nav-shell-holder {
    display: flex;
    max-width: fit-content
  }
  .site-offcanvas .page-header-nav {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    gap: 15px
  }
  .site-offcanvas .switcher-wrapper {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .main-hamburger-cta-wrapper,
  .offcanvas-backdrop-wrap,
  .site-offcanvas {
    display: none
  }
}
@media (max-width:768px) {
  .main-header-search-wrap {
    display: none
  }
  .header-wrapper {
    padding: 0 20px
  }
  .site-header-left-side {
    gap: 10px
  }
  .topbar-right-side {
    flex-shrink: 0
  }
  .herospin-wrapper {
    max-width: 80px;
    min-width: 0;
    flex-shrink: 1
  }
  .herospin-wrapper img {
    max-width: 100%
  }
}
.switcher-wrapper > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary.side-rail-expanded {
  width: 248px;
  min-width: 248px;
  background: var(--alt-bg);
  border-right: 1px solid rgba(128,128,128,.18)
}
.side-rail-expanded .side-panel-main-grid {
  padding: 80px 20px 20px;
  border-radius: 0;
  background: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}
.side-rail-expanded .aside-hr {
  width: 100%;
  height: 1px;
  border: 0;
  margin: 10px 0;
  background: rgba(128,128,128,.18)
}
.sidebar-open-glyph-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 4px
}
.sidebar-open-glyph-wrapper img {
  object-fit: contain
}
.sidebar-open-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%
}
.side-panel-wide-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  width: 100%;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--herospin-subtle-text-content);
  text-decoration: none;
  transition: .2s
}
.side-panel-wide-item:hover {
  background: rgba(255,255,255,.1);
  color: var(--text-content)
}
.side-panel-wide-item img {
  object-fit: contain;
  flex-shrink: 0
}
.sidebar-open-menu .aside-hr {
  width: 100%;
  margin: 6px 0
}
.site-header-fill,
.site-header-fill *,
.site-header-fill-bottom-area,
.site-header-fill-bottom-area * {
  font-family: var(--ui-font-family-heading)!important
}
.site-header-fill {
  background: url(../images/header-bg.png) 0 0/cover no-repeat;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 1
}
.site-header-surface-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px;
  position: relative;
  z-index: 2
}
.site-header-surface-inner br {
  display: none
}
.main-site-header-fill-heading {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ui-accent)
}
.header-background-deposit {
  font-size: 105px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-content)
}
.masthead-background-promo {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-content);
  margin-bottom: 20px
}
.site-page-header-surface-button {
  background: var(--theme-accent-primary);
  color: var(--ui-cta-text-content,#fff);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700
}
.site-page-header-surface-button:hover {
  background: var(--hover-main);
  transform: translateY(-2px)
}
.page-header-fill-action-main {
  display: flex;
  flex-direction: column;
  align-items: center
}
.site-header-fill-bottom-area {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--alt-bg);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.site-header-fill-bottom-area::after,
.site-header-fill-bottom-area::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.site-header-fill-bottom-area::before {
  left: 0;
  background: linear-gradient(to right,var(--surface),transparent)
}
.site-header-fill-bottom-area::after {
  right: 0;
  background: linear-gradient(to left,var(--surface),transparent)
}
.site-header-fill-bottom-area p {
  display: none
}
@media (max-width:768px) {
  .site-header-fill {
    background-image: url(../images/header-bg-mobile.png);
    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;
    margin-bottom: 100px
  }
  .site-header-fill .site-header-surface-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -93px;
    padding: 0 16px;
    gap: 4px
  }
  .site-header-surface-inner > a {
    display: block;
    width: 100%
  }
  .main-site-header-fill-heading {
    font-size: 13px;
    margin-bottom: 4px
  }
  .header-background-deposit {
    font-size: 42px;
    line-height: 1.1
  }
  .masthead-background-promo {
    font-size: 15px;
    margin-bottom: 16px
  }
  .site-page-header-surface-button {
    padding: 19px 32px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.35)
  }
  .masthead-surface-cta-main-area {
    font-size: 20px
  }
  .site-topbar-fill-action-description {
    font-size: 11px
  }
  .site-header-fill-bottom-area {
    background: var(--alt-bg);
    gap: 10px;
    padding: 8px 15px
  }
}
.promo-strip {
  gap: 14px;
  padding: 12px 24px
}
.promo-strip .reward-strip-crown {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain
}
.promo-strip .promo-strip-text-content-section {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-content);
  line-height: 1.2
}
@media (max-width:768px) {
  .promo-strip {
    gap: 10px;
    padding: 10px 14px
  }
  .promo-strip .reward-strip-crown {
    width: 18px;
    height: 18px
  }
  .promo-strip .promo-strip-text-content-section {
    font-size: 11px;
    letter-spacing: .4px
  }
}
.site-header-surface-inner > a {
  display: inline-block;
  width: auto
}
.site-page-header-surface-button {
  text-transform: capitalize;
  border-radius: 1000px!important;
  padding: 8px 53px!important;
  width: auto!important;
  box-shadow: none;
  transition: .5s
}
.page-header-fill-action-main {
  display: flex;
  flex-direction: column;
  letter-spacing: 0
}
.masthead-surface-cta-main-area {
  font-size: 18px!important;
  font-weight: 700;
  line-height: 1.6
}
.site-topbar-fill-action-description {
  opacity: .8;
  text-transform: none;
  line-height: 1.6;
  font-weight: 500;
  font-size: 10px!important
}
.pay-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
}
.pay-methods img {
  width: 72px;
  height: 56px;
  object-fit: fill;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s,transform .2s;
  filter: grayscale(10%)
}
.pay-methods img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px)
}
@media (max-width:768px) {
  .pay-methods {
    gap: 14px 20px;
    padding: 16px
  }
  .pay-methods img {
    width: 56px;
    height: 44px
  }
}
.slots-selector {
  width: 100%;
  max-width: 1400px;
  margin: 24px auto;
  padding: 12px 0;
  background: var(--surface);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin
}
.slots-selector::-webkit-scrollbar {
  height: 4px
}
.slots-selector::-webkit-scrollbar-thumb {
  background: var(--edge);
  border-radius: 2px
}
.play-selector-row-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  white-space: nowrap;
  width: max-content
}
.game-filter-bar-chip-section {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--alt-bg,#151c35);
  border: 1px solid var(--edge);
  color: var(--text-content);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: background .2s,border-color .2s,color .2s,transform .15s;
  flex: 0 0 auto
}
.game-filter-bar-chip-section:hover {
  background: var(--ui-tile-surface,var(--alt-bg));
  border-color: var(--theme-accent-primary);
  color: var(--text-content)
}
.game-filter-bar-chip-section.active {
  background: var(--theme-accent-primary);
  border-color: var(--theme-accent-primary);
  color: var(--ui-cta-text-content,#fff)
}
.games-filter-icon-mark {
  width: 20px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .85
}
.game-filter-bar-chip-section:hover .games-filter-icon-mark {
  opacity: 1
}
@media (max-width:768px) {
  .play-selector-row-group {
    gap: 6px;
    padding: 0 12px
  }
  .game-filter-bar-chip-section {
    padding: 10px 14px;
    font-size: 13px
  }
}
.site-primary-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.content-region-wrapper {
  font-size: 15px;
  line-height: 1.8;
  color: var(--herospin-subtle-text-content)
}
.content-region-wrapper p {
  margin-bottom: 1rem
}
.content-region-wrapper strong {
  color: var(--text-content)
}
.content-region-wrapper a:not(.accent-primary-action):not([class*="-button"]) {
  color: var(--theme-accent-primary);
  text-decoration: underline
}
.content-region-wrapper a:not(.accent-primary-action):not([class*="-button"]):hover {
  color: var(--ui-accent)
}
@media (max-width:768px) {
  .site-primary-row {
    padding: 5rem 15px 30px
  }
  .content-region-wrapper {
    font-size: 14px
  }
}
.features-wrapper {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
  padding: 30px 0;
  margin: 0 auto
}
.highlight-card {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  background-color: var(--ui-tile-surface,var(--alt-bg));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform .25s,box-shadow .25s
}
.highlight-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,.22)
}
.highlight-card::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
}
.highlight-card h3 {
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #fff;
  margin: 0;
  letter-spacing: .2px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  text-align: right;
  width: auto
}
.fcdl-payouts-area {
  background-image: url(../images/fast-pay.png)
}
.main-cashback-holder {
  background-image: url(../images/cashback.png)
}
.main-vip-block {
  background-image: url(../images/vip-level.png)
}
.site-game {
  background-image: url(../images/games.png)
}
.main-missions {
  background-image: url(../images/feature-missions.png)
}
@media (max-width:1024px) {
  .features-wrapper {
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:768px) {
  .features-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
  }
  .features-wrapper::-webkit-scrollbar {
    height: 4px
  }
  .features-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2);
    border-radius: 2px
  }
  .highlight-card {
    flex: 0 0 44%;
    max-width: 44%;
    scroll-snap-align: start
  }
  .highlight-card h3 {
    font-size: 12px
  }
}
.region-help {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto
}
.group-care {
  flex: 1;
  background: var(--alt-bg);
  border-radius: 8px;
  padding: 18px;
  max-width: 320px
}
.site-heading-help {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}
.site-heading-help img {
  width: 33px;
  height: 33px;
  flex-shrink: 0
}
.name-support-text-holder {
  font-weight: 700;
  font-size: 16px
}
.group-care p {
  color: var(--herospin-subtle-text-content);
  font-size: 13px;
  margin-bottom: 0
}
@media (max-width:768px) {
  .region-help {
    flex-direction: column;
    padding: 0 16px
  }
}
.accent-primary-action {
  font-size: 18px;
  font-weight: 700;
  background: var(--theme-accent-primary);
  color: var(--ui-cta-text-content,var(--text-content));
  padding: 10px 56px;
  border-radius: 6px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none
}
.accent-primary-action:hover {
  background: var(--hover-main,var(--theme-accent-primary));
  color: var(--ui-cta-text-content,var(--text-content))
}
.updated-date-holder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--alt-bg);
  border-radius: 20px;
  font-size: 13px;
  color: var(--ui-accent);
  font-weight: 600
}
.main-site-colophon.page-footer-panel {
  background: var(--site-footer-fill,var(--alt-bg,#060e2a));
  color: var(--copy-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.main-site-colophon.page-footer-panel .main-colophon-bottom-area,
.main-site-colophon.page-footer-panel .main-site-footer-upper-group,
.main-site-colophon.page-footer-panel > .footer-payment-methods {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box
}
.main-site-colophon.page-footer-panel .main-site-footer-upper-group {
  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
}
.main-site-colophon.page-footer-panel .page-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}
.main-site-colophon.page-footer-panel .site-footer-brand {
  width: 135px;
  height: 34px;
  object-fit: contain;
  object-position: left center
}
.main-site-colophon.page-footer-panel .footer-brand-mark-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4
}
.main-site-colophon.page-footer-panel .colophon-mail-section {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copy-footer,#fff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none
}
.main-site-colophon.page-footer-panel .colophon-mail-section img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.main-site-colophon.page-footer-panel .page-footer-navigation-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px
}
.main-site-colophon.page-footer-panel .page-footer-navigation-grid a {
  color: var(--page-footer-anchor,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.main-site-colophon.page-footer-panel .page-footer-navigation-grid a:hover {
  color: var(--copy-footer,#fff)
}
.main-site-colophon.page-footer-panel .colophon-assist {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.main-site-colophon.page-footer-panel .colophon-assist .main-site-footer-support-heading {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.main-site-colophon.page-footer-panel .colophon-assist p {
  color: var(--copy-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.main-site-colophon.page-footer-panel .site-footer-rule {
  height: 1px;
  background: 0 0;
  margin: 24px 40px
}
.main-site-colophon.page-footer-panel .main-colophon-bottom-area {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-top: 0;
  padding-bottom: 24px
}
.main-site-colophon.page-footer-panel .page-footer-bottom-area-left-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start
}
.main-site-colophon.page-footer-panel .site-footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-licence-page-footer,#869dee);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer
}
.main-site-colophon.page-footer-panel .site-footer-legal .page-footer-indicator {
  width: 10px;
  height: 10px;
  flex-shrink: 0
}
.main-site-colophon.page-footer-panel .footer-share-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.main-site-colophon.page-footer-panel .page-footer-social-links-pill {
  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(--copy-footer,#fff);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  box-sizing: border-box
}
.main-site-colophon.page-footer-panel .page-footer-social-links-pill img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1)
}
.main-site-colophon.page-footer-panel .page-footer-social-links-pill:hover {
  background: rgba(217,217,217,.3)
}
.main-site-colophon.page-footer-panel .footer-payment-methods {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 36px
}
.main-site-colophon.page-footer-panel .footer-payment-methods img {
  width: 100px;
  height: 50px;
  object-fit: fill;
  flex-shrink: 0
}
.main-site-colophon.page-footer-panel .main-page-footer-bottom-area-end {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end
}
.main-site-colophon.page-footer-panel .site-footer-lang-select-holder {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--ui-page-footer-share-fill,#444a5f);
  border: none;
  border-radius: 22px;
  padding: 8px 12px 8px 16px;
  color: var(--copy-footer,#fff);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  text-transform: capitalize;
  cursor: pointer;
  min-width: 88px;
  justify-content: space-between
}
.main-site-colophon.page-footer-panel .site-footer-lang-select-holder img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
.main-site-colophon.page-footer-panel .main-colophon-notice {
  color: var(--copy-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) {
  .main-site-colophon.page-footer-panel .main-site-footer-upper-group {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
  .main-site-colophon.page-footer-panel .main-colophon-bottom-area {
    grid-template-columns: 1fr
  }
  .main-site-colophon.page-footer-panel .main-page-footer-bottom-area-end {
    align-items: flex-start
  }
  .main-site-colophon.page-footer-panel .main-colophon-notice {
    text-align: left
  }
}
@media (max-width:600px) {
  .main-site-colophon.page-footer-panel .main-site-footer-upper-group {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .main-site-colophon.page-footer-panel .site-footer-brand {
    object-position: center
  }
  .main-site-colophon.page-footer-panel .main-colophon-bottom-area {
    padding: 0 20px 24px
  }
  .main-site-colophon.page-footer-panel > .footer-payment-methods {
    padding: 8px 20px 32px;
    gap: 16px;
    justify-content: center
  }
  .main-site-colophon.page-footer-panel .footer-payment-methods img {
    width: 70px;
    height: 35px
  }
  .main-site-colophon.page-footer-panel .site-footer-rule {
    margin-left: 20px;
    margin-right: 20px
  }
  .main-site-colophon.page-footer-panel .colophon-assist,
  .main-site-colophon.page-footer-panel .main-page-footer-bottom-area-end,
  .main-site-colophon.page-footer-panel .main-site-footer-upper-group,
  .main-site-colophon.page-footer-panel .page-footer-bottom-area-left-side,
  .main-site-colophon.page-footer-panel .page-footer-logo {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .main-site-colophon.page-footer-panel .footer-payment-methods,
  .main-site-colophon.page-footer-panel .footer-share-pills {
    justify-content: center;
    flex-wrap: wrap
  }
  .main-site-colophon.page-footer-panel .page-footer-navigation-grid {
    align-items: center
  }
  .main-site-colophon.page-footer-panel .colophon-mail-section {
    justify-content: center
  }
  .main-site-colophon.page-footer-panel .main-colophon-notice {
    text-align: center
  }
}
.main-site-colophon .page-footer-navigation-grid:not(:has(a)) {
  display: none
}
.main-site-colophon .page-footer-navbar-legal,
.main-site-colophon .page-footer-navigation-accent-primary-holder {
  text-align: left
}
.main-site-colophon.page-footer-panel .page-footer-navigation-grid:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .main-site-colophon.page-footer-panel .main-site-footer-upper-group:has(.page-footer-navigation-accent-primary-holder a):not(:has(.page-footer-navbar-legal a)),
  .main-site-colophon.page-footer-panel .main-site-footer-upper-group:not(:has(.page-footer-navigation-accent-primary-holder a)):has(.page-footer-navbar-legal a) {
    grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(220px,297px)
  }
  .main-site-colophon.page-footer-panel .main-site-footer-upper-group:not(:has(.page-footer-navigation-grid a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-wrapper {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.site-content-inner {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-content-inner .site-primary-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px
}
.features-wrapper {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto
}
.main-site-colophon[class] {
  padding-left: var(--width-sidebar,0)
}
.main-site-colophon[class] .main-colophon-bottom-area,
.main-site-colophon[class] .main-site-footer-upper-group {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .main-site-colophon[class] {
    padding-left: 0
  }
}
.call-to-action-center-block {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.call-to-action-center-block .accent-primary-action,
.call-to-action-center-block a.accent-primary-action {
  display: inline-block
}
@media (max-width:768px) {
  .call-to-action-center-block {
    display: block;
    margin: 30px auto
  }
  .content-region-wrapper .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.features-wrapper h2,
.questions-title {
  font-family: var(--ui-font-family-heading);
  color: var(--text-content);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.features-wrapper .highlight-card {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  background-size: contain;
  background-position: center 40px
}
.features-wrapper .highlight-card h3 {
  margin: 0;
  font-size: 14px
}
.content-region-wrapper li {
  padding: .3rem 0;
  line-height: 1.7
}
.content-region-wrapper table {
  font-size: .92rem
}
.content-region-wrapper table th {
  background: var(--theme-accent-primary);
  color: var(--ui-cta-text-content,#fff);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600
}
.content-region-wrapper table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.content-region-wrapper table tr:nth-child(2n) td {
  background: rgba(255,255,255,.03)
}
.site-layout-wrapper > .widget-zone-inner.main-sub-grid {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--width-sidebar,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-wrapper > .site-content-inner {
  margin-left: var(--width-sidebar,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-content-inner .site-primary-row {
    padding-left: 20px
  }
  .site-layout-wrapper > .widget-zone-inner.main-sub-grid {
    max-width: var(--width-sidebar,80px)
  }
}
@media (max-width:992px) {
  .site-layout-wrapper > .widget-zone-inner.main-sub-grid {
    display: none
  }
  .site-layout-wrapper > .site-content-inner {
    margin-left: 0
  }
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
.sidebar-open-glyph-wrapper img {
  width: 64px;
  height: 64px;
  object-fit: contain
}
.side-panel-wide-item img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.side-rail-expanded .side-panel-main-grid {
  padding-top: 20px!important
}
.switcher-wrapper img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.main-header-search-wrap img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.main-hamburger-cta-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.game-filter-bar-chip-section,
.game-filter-bar-chip-section:hover,
.game-filter-bar-chip-section:visited,
.slots-selector a {
  text-decoration: none!important
}
.site-legal-headline {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--text-content);
  line-height: 1.15;
  letter-spacing: -.02em
}
img {
  max-width: 100%;
  height: auto
}
.content-body-img-panel {
  max-width: 30%;
  height: auto;
  object-fit: cover
}
.content-body-img-left-side {
  float: left;
  margin: .75rem 1.8rem 1rem 0
}
.content-img-end {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.content-region-wrapper h2,
.content-region-wrapper h3,
.content-region-wrapper table {
  clear: both
}
.inner-clear-wrapper {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .site-legal-headline {
    font-size: 1.6rem
  }
  .content-body-img-left-side,
  .content-body-img-panel,
  .content-img-end {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    margin: 1rem auto
  }
}
.content-region-wrapper h1,
.content-region-wrapper h2,
.content-region-wrapper h3 {
  font-family: var(--ui-font-family-heading);
  color: var(--text-content);
  text-decoration: none;
  border: none
}
.content-region-wrapper h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.content-region-wrapper h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.content-region-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.content-region-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.content-region-wrapper ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .6rem;
  line-height: 1.6
}
.content-region-wrapper ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-accent-primary)
}
.content-region-wrapper ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.content-region-wrapper ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  counter-increment: ol-counter
}
.content-region-wrapper ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--theme-accent-primary);
  font-weight: 600
}
.content-region-wrapper table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--ui-tile-surface,rgba(255,255,255,.03));
  border: 1px solid var(--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(--herospin-subtle-text-content,#c9ccd6);
  font-family: var(--text-base, 'Montserrat', system-ui, sans-serif)
}
.content-region-wrapper table thead tr:first-child th:first-child {
  border-top-left-radius: 10px
}
.content-region-wrapper table thead tr:first-child th:last-child {
  border-top-right-radius: 10px
}
.content-region-wrapper table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px
}
.content-region-wrapper table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px
}
.content-region-wrapper table thead tr {
  background: var(--alt-bg,rgba(255,255,255,.06))
}
.content-region-wrapper table thead th {
  font-weight: 700;
  color: var(--text-content,#fff);
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid var(--edge,rgba(255,255,255,.12));
  font-size: .875rem;
  background: 0 0;
  letter-spacing: .2px
}
.content-region-wrapper table thead th:last-child {
  border-right: none
}
.content-region-wrapper table tbody tr:nth-child(odd) {
  background: 0 0
}
.content-region-wrapper table tbody tr:nth-child(2n) {
  background: var(--alt-bg,rgba(255,255,255,.03))
}
.content-region-wrapper table tbody td {
  padding: 14px 20px;
  border-right: 1px solid var(--edge,rgba(255,255,255,.06));
  border-bottom: 1px solid var(--edge,rgba(255,255,255,.06));
  color: var(--herospin-subtle-text-content,#c9ccd6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6
}
.content-region-wrapper table tbody td:last-child {
  border-right: none
}
.content-region-wrapper table tbody tr:last-child td {
  border-bottom: none
}
.faq-block {
  background: var(--alt-bg,rgba(255,255,255,.02));
  border: 1px solid var(--edge,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 28px 32px 32px;
  margin: 30px auto;
  font-family: Montserrat,system-ui,sans-serif
}
.faq-block .questions-title {
  color: var(--text-content,#fff);
  font-family: var(--ui-font-family-heading, 'Montserrat', system-ui, sans-serif);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-top: 4px
}
.faq-block .faq-card-box {
  background: var(--ui-tile-surface,rgba(255,255,255,.04));
  border: 1px solid var(--edge,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 14px;
  color: var(--herospin-subtle-text-content,#b1b4bc)
}
.faq-block .faq-card-box:last-child {
  margin-bottom: 0
}
.faq-block .questions-ask-row {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text-content,#fff);
  margin: 0 0 12px
}
.faq-block .faq-section-answer {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 400;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--herospin-subtle-text-content,#b1b4bc)
}
.faq-block .faq-section-answer p {
  margin: 0 0 8px
}
.faq-block .faq-section-answer p:last-child {
  margin-bottom: 0
}
.faq-block .faq-section-answer b,
.faq-block .faq-section-answer strong {
  font-weight: 700;
  color: var(--text-content,#fff)
}
@media (max-width:600px) {
  .content-region-wrapper h1 {
    font-size: 2rem
  }
  .content-region-wrapper h2 {
    font-size: 1.6rem
  }
  .content-region-wrapper h3 {
    font-size: 1.2rem
  }
  .content-region-wrapper table tbody td,
  .content-region-wrapper table thead th {
    padding: 10px 12px;
    font-size: .8rem
  }
  .faq-block {
    padding: 24px 20px 28px;
    margin: 24px 12px
  }
  .faq-block .questions-title {
    font-size: 1.6rem;
    letter-spacing: .3px;
    margin: 0 0 24px;
    padding-top: 4px
  }
  .faq-block .faq-card-box {
    padding: 20px 18px;
    margin-bottom: 12px
  }
  .faq-block .questions-ask-row {
    font-size: 1.05rem;
    line-height: 1.35
  }
  .faq-block .faq-section-answer {
    font-size: .9rem
  }
}
.content-region-wrapper h2 {
  border: none;
  border-bottom: none
}
.content-region-wrapper ol li,
.content-region-wrapper ul li {
  border-bottom: none
}
.content-region-wrapper {
  max-width: 1200px;
  margin: 0 auto
}
.main-site-header-fill-heading {
  color: #fff!important
}
.header-background-deposit,
.masthead-background-promo {
  color: #f9e143!important
}
.site-page-header-surface-button {
  background: #f9e143!important;
  --herospin-reward-cta-grad-top-area: #75f84f!important;
  --theme-bonus-btn-grad-bottom: #226d4d!important;
  background: linear-gradient(180deg,var(--herospin-reward-cta-grad-top-area) 0,var(--theme-bonus-btn-grad-bottom) 100%)!important;
  background-image: linear-gradient(180deg,var(--herospin-reward-cta-grad-top-area) 0,var(--theme-bonus-btn-grad-bottom) 100%)!important
}
.site-page-header-surface-button:hover {
  background: linear-gradient(180deg,var(--theme-bonus-btn-grad-bottom) 0,var(--herospin-reward-cta-grad-top-area) 100%)!important
}