:root {
  --surface: #0b0607;
  --surface-card-box: #14141f;
  --alt-bg: #1a1516;
  --theme-lead: #e74c3c;
  --ui-hover-primary: #ff7262;
  --allyspin-secondary: #b52d1f;
  --theme-text-content: #e8e6e3;
  --allyspin-copy-faded: #9a9a9a;
  --ui-emphasis: #ff6b6b;
  --ui-reward-button-grad-upper: #e74c3c;
  --reward-btn-grad-bottom-area: color-mix(in srgb, #e74c3c, #000 20%);
  --ui-outline: #2a2a3e;
  --ui-gradient: linear-gradient(90deg,  #e74c3c 0%, #b52d1f 100%);
  --allyspin-glow: rgba(255,255,255,0.1);
  --halo-heavy: rgba(255,255,255,0.2);
  --heading-font: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --ui-font-body: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --area-pad: 4.5rem 2rem;
  --allyspin-inset-card: 1.8rem;
  --theme-spacing: 1.5rem;
  --ui-rounding: 3px;
  --allyspin-rounding-card: 6px;
  --glass-fill: #14141f;
  --border-line-frosted: #2a2a3e;
  --frosted-shade: 0 2px 12px rgba(0, 0, 0, 0.3);
  --button-copy: #fff;
  --h-header: 64px;
  --bg-topbar: var(--surface);
  --allyspin-copy-site-header: var(--theme-text-content);
  --topbar-text-content-soft: var(--allyspin-copy-faded);
  --site-header-pill-background: var(--alt-bg);
  --topbar-badge-outline: var(--ui-outline);
  --ui-page-header-button-bg: var(--ui-emphasis);
  --masthead-cta-text: #fff;
  --ui-site-header-promo-bg: #009900;
  --masthead-promo-label: #fff;
  --theme-side-rail-width: 64px;
  --ui-label-accent-color: #fff
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%
}
body {
  font-family: var(--ui-font-body);
  background: var(--surface);
  color: var(--theme-text-content);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--h-header)
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: 1.15
}
a {
  color: var(--theme-lead);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--ui-hover-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(--allyspin-glow)
  }
  50% {
    box-shadow: 0 0 28px var(--halo-heavy)
  }
}
@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
  }
}
.site-widget-region.sub {
  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-panel-main-area {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.page-footer-emblem {
  height: 30px;
  width: auto
}
.colophon-menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.colophon-menu a {
  font-size: .82rem;
  color: var(--allyspin-copy-faded);
  text-decoration: none;
  transition: color .2s
}
.colophon-menu a:hover {
  color: var(--theme-lead);
  text-decoration: underline;
  text-underline-offset: 2px
}
.footer-rule {
  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 {
    --area-pad: 1.8rem 0.8rem;
    --allyspin-inset-card: 0.9rem;
    --theme-spacing: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --area-pad: 2.5rem 1rem;
    --allyspin-inset-card: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --area-pad: 3.5rem 1.5rem;
    --allyspin-inset-card: 1.5rem
  }
}
header {
  background-color: var(--bg-topbar);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--h-header);
  z-index: 9999;
  font-family: var(--heading-font);
  font-family: var(--heading-font)
}
.masthead-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto
}
.masthead-wrapper a {
  color: var(--allyspin-copy-site-header);
  text-decoration: none;
  transition: color .2s
}
.masthead-wrapper a:hover {
  color: unset
}
.page-header-start {
  display: flex;
  align-items: center;
  gap: 32px
}
.site-logo-wrapper {
  display: flex;
  align-items: center
}
.site-logo-wrapper img {
  max-height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block
}
.picker-holder-section {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--site-header-pill-background);
  padding: 4px;
  border-radius: 1000px;
  border: 1px solid var(--topbar-badge-outline)
}
.picker-holder-section > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--topbar-text-content-soft);
  border-radius: 1000px;
  transition: background .2s,color .2s
}
.toggle-start {
  background: var(--theme-lead);
  color: var(--masthead-cta-text)!important
}
.toggle-start img {
  filter: brightness(0) invert(1)
}
.topbar-nav-shell-holder {
  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(--allyspin-copy-site-header);
  height: 100%;
  display: flex;
  align-items: center;
  position: relative
}
.page-header-menu-grid a:hover {
  color: var(--theme-lead)
}
.page-header-menu-grid a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--theme-lead)
}
.page-header-right-row {
  display: flex;
  align-items: center;
  gap: 12px
}
.missions-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--ui-page-header-button-bg);
  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
}
.missions-action:hover {
  filter: brightness(1.1)
}
.missions-action:active {
  transform: translateY(1px)
}
.missions-action img {
  width: 18px;
  height: 18px
}
.missions-heading-wrap {
  letter-spacing: .2px
}
.page-header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .2s
}
.page-header-search:hover {
  background: var(--site-header-pill-background)
}
.page-header-search img {
  opacity: .75
}
.site-masthead-cta-buttons-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700
}
.site-masthead-cta-buttons-grid a {
  padding: 9px 18px;
  border-radius: 1000px;
  line-height: 1;
  letter-spacing: .2px;
  transition: filter .2s,background .2s,transform .15s
}
.sign-in-button {
  border: 1px solid var(--topbar-badge-outline);
  color: var(--allyspin-copy-site-header);
  background: 0 0
}
.sign-in-button:hover {
  background: var(--site-header-pill-background)
}
.register-btn-container {
  position: relative
}
.sign-up-btn {
  background: var(--theme-lead);
  border: 1px solid var(--theme-lead);
  color: var(--button-copy,#fff);
  box-shadow: 0 2px 10px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.2)
}
.sign-up-btn:hover {
  filter: brightness(1.1)
}
.sign-up-btn:active {
  transform: translateY(1px)
}
.register-offer {
  position: absolute;
  top: -13px;
  right: 2px;
  background-color: var(--ui-site-header-promo-bg);
  color: var(--masthead-promo-label);
  border-radius: 1000px;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px 2px 4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  white-space: nowrap
}
.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-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--bg-topbar);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.offcanvas-panel.open {
  left: 0
}
.main-offcanvas-close-area {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--allyspin-copy-site-header);
  cursor: pointer
}
.site-offcanvas-header {
  display: flex;
  justify-content: flex-end
}
.offcanvas-content-holder {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-content-holder .page-header-menu-grid {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-content-holder .page-header-menu-grid a {
  font-size: 16px;
  padding: 12px 0;
  display: block;
  height: auto
}
.offcanvas-backdrop-holder {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.offcanvas-backdrop-holder.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .picker-holder-section,
  .topbar-nav-shell-holder {
    display: none
  }
  .offcanvas-panel .picker-holder-section,
  .offcanvas-panel .topbar-nav-shell-holder {
    display: flex;
    max-width: fit-content
  }
  .offcanvas-panel .page-header-menu-grid {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    gap: 15px
  }
  .offcanvas-panel .picker-holder-section {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .menu-toggle-action,
  .offcanvas-backdrop-holder,
  .offcanvas-panel {
    display: none
  }
}
@media (max-width:768px) {
  .missions-action,
  .page-header-search {
    display: none
  }
  .masthead-wrapper {
    padding: 0 12px
  }
  .page-header-start {
    gap: 8px
  }
  .page-header-right-row {
    gap: 6px;
    flex-shrink: 0
  }
  .site-logo-wrapper {
    max-width: 130px;
    min-width: 0;
    flex-shrink: 1
  }
  .site-logo-wrapper img {
    max-height: 38px;
    object-fit: contain;
    width: auto;
    max-width: 100%
  }
  .menu-toggle-action img {
    width: 20px;
    height: 20px
  }
  .site-masthead-cta-buttons-grid {
    gap: 6px
  }
  .site-masthead-cta-buttons-grid a {
    padding: 7px 12px;
    font-size: 10px;
    white-space: nowrap;
    line-height: 1
  }
  .register-offer {
    font-size: 7px;
    padding: 2px 5px;
    top: -11px;
    right: 0
  }
  .register-offer img {
    width: 8px;
    height: 8px
  }
}
.picker-holder-section > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary {
  width: 64px;
  min-width: 64px;
  background: var(--alt-bg);
  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
}
.site-side-rail-icon-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s
}
.site-side-rail-icon-entry:hover {
  background: var(--surface-card-box)
}
.site-side-rail-icon-entry img {
  opacity: .7;
  transition: opacity .2s
}
.site-side-rail-icon-entry:hover img {
  opacity: 1
}
.side-rail-hr {
  border: 0;
  height: 1px;
  background: rgba(128,128,128,.18);
  width: 80%;
  margin: 4px auto
}
.site-header-fill-bottom-area,
.site-header-fill-bottom-area *,
.topbar-fill,
.topbar-fill * {
  font-family: var(--heading-font)!important
}
.topbar-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-page-header-fill-content-body-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px;
  position: relative;
  z-index: 2
}
.site-page-header-fill-content-body-wrapper br {
  display: none
}
.page-header-bg-name-wrapper {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ui-emphasis)
}
.header-surface-deposit-holder {
  font-size: 105px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--theme-text-content)
}
.header-fill-reward {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-text-content);
  margin-bottom: 20px
}
.site-page-header-surface-button {
  background: var(--theme-lead);
  color: var(--button-copy,#fff);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700
}
.site-page-header-surface-button:hover {
  background: var(--ui-hover-primary);
  transform: translateY(-2px)
}
.header-fill-cta-content-body {
  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
}
.page-header-background-bottom-area-inner {
  text-align: center;
  margin: 0 26px
}
.page-header-background-bottom-area-inner .small-content-box {
  font-size: 10px;
  color: var(--allyspin-copy-faded);
  font-weight: 700
}
.page-header-background-bottom-area-inner .big-inner {
  font-size: 18px;
  font-weight: 800;
  color: #fff
}
@media (max-width:768px) {
  .topbar-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
  }
  .topbar-fill .site-page-header-fill-content-body-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -93px;
    padding: 0 16px;
    gap: 4px
  }
  .site-page-header-fill-content-body-wrapper > a {
    display: block;
    width: 100%
  }
  .page-header-bg-name-wrapper {
    font-size: 13px;
    margin-bottom: 4px
  }
  .header-surface-deposit-holder {
    font-size: 42px;
    line-height: 1.1
  }
  .header-fill-reward {
    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)
  }
  .header-surface-cta-core {
    font-size: 20px
  }
  .page-header-fill-cta-description {
    font-size: 11px
  }
  .site-header-fill-bottom-area {
    background: var(--alt-bg);
    gap: 10px;
    padding: 8px 15px
  }
  .big-inner {
    font-size: 14px
  }
}
.site-page-header-fill-content-body-wrapper > 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
}
.header-fill-cta-content-body {
  display: flex;
  flex-direction: column;
  letter-spacing: 0
}
.header-surface-cta-core {
  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
  }
}
.site-core-group {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.content-body-zone {
  font-size: 15px;
  line-height: 1.8;
  color: var(--allyspin-copy-faded)
}
.content-body-zone p {
  margin-bottom: 1rem
}
.content-body-zone strong {
  color: var(--theme-text-content)
}
.content-body-zone a:not(.main-button):not([class*="-button"]) {
  color: var(--theme-lead);
  text-decoration: underline
}
.content-body-zone a:not(.main-button):not([class*="-button"]):hover {
  color: var(--ui-emphasis)
}
@media (max-width:768px) {
  .site-core-group {
    padding: 5rem 15px 30px
  }
  .content-body-zone {
    font-size: 14px
  }
}
.site-area-support {
  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
}
.site-heading-service-copy-group {
  font-weight: 700;
  font-size: 16px
}
.group-care p {
  color: var(--allyspin-copy-faded);
  font-size: 13px;
  margin-bottom: 0
}
@media (max-width:768px) {
  .site-area-support {
    flex-direction: column;
    padding: 0 16px
  }
}
.main-button {
  font-size: 18px;
  font-weight: 700;
  background: var(--theme-lead);
  color: var(--button-copy,var(--theme-text-content));
  padding: 10px 56px;
  border-radius: 16px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none
}
.main-button:hover {
  background: var(--ui-hover-primary,var(--theme-lead));
  color: var(--button-copy,var(--theme-text-content))
}
.updated-date-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--alt-bg);
  border-radius: 20px;
  font-size: 13px;
  color: var(--ui-emphasis);
  font-weight: 600
}
.site-colophon.page-footer-area {
  background: var(--page-footer-fill,var(--alt-bg,#060e2a));
  color: var(--theme-text-content-page-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-colophon.page-footer-area .colophon-bottom-area,
.site-colophon.page-footer-area .page-footer-splash-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 40px;
  box-sizing: border-box
}
.site-colophon.page-footer-area .page-footer-splash-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 0 24px
}
.site-colophon.page-footer-area .page-footer-emblem {
  height: 60px;
  width: auto;
  max-width: 341px;
  object-fit: contain
}
.site-colophon.page-footer-area .footer-banking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap
}
.site-colophon.page-footer-area .footer-banking img {
  width: 100px;
  height: 50px;
  object-fit: fill;
  flex-shrink: 0
}
.site-colophon.page-footer-area .footer-rule {
  height: 1px;
  background: 0 0;
  margin: 24px 40px
}
.site-colophon.page-footer-area .colophon-bottom-area {
  display: grid;
  grid-template-columns: minmax(120px,1fr) minmax(180px,1.4fr) minmax(220px,1.4fr) minmax(180px,1fr);
  gap: 24px;
  align-items: start;
  padding-top: 24px;
  padding-bottom: 36px
}
.site-colophon.page-footer-area .colophon-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px
}
.site-colophon.page-footer-area .colophon-menu a {
  color: var(--link-footer,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-colophon.page-footer-area .colophon-menu a:hover {
  color: var(--theme-text-content-page-footer,#fff)
}
.site-colophon.page-footer-area .footer-support {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-colophon.page-footer-area .footer-support .colophon-help-center-name-panel {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-colophon.page-footer-area .footer-support p {
  color: var(--theme-text-content-page-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.site-colophon.page-footer-area .site-footer-inbox {
  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-colophon.page-footer-area .site-footer-inbox img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-colophon.page-footer-area .page-footer-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end
}
.site-colophon.page-footer-area .site-footer-locale {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--theme-footer-socials-background,#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-colophon.page-footer-area .site-footer-locale img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
.site-colophon.page-footer-area .site-footer-follow-caption {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.site-colophon.page-footer-area .main-site-footer-socials {
  display: flex;
  gap: 4px
}
.site-colophon.page-footer-area .footer-social-links {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--theme-footer-socials-background,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.site-colophon.page-footer-area .footer-social-links:hover {
  background: var(--ui-emphasis,#5a6178)
}
.site-colophon.page-footer-area .footer-social-links img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
@media (max-width:960px) {
  .site-colophon.page-footer-area .colophon-bottom-area {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
  .site-colophon.page-footer-area .footer-banking {
    gap: 24px
  }
  .site-colophon.page-footer-area .page-footer-side {
    align-items: flex-start
  }
}
@media (max-width:600px) {
  .site-colophon.page-footer-area .colophon-bottom-area {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px
  }
  .site-colophon.page-footer-area .page-footer-splash-area {
    padding: 20px
  }
  .site-colophon.page-footer-area .footer-banking img {
    width: 70px;
    height: 35px
  }
  .site-colophon.page-footer-area .footer-rule {
    margin-left: 20px;
    margin-right: 20px
  }
  .site-colophon.page-footer-area .colophon-bottom-area,
  .site-colophon.page-footer-area .footer-support,
  .site-colophon.page-footer-area .page-footer-side {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-colophon.page-footer-area .footer-banking,
  .site-colophon.page-footer-area .main-site-footer-socials {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-colophon.page-footer-area .colophon-menu {
    align-items: center
  }
  .site-colophon.page-footer-area .site-footer-inbox {
    justify-content: center
  }
}
.site-colophon .colophon-menu:not(:has(a)) {
  display: none
}
.site-colophon .page-footer-menu-main,
.site-colophon .site-footer-navbar-legal {
  text-align: left
}
.site-colophon.page-footer-area .colophon-menu:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-colophon.page-footer-area .colophon-bottom-area:has(.page-footer-menu-main a):not(:has(.site-footer-navbar-legal a)),
  .site-colophon.page-footer-area .colophon-bottom-area:not(:has(.page-footer-menu-main a)):has(.site-footer-navbar-legal a) {
    grid-template-columns: minmax(120px,1fr) minmax(220px,1.4fr) minmax(180px,1fr)
  }
  .site-colophon.page-footer-area .colophon-bottom-area:not(:has(.colophon-menu a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-inner {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.main-site {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.main-site .site-core-group {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px
}
.site-colophon[class] {
  padding-left: var(--theme-side-rail-width,0)
}
.site-colophon[class] .colophon-bottom-area {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .site-colophon[class] {
    padding-left: 0
  }
}
.button-center-block {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.button-center-block .main-button,
.button-center-block a.main-button {
  display: inline-block
}
@media (max-width:768px) {
  .button-center-block {
    display: block;
    margin: 30px auto
  }
  .content-body-zone .table-scroll > table,
  .legal-inner-container .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.faq-caption {
  font-family: var(--heading-font);
  color: var(--theme-text-content);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.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(--theme-lead);
  color: var(--button-copy,#fff)
}
.content-body-zone table td {
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.site-layout-inner > .site-widget-region.sub {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--theme-side-rail-width,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-inner > .main-site {
  margin-left: var(--theme-side-rail-width,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .main-site .site-core-group {
    padding-left: 20px
  }
  .site-layout-inner > .site-widget-region.sub {
    max-width: var(--theme-side-rail-width,80px)
  }
}
@media (max-width:992px) {
  .site-layout-inner > .site-widget-region.sub {
    display: none
  }
  .site-layout-inner > .main-site {
    margin-left: 0
  }
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
.site-side-rail-icon-entry img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.site-side-rail-icon-entry.side-column-icon-mark-lg img {
  object-fit: contain;
  opacity: 1;
  width: 48px;
  height: 48px
}
.picker-holder-section img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.page-header-search img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.register-offer img {
  width: 12px;
  height: 12px;
  object-fit: contain
}
.menu-toggle-action img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.legal-name {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--theme-text-content);
  line-height: 1.15;
  letter-spacing: -.02em
}
.legal-inner-container {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--allyspin-copy-faded);
  max-width: 860px
}
.legal-inner-container p {
  margin-bottom: 1.1rem
}
.legal-inner-container strong {
  color: var(--theme-text-content)
}
.legal-inner-container a {
  color: var(--theme-lead);
  text-decoration: underline;
  text-underline-offset: 2px
}
.legal-inner-container a:hover {
  color: var(--ui-hover-primary,var(--ui-emphasis))
}
.legal-inner-container article em {
  color: var(--allyspin-copy-faded);
  font-style: italic
}
img {
  max-width: 100%;
  height: auto
}
.site-content-img {
  max-width: 30%;
  height: auto;
  object-fit: cover
}
.content-img-left-side-container {
  float: left;
  margin: .75rem 1.8rem 1rem 0
}
.inner-img-right-side {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.content-body-zone h2,
.content-body-zone h3,
.content-body-zone table {
  clear: both
}
.inner-clear-area {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .legal-name {
    font-size: 1.6rem
  }
  .legal-inner-container h1 {
    font-size: 1.5rem
  }
  .legal-inner-container h2 {
    font-size: 1.2rem
  }
  .content-img-left-side-container,
  .inner-img-right-side,
  .site-content-img {
    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,
.legal-inner-container h1,
.legal-inner-container h2,
.legal-inner-container h3 {
  font-family: var(--heading-font);
  color: var(--theme-text-content);
  text-decoration: none;
  border: none
}
.content-body-zone h1,
.legal-inner-container h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.content-body-zone h2,
.legal-inner-container h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.content-body-zone h3,
.legal-inner-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.content-body-zone ul,
.legal-inner-container ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.content-body-zone ul li,
.legal-inner-container ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .6rem;
  line-height: 1.6
}
.content-body-zone ul li::before,
.legal-inner-container ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-lead)
}
.content-body-zone ol,
.legal-inner-container ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.content-body-zone ol li,
.legal-inner-container ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  counter-increment: ol-counter
}
.content-body-zone ol li::before,
.legal-inner-container ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--theme-lead);
  font-weight: 600
}
.content-body-zone table,
.legal-inner-container table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  margin: 1rem 0
}
.content-body-zone table th,
.legal-inner-container table th {
  font-weight: 600;
  color: var(--allyspin-copy-faded);
  padding: .4rem .6rem;
  text-align: left;
  border: none;
  background: 0 0;
  font-size: .9em
}
.content-body-zone table td,
.legal-inner-container table td {
  padding: .4rem .6rem;
  border: none;
  color: var(--theme-text-content);
  font-size: .9em
}
.content-body-zone table tr:nth-child(2n) td,
.legal-inner-container table tr:nth-child(2n) td {
  background: rgba(255,255,255,.015)
}
.content-body-zone table tr:nth-child(odd) td,
.legal-inner-container table tr:nth-child(odd) td {
  background: 0 0
}
.faq-section-group {
  background: var(--alt-bg,rgba(255,255,255,.02));
  border: 1px solid var(--ui-outline,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 28px 32px 32px;
  margin: 30px auto;
  font-family: Montserrat,system-ui,sans-serif
}
.faq-section-group .faq-caption {
  color: var(--theme-text-content,#fff);
  font-family: var(--heading-font, '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-section-group .questions-card-box {
  background: var(--surface-card-box,rgba(255,255,255,.04));
  border: 1px solid var(--ui-outline,rgba(255,255,255,.1));
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 14px;
  color: var(--allyspin-copy-faded,#b1b4bc)
}
.faq-section-group .questions-card-box:last-child {
  margin-bottom: 0
}
.faq-section-group .main-questions-question {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--theme-text-content,#fff);
  margin: 0 0 12px
}
.faq-section-group .faqs-answer {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 400;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--allyspin-copy-faded,#b1b4bc)
}
.faq-section-group .faqs-answer p {
  margin: 0 0 8px
}
.faq-section-group .faqs-answer p:last-child {
  margin-bottom: 0
}
.faq-section-group .faqs-answer b,
.faq-section-group .faqs-answer strong {
  font-weight: 700;
  color: var(--theme-text-content,#fff)
}
@media (max-width:600px) {
  .content-body-zone h1,
  .legal-inner-container h1 {
    font-size: 2rem
  }
  .content-body-zone h2,
  .legal-inner-container h2 {
    font-size: 1.6rem
  }
  .content-body-zone h3,
  .legal-inner-container h3 {
    font-size: 1.2rem
  }
  .faq-section-group {
    padding: 24px 20px 28px;
    margin: 24px 12px
  }
  .faq-section-group .faq-caption {
    font-size: 1.6rem;
    letter-spacing: .3px;
    margin: 0 0 24px;
    padding-top: 4px
  }
  .faq-section-group .questions-card-box {
    padding: 20px 18px;
    margin-bottom: 12px
  }
  .faq-section-group .main-questions-question {
    font-size: 1.05rem;
    line-height: 1.35
  }
  .faq-section-group .faqs-answer {
    font-size: .9rem
  }
}
.content-body-zone h2 {
  border: none;
  border-bottom: none
}
.content-body-zone ol li,
.content-body-zone ul li,
.legal-inner-container ol li,
.legal-inner-container ul li {
  border-bottom: none
}
.content-body-zone {
  max-width: 1200px;
  margin: 0 auto
}
.page-header-bg-name-wrapper {
  color: #fff!important
}
.header-fill-reward,
.header-surface-deposit-holder {
  color: #f0c907!important
}
.site-page-header-surface-button {
  background: #f0c907!important;
  color: #000!important
}
.header-surface-cta-core,
.page-header-fill-cta-description {
  color: #000!important
}