:root {
  --herospin-bg: #0f181b;
  --surface-panel: #14141f;
  --theme-background-alt: #1e272a;
  --ui-main: #9b59b6;
  --main-hover: #c17fdc;
  --herospin-secondary: #7b2fa0;
  --copy: #e8e6e3;
  --herospin-subtle-text-content: #9a9a9a;
  --herospin-accent-color: #d8a8ff;
  --offer-action-grad-upper: #9b59b6;
  --theme-bonus-btn-grad-bottom: color-mix(in srgb, #9b59b6, #000 20%);
  --border-line: #2a2a3e;
  --blend: linear-gradient(160deg,  #9b59b6 0%, #7b2fa0 100%);
  --ui-glow: rgba(255,255,255,0.1);
  --herospin-strong-halo: rgba(255,255,255,0.2);
  --headline-font: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --text-base: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --block-spacing: 4.5rem 2rem;
  --card-box-spacing: 1.8rem;
  --herospin-spacing: 1.5rem;
  --corner: 10px;
  --corner-card: 16px;
  --herospin-glass-background: #14141f;
  --edge-glass-effect: #2a2a3e;
  --herospin-frosted-depth: 0 2px 12px rgba(0, 0, 0, 0.3);
  --text-button: #fff;
  --theme-masthead-h: 64px;
  --topbar-fill: var(--herospin-bg);
  --page-header-label: var(--copy);
  --site-header-copy-subtle: var(--herospin-subtle-text-content);
  --header-tag-bg: var(--theme-background-alt);
  --topbar-badge-outline: var(--border-line);
  --site-header-button-background: var(--herospin-accent-color);
  --masthead-cta-text: #fff;
  --ui-page-header-reward-bg: #009900;
  --theme-page-header-reward-text-content: #fff;
  --theme-side-rail-width: 64px;
  --herospin-emphasis-copy: #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(--text-base);
  background: var(--herospin-bg);
  color: var(--copy);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--theme-masthead-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(--main-hover)
}
@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(--ui-glow)
  }
  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-wrapper.secondary-alt-grid {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--theme-side-rail-width,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.side-column-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
}
.page-footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem
}
.site-footer-emblem-section {
  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(--herospin-subtle-text-content);
  text-decoration: none;
  transition: color .2s
}
.page-footer-navbar-area a:hover {
  color: var(--ui-main);
  text-decoration: underline;
  text-underline-offset: 2px
}
.footer-separator-panel {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .5rem 0
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --block-spacing: 1.8rem 0.8rem;
    --card-box-spacing: 0.9rem;
    --herospin-spacing: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --block-spacing: 2.5rem 1rem;
    --card-box-spacing: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --block-spacing: 3.5rem 1.5rem;
    --card-box-spacing: 1.5rem
  }
}
header {
  background-color: var(--topbar-fill);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--theme-masthead-h);
  z-index: 9999;
  border-bottom: 1px solid var(--border-line);
  font-family: var(--headline-font)
}
.site-header-holder {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto
}
.site-header-holder a {
  color: var(--page-header-label);
  text-decoration: none;
  transition: color .2s
}
.site-header-holder a:hover {
  color: unset
}
.site-header-left-side {
  display: flex;
  align-items: center;
  gap: 32px
}
.site-logo-wrapper {
  display: flex;
  align-items: center
}
.site-logo-wrapper img {
  max-height: 34px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain
}
.picker-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--header-tag-bg);
  padding: 4px;
  border-radius: 1000px;
  border: 1px solid var(--topbar-badge-outline);
  background-color: color-mix(in srgb,var(--theme-background-alt) 71%,transparent)
}
.picker-container > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--site-header-copy-subtle);
  border-radius: 1000px;
  transition: background .2s,color .2s
}
.picker-container > a.active {
  background: var(--ui-main);
  color: var(--masthead-cta-text)!important
}
.picker-container > a.active img {
  filter: brightness(0) invert(1)
}
.picker-container > a:not(.active) {
  color: var(--herospin-subtle-text-content)
}
.main-topbar-menu-wrapper {
  display: flex;
  align-items: center;
  height: 100%
}
.page-header-menu-grid {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  height: 100%
}
.page-header-menu-grid li {
  display: flex;
  align-items: center;
  height: 100%
}
.page-header-menu-grid a {
  color: var(--page-header-label);
  height: 100%;
  display: flex;
  align-items: center;
  position: relative
}
.page-header-menu-grid a:hover {
  color: var(--ui-main)
}
.page-header-menu-grid a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ui-main)
}
.site-page-header-end {
  display: flex;
  align-items: center;
  gap: 12px
}
.main-missions-action {
  background: linear-gradient(180deg,var(--herospin-accent-color,#5d7ce8) 0,color-mix(in srgb,var(--herospin-accent-color,#4453c2),#000 25%) 100%)!important;
  box-shadow: 0 0 8px color-mix(in srgb,var(--herospin-accent-color,#433ca7) 70%,transparent),inset 0 1px 0 rgba(255,255,255,.4)!important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--site-header-button-background);
  color: var(--masthead-cta-text);
  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-action:hover {
  filter: brightness(1.1)
}
.main-missions-action:active {
  transform: translateY(1px)
}
.main-missions-action img {
  width: 18px;
  height: 18px
}
.missions-name-row {
  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(--header-tag-bg)
}
.main-header-search img {
  opacity: .75
}
.topbar-button-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700
}
.topbar-button-buttons a {
  padding: 9px 18px;
  border-radius: 1000px;
  line-height: 1;
  letter-spacing: .2px;
  transition: filter .2s,background .2s,transform .15s
}
.sign-in-cta {
  border: 1px solid var(--topbar-badge-outline);
  color: var(--page-header-label);
  background: 0 0
}
.sign-in-cta:hover {
  background: var(--header-tag-bg)
}
.signup-cta-container {
  position: relative
}
.join-button {
  background: var(--ui-main);
  border: 1px solid var(--ui-main);
  color: var(--text-button,#fff);
  box-shadow: 0 2px 10px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.2)
}
.join-button:hover {
  filter: brightness(1.1)
}
.join-button:active {
  transform: translateY(1px)
}
.sign-up-bonus {
  position: absolute;
  top: -13px;
  right: 2px;
  background-color: var(--ui-page-header-reward-bg);
  color: var(--theme-page-header-reward-text-content);
  border-radius: 1000px;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px 3px 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  white-space: nowrap
}
.menu-toggle-action {
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center
}
.menu-toggle-action img {
  filter: invert(1)
}
.offcanvas-block {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--topbar-fill);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.offcanvas-block.open {
  left: 0
}
.offcanvas-close-block {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--page-header-label);
  cursor: pointer
}
.main-offcanvas-masthead {
  display: flex;
  justify-content: flex-end
}
.offcanvas-content-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-content-body .page-header-menu-grid {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-content-body .page-header-menu-grid a {
  font-size: 16px;
  padding: 12px 0;
  display: block;
  height: auto
}
.offcanvas-backdrop-block {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.offcanvas-backdrop-block.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .main-topbar-menu-wrapper,
  .picker-container {
    display: none
  }
  .offcanvas-block .main-topbar-menu-wrapper,
  .offcanvas-block .picker-container {
    display: flex;
    max-width: fit-content
  }
  .offcanvas-block .page-header-menu-grid {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    gap: 15px
  }
  .offcanvas-block .picker-container {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .menu-toggle-action,
  .offcanvas-backdrop-block,
  .offcanvas-block {
    display: none
  }
}
@media (max-width:768px) {
  .main-header-search,
  .main-missions-action {
    display: none
  }
  .site-header-holder {
    padding: 0 16px
  }
  .site-header-left-side {
    gap: 10px
  }
  .topbar-button-buttons a {
    padding: 8px 14px;
    font-size: 11px
  }
  .site-page-header-end {
    flex-shrink: 0
  }
  .site-logo-wrapper {
    max-width: 100px;
    min-width: 0;
    flex-shrink: 1
  }
  .site-logo-wrapper img {
    max-width: 100%
  }
}
.picker-container > 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-column-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 8px
}
.site-aside-glyph-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s
}
.site-aside-glyph-item:hover {
  background: var(--surface-panel)
}
.site-aside-glyph-item img {
  opacity: .7;
  transition: opacity .2s
}
.site-aside-glyph-item:hover img {
  opacity: 1
}
.site-sidebar-hr {
  border: 0;
  height: 1px;
  background: rgba(128,128,128,.18);
  width: 80%;
  margin: 4px auto
}
.site-header-background-lower,
.site-header-background-lower *,
.site-header-fill,
.site-header-fill * {
  font-family: var(--headline-font)!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
}
.site-header-surface-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px
}
.site-header-surface-inner br {
  display: none
}
.site-header-bg-headline {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--herospin-accent-color)
}
.header-surface-deposit-holder {
  font-size: 105px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--copy)
}
.page-header-surface-reward-section {
  font-size: 24px;
  font-weight: 600;
  color: var(--copy);
  margin-bottom: 20px
}
.site-page-header-surface-button {
  background: var(--ui-main);
  color: var(--text-button,#fff);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700
}
.site-page-header-surface-button:hover {
  background: var(--main-hover);
  transform: translateY(-2px)
}
.site-header-bg-action-content-body {
  display: flex;
  flex-direction: column;
  align-items: center
}
.site-header-background-lower {
  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
}
.site-header-background-lower::after,
.site-header-background-lower::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.site-header-background-lower::before {
  left: 0;
  background: linear-gradient(to right,var(--herospin-bg),transparent)
}
.site-header-background-lower::after {
  right: 0;
  background: linear-gradient(to left,var(--herospin-bg),transparent)
}
.site-header-background-lower p {
  display: none
}
.page-header-bg-lower-inner {
  text-align: center;
  margin: 0 26px
}
.page-header-bg-lower-inner .small-content-group {
  font-size: 11px;
  color: var(--herospin-subtle-text-content);
  font-weight: 600
}
.page-header-bg-lower-inner .main-big-content {
  font-size: 14px;
  font-weight: 700;
  color: #fff
}
@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%
  }
  .site-header-bg-headline {
    font-size: 13px;
    margin-bottom: 4px
  }
  .header-surface-deposit-holder {
    font-size: 42px;
    line-height: 1.1
  }
  .page-header-surface-reward-section {
    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)
  }
  .site-header-bg-button-primary-panel {
    font-size: 20px
  }
  .page-header-fill-cta-description {
    font-size: 11px
  }
  .site-header-background-lower {
    background: var(--theme-background-alt);
    gap: 10px;
    padding: 8px 15px
  }
  .main-big-content {
    font-size: 14px
  }
}
.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
}
.site-header-bg-action-content-body {
  display: flex;
  flex-direction: column;
  letter-spacing: 0
}
.site-header-bg-button-primary-panel {
  font-size: 18px!important;
  font-weight: 700;
  line-height: 1.6
}
.page-header-fill-cta-description {
  opacity: .8;
  text-transform: none;
  line-height: 1.6;
  font-weight: 500;
  font-size: 10px!important
}
.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
  }
}
.slots-filter {
  background: var(--herospin-bg);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 56px;
  margin: 24px 0
}
.slots-filter .games-filter-bar-strip {
  display: flex;
  align-items: stretch;
  height: 60px;
  overflow-x: auto;
  scrollbar-width: thin;
  width: 100%;
  max-width: 1344px
}
.slots-filter .games-filter-bar-strip::-webkit-scrollbar {
  height: 4px
}
.slots-filter .games-filter-bar-strip::-webkit-scrollbar-thumb {
  background: var(--border-line);
  border-radius: 2px
}
.slots-filter .slots-sort-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 60px;
  background: 0 0;
  color: var(--herospin-subtle-text-content);
  font-family: var(--headline-font);
  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
}
.slots-filter .slots-sort-tab:hover {
  color: var(--copy)
}
.slots-filter .slots-sort-tab.is-active {
  background: var(--theme-background-alt);
  color: var(--copy)
}
.slots-filter .slots-sort-tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ui-main)
}
.slots-filter .games-selector-symbol {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}
@media (max-width:768px) {
  .slots-filter {
    padding: 0 16px
  }
  .slots-filter .slots-sort-tab {
    padding: 0 10px;
    font-size: 11px
  }
}
.site-primary-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.content-body-zone {
  font-size: 15px;
  line-height: 1.8;
  color: var(--herospin-subtle-text-content)
}
.content-body-zone p {
  margin-bottom: 1rem
}
.content-body-zone strong {
  color: var(--copy)
}
.content-body-zone a:not(.lead-btn-container):not(.mobile-banner-call-to-action):not([class*="-button"]) {
  color: var(--ui-main);
  text-decoration: underline
}
.content-body-zone a:not(.lead-btn-container):not(.mobile-banner-call-to-action):not([class*="-button"]):hover {
  color: var(--herospin-accent-color)
}
@media (max-width:768px) {
  .site-primary-area {
    padding: 5rem 15px 30px
  }
  .content-body-zone {
    font-size: 14px
  }
  .app-promo-banner-wrapper,
  .site-primary-area > .app-promo-banner-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .main-mobile-banner img,
  .site-app-banner {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.perks-holder {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
  padding: 30px 0;
  margin: 0 auto
}
.main-highlight-card {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  background-color: var(--surface-panel,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-highlight-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,.22)
}
.main-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
}
.main-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-container {
  background-image: url(../images/fast-pay.png)
}
.main-cashback-holder {
  background-image: url(../images/cashback.png)
}
.site-vip {
  background-image: url(../images/vip-level.png)
}
.site-game {
  background-image: url(../images/games.png)
}
.missions-container {
  background-image: url(../images/feature-missions.png)
}
@media (max-width:1024px) {
  .perks-holder {
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:768px) {
  .perks-holder {
    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-holder::-webkit-scrollbar {
    height: 4px
  }
  .perks-holder::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2);
    border-radius: 2px
  }
  .main-highlight-card {
    flex: 0 0 44%;
    max-width: 44%;
    scroll-snap-align: start
  }
  .main-highlight-card h3 {
    font-size: 12px
  }
}
.app-promo-banner-wrapper {
  margin: 32px auto;
  max-width: 800px
}
.site-app-banner {
  display: flex;
  align-items: stretch;
  background: var(--surface-panel,var(--theme-background-alt));
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--border-line);
  box-shadow: 0 4px 18px rgba(0,0,0,.18)
}
.app-banner-content-body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}
.mobile-banner-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-line);
  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
}
.main-application-banner-label-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.application-banner-label-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--copy);
  letter-spacing: .2px
}
.mobile-banner-tag-rate {
  display: flex;
  gap: 1px
}
.mobile-banner-tag-rate img {
  width: 12px;
  height: 12px
}
.mobile-banner-tag-rate .star-half-block {
  opacity: .85
}
.application-banner-tag-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-headline-grid {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--copy);
  font-family: var(--headline-font);
  margin: 0
}
.main-application-banner-description {
  color: var(--herospin-subtle-text-content);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0
}
.app-banner-action-container {
  margin-top: 4px
}
.app-banner-action-container .lead-btn-container {
  margin: 0;
  display: inline-block
}
.main-app-banner-image-holder-grid {
  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: cover;
  object-position: center;
  display: block;
  border-radius: 8px
}
.main-mobile-banner {
  display: none
}
.main-mobile-banner img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  border-radius: 12px
}
@media (max-width:768px) {
  .site-app-banner {
    flex-direction: column;
    min-height: unset
  }
  .main-app-banner-image-holder-grid {
    display: none
  }
  .main-mobile-banner {
    display: flex;
    justify-content: center;
    padding: 16px 16px 0
  }
  .main-mobile-banner img {
    max-width: 320px
  }
  .app-banner-content-body {
    padding: 20px 20px 24px;
    gap: 12px
  }
  .application-banner-headline-grid {
    font-size: 20px
  }
  .app-banner-action-container .lead-btn-container {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.lead-btn-container {
  font-size: 18px;
  font-weight: 700;
  background: var(--ui-main);
  color: var(--text-button,#fff);
  padding: 10px 56px;
  border-radius: 30px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none;
  transition: filter .2s
}
.lead-btn-container:hover {
  filter: brightness(1.15);
  color: var(--text-button,#fff)
}
.updated-date-wrap {
  background: var(--theme-background-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(--copy);
  max-width: 1240px
}
@media (max-width:768px) {
  .updated-date-wrap {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.site-footer-grid.footer-container {
  background: var(--colophon-background,var(--theme-background-alt,#060e2a));
  color: var(--text-content-site-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-footer-grid.footer-container .colophon-top-area,
.site-footer-grid.footer-container .site-footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box
}
.site-footer-grid.footer-container .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-footer-grid.footer-container .page-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}
.site-footer-grid.footer-container .site-footer-emblem-section {
  width: 135px;
  height: 34px;
  object-fit: contain;
  object-position: left center
}
.site-footer-grid.footer-container .site-footer-social-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.site-footer-grid.footer-container .site-page-footer-socials {
  display: flex;
  gap: 4px
}
.site-footer-grid.footer-container .site-footer-social {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--site-footer-socials-surface,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.site-footer-grid.footer-container .site-footer-social:hover {
  background: var(--herospin-accent-color,#5a6178)
}
.site-footer-grid.footer-container .site-footer-social img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
.site-footer-grid.footer-container .footer-brand-title-group {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 8px
}
.site-footer-grid.footer-container .page-footer-navbar-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px
}
.site-footer-grid.footer-container .page-footer-navbar-area a {
  color: var(--link-footer,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-footer-grid.footer-container .page-footer-navbar-area a:hover {
  color: var(--text-content-site-footer,#fff)
}
.site-footer-grid.footer-container .main-site-footer-help {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-footer-grid.footer-container .main-site-footer-help .site-footer-help-center-heading {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-footer-grid.footer-container .main-site-footer-help p {
  color: var(--text-content-site-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.site-footer-grid.footer-container .site-footer-contact-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-content-site-footer,#fff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none
}
.site-footer-grid.footer-container .site-footer-contact-box img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-footer-grid.footer-container .footer-separator-panel {
  height: 0;
  background: 0 0;
  margin: 0
}
.site-footer-grid.footer-container .site-footer-bottom {
  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-footer-grid.footer-container .footer-certification {
  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-footer-grid.footer-container .site-footer-copyright {
  grid-area: copyright;
  color: var(--text-content-site-footer,#a2a5af);
  font-size: 12px;
  font-weight: 400;
  line-height: 22.29px;
  margin: 0;
  max-width: 720px
}
.site-footer-grid.footer-container .main-footer-lower-end {
  grid-area: right;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 16px
}
.site-footer-grid.footer-container .footer-certification .page-footer-chevron {
  width: 12px;
  height: 12px
}
.site-footer-grid.footer-container .site-page-footer-secure-pill-container {
  height: 48px;
  width: auto;
  max-width: none;
  object-fit: contain
}
.site-footer-grid.footer-container .site-footer-language {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--site-footer-socials-surface,#444a5f);
  border: none;
  border-radius: 22px;
  padding: 8px 12px 8px 16px;
  color: var(--text-content-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-footer-grid.footer-container .site-footer-language .page-footer-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
@media (max-width:960px) {
  .site-footer-grid.footer-container .colophon-top-area {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}
@media (max-width:600px) {
  .site-footer-grid.footer-container .colophon-top-area {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .site-footer-grid.footer-container .site-footer-emblem-section {
    object-position: center
  }
  .site-footer-grid.footer-container .site-footer-bottom {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
    grid-template-areas: "license" "copyright" "right";
    grid-template-columns: 1fr;
    row-gap: 12px
  }
  .site-footer-grid.footer-container .footer-separator-panel {
    margin: 0
  }
  .site-footer-grid.footer-container .colophon-top-area,
  .site-footer-grid.footer-container .main-site-footer-help,
  .site-footer-grid.footer-container .page-footer-logo,
  .site-footer-grid.footer-container .site-footer-bottom {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-footer-grid.footer-container .main-footer-lower-end,
  .site-footer-grid.footer-container .site-page-footer-socials {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-footer-grid.footer-container .page-footer-navbar-area {
    align-items: center
  }
  .site-footer-grid.footer-container .site-footer-contact-box {
    justify-content: center
  }
  .site-footer-grid.footer-container .site-page-footer-secure-pill-container {
    height: 36px
  }
  .site-footer-grid.footer-container .main-footer-lower-end {
    align-self: start
  }
}
.site-footer-grid .page-footer-navbar-area:not(:has(a)) {
  display: none
}
.site-footer-grid .colophon-navigation-accent-primary-section,
.site-footer-grid .site-footer-navigation-legal-area {
  text-align: left
}
.site-footer-grid.footer-container .page-footer-navbar-area:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-footer-grid.footer-container .colophon-top-area:has(.colophon-navigation-accent-primary-section a):not(:has(.site-footer-navigation-legal-area a)),
  .site-footer-grid.footer-container .colophon-top-area:not(:has(.colophon-navigation-accent-primary-section a)):has(.site-footer-navigation-legal-area a) {
    grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(220px,297px)
  }
  .site-footer-grid.footer-container .colophon-top-area: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-content-body-block {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-content-body-block .site-primary-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px
}
.main-faq-section-block,
.perks-holder,
.site-app-banner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto
}
.site-footer-grid[class] {
  padding-left: var(--theme-side-rail-width,0)
}
.site-footer-grid[class] .colophon-top-area,
.site-footer-grid[class] .site-footer-bottom {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .site-footer-grid[class] {
    padding-left: 0
  }
}
.button-center-block {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.button-center-block .lead-btn-container,
.button-center-block a.lead-btn-container {
  display: inline-block
}
.lead-btn-container.mobile-banner-call-to-action {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.main-faq-section-block h2,
.perks-holder h2 {
  font-family: var(--headline-font);
  color: var(--copy);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.perks-holder .main-highlight-card {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  background-size: contain;
  background-position: center 40px
}
.perks-holder .main-highlight-card 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 td {
  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-zone-wrapper.secondary-alt-grid {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--theme-side-rail-width,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-wrap > .site-content-body-block {
  margin-left: var(--theme-side-rail-width,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-content-body-block .site-primary-area {
    padding-left: 20px
  }
  .site-layout-wrap > .widget-zone-wrapper.secondary-alt-grid {
    max-width: var(--theme-side-rail-width,80px)
  }
}
@media (max-width:992px) {
  .site-layout-wrap > .widget-zone-wrapper.secondary-alt-grid {
    display: none
  }
  .site-layout-wrap > .site-content-body-block {
    margin-left: 0
  }
}
.site-header-fill {
  position: relative;
  z-index: 1
}
.site-header-surface-inner {
  position: relative;
  z-index: 2
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
@media (max-width:768px) {
  .button-center-block {
    display: block;
    margin: 30px auto
  }
  .content-body-zone .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.site-aside-glyph-item img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.site-aside-glyph-item.aside-icon-mark-lg img {
  object-fit: contain;
  opacity: 1;
  width: 48px;
  height: 48px
}
.picker-container img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.main-header-search img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.sign-up-bonus img {
  width: 12px;
  height: 12px;
  object-fit: contain
}
.menu-toggle-action img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.game-sort-row a {
  text-decoration: none!important
}
.legal-heading-container {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--copy);
  line-height: 1.15;
  letter-spacing: -.02em
}
img {
  max-width: 100%;
  height: auto
}
.content-body-img-holder {
  max-width: 30%;
  height: auto;
  object-fit: cover
}
.content-img-start {
  float: left;
  margin: .75rem 1.8rem 1rem 0
}
.main-img-end {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.content-body-zone h2,
.content-body-zone h3,
.content-body-zone table {
  clear: both
}
.main-content-clear {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .legal-heading-container {
    font-size: 1.6rem
  }
  .content-body-img-holder,
  .content-img-start,
  .main-img-end {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    margin: 1rem auto
  }
}
.content-body-zone h1,
.content-body-zone h2,
.content-body-zone h3 {
  font-family: var(--headline-font);
  text-decoration: none;
  border: none
}
.content-body-zone h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ui-main);
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.content-body-zone h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--herospin-accent-color);
  margin-top: 2rem;
  margin-bottom: .6rem
}
.content-body-zone h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--copy);
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.content-body-zone ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.content-body-zone ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .6rem
}
.content-body-zone ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--ui-main)
}
.content-body-zone ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.content-body-zone ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  counter-increment: ol-counter
}
.content-body-zone ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--ui-main);
  font-weight: 600
}
.content-body-zone table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-line);
  margin: 1.5rem 0
}
.content-body-zone table th {
  background: var(--ui-main);
  color: var(--text-button,#fff);
  font-weight: 700;
  color: var(--copy);
  padding: .65rem .9rem;
  text-align: left;
  border: 1px solid var(--border-line);
  background: 0 0
}
.content-body-zone table td {
  padding: .65rem .9rem;
  border: 1px solid var(--border-line);
  color: var(--copy)
}
.main-questions-numbered {
  margin: 30px auto;
  counter-reset: faq-num
}
.main-questions-numbered h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--copy)
}
.main-questions-numbered .faq-section-entry-area {
  counter-increment: faq-num;
  position: relative;
  padding: 20px 0 20px 64px;
  border-bottom: 1px solid var(--border-line)
}
.main-questions-numbered .faq-section-entry-area:first-child {
  border-top: 1px solid var(--border-line)
}
.main-questions-numbered .faq-section-entry-area:last-child {
  border-bottom: none
}
.main-questions-numbered .faq-section-entry-area::before {
  content: counter(faq-num,decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ui-main);
  line-height: 1;
  font-family: var(--headline-font)
}
.main-questions-numbered .faqs-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--copy);
  margin: 0 0 8px;
  line-height: 1.4
}
.main-questions-numbered .questions-reply p {
  font-size: 14px;
  color: var(--herospin-subtle-text-content);
  line-height: 1.7;
  margin: 0
}
@media (max-width:600px) {
  .main-questions-numbered .faq-section-entry-area {
    padding-left: 48px
  }
  .main-questions-numbered .faq-section-entry-area::before {
    font-size: 1.2rem
  }
}
.content-body-zone h2 {
  border: none;
  border-bottom: none
}
.content-body-zone ol li,
.content-body-zone ul li {
  border-bottom: none
}
.content-body-zone {
  max-width: 1200px;
  margin: 0 auto
}
[data-slot=deutschland-content-image-1]:not(a):not(button) {
  max-width: 45%!important
}
@media (max-width:768px) {
  [data-slot=deutschland-content-image-1]:not(a):not(button) {
    max-width: 100%!important
  }
}
.site-header-bg-headline {
  color: #fff!important
}
.header-surface-deposit-holder,
.page-header-surface-reward-section {
  color: #f8dd30!important
}
.site-page-header-surface-button {
  background: #f9c815!important;
  --offer-action-grad-upper: #75f84f!important;
  --theme-bonus-btn-grad-bottom: #226d4d!important;
  background: linear-gradient(180deg,var(--offer-action-grad-upper) 0,var(--theme-bonus-btn-grad-bottom) 100%)!important;
  background-image: linear-gradient(180deg,var(--offer-action-grad-upper) 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(--offer-action-grad-upper) 100%)!important
}