:root {
  --ui-bg: #17181c;
  --surface-panel: #1d1e22;
  --theme-fill-alt: #26272b;
  --ui-accent-primary: #f5bf00;
  --theme-primary-hover: #FFEC60;
  --secondary-alt: #f5bf00;
  --theme-copy: #e8e6e3;
  --golden-crown-copy-muted: #9a9a9a;
  --ui-accent: #b9951d;
  --offer-action-grad-upper: #f5bf00;
  --theme-bonus-btn-grad-bottom: color-mix(in srgb, #f5bf00, #000 20%);
  --edge: #2d2e32;
  --theme-gradient-fill: linear-gradient(315deg,  #f5bf00 0%, #f5bf00 100%);
  --aura: rgba(255,255,255,0.1);
  --strong-aura: rgba(255,255,255,0.2);
  --headline-font: 'Poppins','Helvetica Neue',Arial,sans-serif;
  --content-text: 'Poppins','Helvetica Neue',Arial,sans-serif;
  --area-inset: 3rem 1.5rem;
  --golden-crown-card-spacing: 1.2rem;
  --ui-space: 1rem;
  --curve: 16px;
  --golden-crown-rounding-card: 22px;
  --fill-glass-effect: #1d1e22;
  --ui-edge-glass-effect: #2d2e32;
  --glass-effect-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  --action-label: #000000;
  --h-header: 64px;
  --background-page-header: var(--ui-bg);
  --copy-header: var(--theme-copy);
  --topbar-label-dim: var(--golden-crown-copy-muted);
  --ui-page-header-tag-fill: var(--theme-fill-alt);
  --header-tag-edge: var(--edge);
  --ui-page-header-button-bg: var(--ui-accent);
  --topbar-call-to-action-label: #fff;
  --site-header-offer-surface: #009900;
  --theme-page-header-reward-text-content: #fff;
  --width-aside: 64px;
  --label-accent: #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(--content-text);
  background: var(--ui-bg);
  color: var(--theme-copy);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--h-header)
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headline-font);
  line-height: 1.15
}
a {
  color: var(--ui-accent-primary);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--theme-primary-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(--aura)
  }
  50% {
    box-shadow: 0 0 28px var(--strong-aura)
  }
}
@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.secondary-alt {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--width-aside,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.sidebar-core {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.colophon-top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}
.site-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: .5rem
}
.site-footer-emblem-section {
  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(--golden-crown-copy-muted);
  text-decoration: none;
  transition: color .2s
}
.page-footer-navigation-grid a:hover {
  color: var(--ui-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.colophon-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: .5rem 0
}
.page-footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --area-inset: 1.8rem 0.8rem;
    --golden-crown-card-spacing: 0.9rem;
    --ui-space: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --area-inset: 2.5rem 1rem;
    --golden-crown-card-spacing: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --area-inset: 3.5rem 1.5rem;
    --golden-crown-card-spacing: 1.5rem
  }
}
header {
  background-color: var(--background-page-header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--h-header);
  z-index: 9999;
  font-family: var(--headline-font);
  font-family: var(--headline-font)
}
.masthead-container {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto
}
.masthead-container a {
  color: var(--copy-header);
  text-decoration: none;
  transition: color .2s
}
.masthead-container a:hover {
  color: unset
}
.topbar-start {
  display: flex;
  align-items: center;
  gap: 32px
}
.logo-container-group {
  display: flex;
  align-items: center
}
.logo-container-group img {
  max-height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block
}
.toggle-holder {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--ui-page-header-tag-fill);
  padding: 4px;
  border-radius: 1000px;
  border: 1px solid var(--header-tag-edge)
}
.toggle-holder > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--topbar-label-dim);
  border-radius: 1000px;
  transition: background .2s,color .2s
}
.selector-left-side {
  background: var(--ui-accent-primary);
  color: var(--topbar-call-to-action-label)!important
}
.selector-left-side img {
  filter: brightness(0) invert(1)
}
.site-header-navigation-shell {
  display: flex;
  align-items: center;
  height: 100%
}
.main-header-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  height: 100%
}
.main-header-nav li {
  display: flex;
  align-items: center;
  height: 100%
}
.main-header-nav a {
  color: var(--copy-header);
  height: 100%;
  display: flex;
  align-items: center;
  position: relative
}
.main-header-nav a:hover {
  color: var(--ui-accent-primary)
}
.main-header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ui-accent-primary)
}
.page-header-right-row {
  display: flex;
  align-items: center;
  gap: 12px
}
.main-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(--topbar-call-to-action-label);
  padding: 7px 12px 7px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.18);
  transition: filter .2s,transform .15s
}
.main-missions-action:hover {
  filter: brightness(1.1)
}
.main-missions-action:active {
  transform: translateY(1px)
}
.main-missions-action img {
  width: 18px;
  height: 18px
}
.missions-heading-wrap {
  letter-spacing: .2px
}
.masthead-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .2s
}
.masthead-search:hover {
  background: var(--ui-page-header-tag-fill)
}
.masthead-search img {
  opacity: .75
}
.site-header-call-to-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700
}
.site-header-call-to-action-buttons a {
  padding: 9px 18px;
  border-radius: 1000px;
  line-height: 1;
  letter-spacing: .2px;
  transition: filter .2s,background .2s,transform .15s
}
.sign-in-btn {
  border: 1px solid var(--header-tag-edge);
  color: var(--copy-header);
  background: 0 0
}
.sign-in-btn:hover {
  background: var(--ui-page-header-tag-fill)
}
.site-signup-action-holder {
  position: relative
}
.register-btn {
  background: var(--ui-accent-primary);
  border: 1px solid var(--ui-accent-primary);
  color: var(--action-label,#fff);
  box-shadow: 0 2px 10px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.2)
}
.register-btn:hover {
  filter: brightness(1.1)
}
.register-btn:active {
  transform: translateY(1px)
}
.sign-up-offer {
  position: absolute;
  top: -13px;
  right: 2px;
  background-color: var(--site-header-offer-surface);
  color: var(--theme-page-header-reward-text-content);
  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-cta {
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center
}
.menu-toggle-cta img {
  filter: invert(1)
}
.offcanvas-row {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--background-page-header);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.offcanvas-row.open {
  left: 0
}
.offcanvas-close-wrap {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--copy-header);
  cursor: pointer
}
.offcanvas-topbar {
  display: flex;
  justify-content: flex-end
}
.offcanvas-content-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-content-body .main-header-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-content-body .main-header-nav a {
  font-size: 16px;
  padding: 12px 0;
  display: block;
  height: auto
}
.offcanvas-backdrop-container {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.offcanvas-backdrop-container.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .site-header-navigation-shell,
  .toggle-holder {
    display: none
  }
  .offcanvas-row .site-header-navigation-shell,
  .offcanvas-row .toggle-holder {
    display: flex;
    max-width: fit-content
  }
  .offcanvas-row .main-header-nav {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    gap: 15px
  }
  .offcanvas-row .toggle-holder {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .menu-toggle-cta,
  .offcanvas-backdrop-container,
  .offcanvas-row {
    display: none
  }
}
@media (max-width:768px) {
  .main-missions-action,
  .masthead-search {
    display: none
  }
  .masthead-container {
    padding: 0 12px
  }
  .topbar-start {
    gap: 8px
  }
  .page-header-right-row {
    gap: 6px;
    flex-shrink: 0
  }
  .logo-container-group {
    max-width: 130px;
    min-width: 0;
    flex-shrink: 1
  }
  .logo-container-group img {
    max-height: 38px;
    object-fit: contain;
    width: auto;
    max-width: 100%
  }
  .menu-toggle-cta img {
    width: 20px;
    height: 20px
  }
  .site-header-call-to-action-buttons {
    gap: 6px
  }
  .site-header-call-to-action-buttons a {
    padding: 7px 12px;
    font-size: 10px;
    white-space: nowrap;
    line-height: 1
  }
  .sign-up-offer {
    font-size: 7px;
    padding: 2px 5px;
    top: -11px;
    right: 0
  }
  .sign-up-offer img {
    width: 8px;
    height: 8px
  }
}
.toggle-holder > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary {
  width: 64px;
  min-width: 64px;
  background: var(--theme-fill-alt);
  border-right: 1px solid rgba(128,128,128,.18)
}
.sidebar-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 8px
}
.main-side-rail-icon-mark-unit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s
}
.main-side-rail-icon-mark-unit:hover {
  background: var(--surface-panel)
}
.main-side-rail-icon-mark-unit img {
  opacity: .7;
  transition: opacity .2s
}
.main-side-rail-icon-mark-unit:hover img {
  opacity: 1
}
.site-sidebar-hr {
  border: 0;
  height: 1px;
  background: rgba(128,128,128,.18);
  width: 80%;
  margin: 4px auto
}
.main-header-surface-bottom-area,
.main-header-surface-bottom-area *,
.masthead-background,
.masthead-background * {
  font-family: var(--headline-font)!important
}
.masthead-background {
  background: url(../images/header-bg.png?v=b9b63b2f) 0 0/cover no-repeat;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden
}
.page-header-background-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px
}
.page-header-background-main br {
  display: none
}
.page-header-background-main > a {
  display: inline-block;
  width: auto
}
.site-page-header-background-headline {
  text-transform: uppercase;
  font-size: 36px!important;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ui-accent);
  text-shadow: 2px 2px 4px #000,0 0 15px #000
}
.masthead-surface-deposit {
  font-size: 126px!important;
  font-weight: 900!important;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--theme-copy);
  filter: drop-shadow(0px 2px 2.7px rgba(0, 0, 0, 1)) drop-shadow(2px 2px 2.9px rgba(0, 0, 0, 1))
}
.site-header-bg-promo {
  font-size: 28.8px!important;
  font-weight: 900;
  color: var(--theme-copy);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px #000,0 0 15px #000;
  margin-bottom: 20px
}
.masthead-bg-action {
  background: var(--ui-accent-primary);
  color: var(--action-label,#fff);
  border: none;
  cursor: pointer;
  padding: 9px 58px!important;
  border-radius: 1000px!important;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  width: auto!important;
  box-shadow: none;
  transition: .5s
}
.masthead-bg-action:hover {
  background: var(--theme-primary-hover);
  transform: translateY(-2px)
}
.page-header-background-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0
}
.site-header-bg-button-primary-panel {
  font-size: 24px!important;
  font-weight: 700;
  line-height: 1.6
}
.page-header-fill-button-description-inner {
  font-size: 13px!important;
  font-weight: 500;
  opacity: .8;
  text-transform: none;
  line-height: 1.6
}
.main-header-surface-bottom-area {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--theme-fill-alt);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.main-header-surface-bottom-area::after,
.main-header-surface-bottom-area::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.main-header-surface-bottom-area::before {
  left: 0;
  background: linear-gradient(to right,var(--ui-bg),transparent)
}
.main-header-surface-bottom-area::after {
  right: 0;
  background: linear-gradient(to left,var(--ui-bg),transparent)
}
.main-header-surface-bottom-area p {
  display: none
}
.page-header-surface-bottom-area-inner-panel {
  text-align: center;
  margin: 0 26px
}
.page-header-surface-bottom-area-inner-panel .small-main {
  font-size: 10px;
  color: var(--golden-crown-copy-muted);
  font-weight: 700
}
.page-header-surface-bottom-area-inner-panel .big-main-area {
  font-size: 16px;
  font-weight: 700;
  color: #fff
}
@media (min-width:769px) {
  .page-header-background-main {
    padding-top: calc(12% - 21px)!important;
    padding-bottom: 29px!important
  }
}
@media (max-width:768px) {
  .masthead-background {
    background-image: url(../images/header-bg-mobile.png?v=c401147f);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    padding: 0;
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
    max-width: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
    --banner-drop: 144px;
    margin-bottom: calc(var(--banner-drop) + 16px)
  }
  .masthead-background .page-header-background-main {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--banner-drop) * -1);
    padding: 0 16px;
    gap: 4px
  }
  .site-page-header-background-headline {
    font-size: 20px!important;
    margin-bottom: 4px
  }
  .masthead-surface-deposit {
    font-size: 66px!important;
    line-height: 1.1
  }
  .site-header-bg-promo {
    font-size: 24px!important;
    margin-bottom: 16px
  }
  .main-header-surface-bottom-area {
    background: var(--theme-fill-alt);
    gap: 10px;
    padding: 8px 15px
  }
  .big-main-area {
    font-size: 14px
  }
}
.banking-methods-inner {
  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
}
.banking-methods-inner img {
  width: 72px;
  height: 56px;
  object-fit: fill;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s,transform .2s;
  filter: grayscale(10%)
}
.banking-methods-inner img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px)
}
@media (max-width:768px) {
  .banking-methods-inner {
    gap: 14px 20px;
    padding: 16px
  }
  .banking-methods-inner img {
    width: 56px;
    height: 44px
  }
}
.site-primary-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.content-region-wrapper {
  font-size: 15px;
  line-height: 1.8;
  color: var(--golden-crown-copy-muted)
}
.content-region-wrapper p {
  margin-bottom: 1rem
}
.content-region-wrapper strong {
  color: var(--theme-copy)
}
.content-region-wrapper a:not(.lead-btn-container):not(.application-banner-cta):not([class*="-button"]) {
  color: var(--ui-accent-primary);
  text-decoration: underline
}
.content-region-wrapper a:not(.lead-btn-container):not(.application-banner-cta):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
  }
  .main-application-banner-holder-area,
  .site-primary-row > .main-application-banner-holder-area {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .application-banner-mobile img,
  .site-mobile-banner {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.highlights-shell {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 14px;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1400px
}
.highlight-tile {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  background-color: var(--surface-panel,var(--theme-fill-alt));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform .25s,box-shadow .25s
}
.highlight-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,.22)
}
.highlight-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.55) 100%);
  pointer-events: none
}
.highlights-shell .highlight-tile h3 {
  text-transform: none;
  border: none;
  padding: 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #fff;
  letter-spacing: .2px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  text-align: left;
  width: auto
}
.site-fcdl-payouts-wrap {
  background-image: url(../images/fast-pay.png?v=7710e643)
}
.main-cashback-holder {
  background-image: url(../images/cashback.png?v=bd76098e)
}
.main-vip {
  background-image: url(../images/vip-level.png?v=4bff1963)
}
.slots-area {
  background-image: url(../images/games.png?v=78ad393f)
}
.missions-wrap {
  background-image: url(../images/feature-missions.png?v=280dffa4)
}
@media (max-width:1024px) {
  .highlights-shell {
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:768px) {
  .highlights-shell {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 16px 24px;
    gap: 12px;
    margin: 0 -16px;
    scrollbar-width: thin
  }
  .highlights-shell::-webkit-scrollbar {
    height: 4px
  }
  .highlights-shell::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2);
    border-radius: 2px
  }
  .highlight-tile {
    flex: 0 0 44%;
    max-width: 44%;
    scroll-snap-align: start
  }
  .highlights-shell .highlight-tile h3 {
    font-size: 12px
  }
}
.area-care {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 30px 0;
  max-width: 800px;
  margin: 0 auto
}
.unit-care-container {
  flex: 1;
  background: var(--theme-fill-alt);
  border-radius: 8px;
  padding: 18px;
  max-width: 320px
}
.main-title-support-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}
.main-title-support-group img {
  width: 33px;
  height: 33px;
  flex-shrink: 0
}
.site-heading-service-copy-group {
  font-weight: 700;
  font-size: 16px
}
.unit-care-container p {
  color: var(--golden-crown-copy-muted);
  font-size: 13px;
  margin-bottom: 0
}
@media (max-width:768px) {
  .area-care {
    flex-direction: column;
    padding: 0 16px
  }
}
.main-application-banner-holder-area {
  margin: 32px auto;
  max-width: 800px
}
.site-mobile-banner {
  display: flex;
  align-items: stretch;
  background: var(--surface-panel,var(--theme-fill-alt));
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--edge);
  box-shadow: 0 4px 18px rgba(0,0,0,.18)
}
.application-banner-content-body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}
.app-promo-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--edge);
  background: var(--theme-fill-alt);
  align-self: flex-start
}
.app-promo-banner-caption-image {
  border-radius: 6px;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: 0 0
}
.site-app-promo-banner-text-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.mobile-banner-text-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--theme-copy);
  letter-spacing: .2px
}
.app-banner-text-rate {
  display: flex;
  gap: 1px
}
.app-banner-text-rate img {
  width: 12px;
  height: 12px
}
.app-banner-text-rate .site-star-half {
  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-title-panel {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--theme-copy);
  font-family: var(--headline-font);
  margin: 0
}
.mobile-banner-description {
  color: var(--golden-crown-copy-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0
}
.main-app-promo-banner-btn-shell {
  margin-top: 4px
}
.main-app-promo-banner-btn-shell .lead-btn-container {
  margin: 0;
  display: inline-block
}
.main-application-banner-image-container {
  flex: 0 0 38%;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  padding: 16px;
  box-sizing: border-box
}
.app-promo-banner-image {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px
}
.application-banner-mobile {
  display: none
}
.application-banner-mobile img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  border-radius: 12px
}
@media (max-width:768px) {
  .site-mobile-banner {
    flex-direction: column;
    min-height: unset
  }
  .main-application-banner-image-container {
    display: none
  }
  .application-banner-mobile {
    display: block;
    padding: 0;
    line-height: 0
  }
  .application-banner-mobile img {
    max-width: 100%;
    width: 100%;
    border-radius: 0
  }
  .application-banner-content-body {
    padding: 16px 20px 24px;
    gap: 12px
  }
  .application-banner-content-body .app-promo-banner-tag {
    margin-top: -2px
  }
  .application-banner-title-panel {
    font-size: 20px
  }
  .main-app-promo-banner-btn-shell .lead-btn-container {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.lead-btn-container {
  font-size: 18px;
  font-weight: 700;
  background: var(--ui-accent-primary);
  color: var(--action-label,#fff);
  padding: 10px 56px;
  border-radius: 30px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  text-decoration: none;
  transition: filter .2s
}
.lead-btn-container:hover {
  filter: brightness(1.15);
  color: var(--action-label,#fff)
}
.updated-date-grid {
  background: var(--theme-fill-alt);
  margin: 30px auto;
  border-radius: 10px;
  border-left: 5px solid var(--ui-accent-primary);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 30px;
  color: var(--theme-copy);
  max-width: 1400px
}
@media (max-width:768px) {
  .updated-date-grid {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.site-footer-area.site-colophon {
  background: var(--ui-site-footer-fill,var(--theme-fill-alt,#060e2a));
  color: var(--theme-text-page-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.site-footer-area.site-colophon .colophon-top-section,
.site-footer-area.site-colophon .page-footer-lower {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box
}
.site-footer-area.site-colophon .colophon-top-section {
  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-area.site-colophon .site-footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}
.site-footer-area.site-colophon .site-footer-emblem-section {
  width: 135px;
  height: 34px;
  object-fit: contain;
  object-position: left center
}
.site-footer-area.site-colophon .colophon-connect-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.site-footer-area.site-colophon .page-footer-socials {
  display: flex;
  gap: 4px
}
.site-footer-area.site-colophon .footer-social-links {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--golden-crown-site-footer-social-fill,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.site-footer-area.site-colophon .footer-social-links:hover {
  background: var(--ui-accent,#5a6178)
}
.site-footer-area.site-colophon .footer-social-links img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
.site-footer-area.site-colophon .site-footer-brand-mark-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 8px
}
.site-footer-area.site-colophon .page-footer-navigation-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px
}
.site-footer-area.site-colophon .page-footer-navigation-grid a {
  color: var(--link-page-footer,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.site-footer-area.site-colophon .page-footer-navigation-grid a:hover {
  color: var(--theme-text-page-footer,#fff)
}
.site-footer-area.site-colophon .footer-support {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.site-footer-area.site-colophon .footer-support .main-site-footer-support-heading {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.site-footer-area.site-colophon .footer-support p {
  color: var(--theme-text-page-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.site-footer-area.site-colophon .site-footer-contact-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-text-page-footer,#fff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none
}
.site-footer-area.site-colophon .site-footer-contact-box img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.site-footer-area.site-colophon .colophon-divider {
  height: 0;
  background: 0 0;
  margin: 0
}
.site-footer-area.site-colophon .page-footer-lower {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "license  right" "copyright right";
  column-gap: 24px;
  row-gap: 8px;
  align-items: start;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 36px
}
.site-footer-area.site-colophon .colophon-certification-panel {
  grid-area: license;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--footer-certification,#869dee);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer
}
.site-footer-area.site-colophon .page-footer-notice {
  grid-area: copyright;
  color: var(--theme-text-page-footer,#a2a5af);
  font-size: 12px;
  font-weight: 400;
  line-height: 22.29px;
  margin: 0;
  max-width: 720px
}
.site-footer-area.site-colophon .site-colophon-bottom-area-right {
  grid-area: right;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 16px
}
.site-footer-area.site-colophon .colophon-certification-panel .colophon-chevron {
  width: 12px;
  height: 12px
}
.site-footer-area.site-colophon .footer-secure-chip-box {
  height: 48px;
  width: auto;
  max-width: none;
  object-fit: contain
}
.site-footer-area.site-colophon .site-footer-locale {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--golden-crown-site-footer-social-fill,#444a5f);
  border: none;
  border-radius: 22px;
  padding: 8px 12px 8px 16px;
  color: var(--theme-text-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-footer-area.site-colophon .site-footer-locale .colophon-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
@media (max-width:960px) {
  .site-footer-area.site-colophon .colophon-top-section {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}
@media (max-width:600px) {
  .site-footer-area.site-colophon .colophon-top-section {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .site-footer-area.site-colophon .site-footer-emblem-section {
    object-position: center
  }
  .site-footer-area.site-colophon .page-footer-lower {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
    grid-template-areas: "license" "copyright" "right";
    grid-template-columns: 1fr;
    row-gap: 12px
  }
  .site-footer-area.site-colophon .colophon-divider {
    margin: 0
  }
  .site-footer-area.site-colophon .colophon-top-section,
  .site-footer-area.site-colophon .footer-support,
  .site-footer-area.site-colophon .page-footer-lower,
  .site-footer-area.site-colophon .site-footer-logo-wrap {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .site-footer-area.site-colophon .page-footer-socials,
  .site-footer-area.site-colophon .site-colophon-bottom-area-right {
    justify-content: center;
    flex-wrap: wrap
  }
  .site-footer-area.site-colophon .page-footer-navigation-grid {
    align-items: center
  }
  .site-footer-area.site-colophon .site-footer-contact-box {
    justify-content: center
  }
  .site-footer-area.site-colophon .footer-secure-chip-box {
    height: 36px
  }
  .site-footer-area.site-colophon .site-colophon-bottom-area-right {
    align-self: start
  }
}
.site-footer-area .page-footer-navigation-grid:not(:has(a)) {
  display: none
}
.site-footer-area .page-footer-navbar-legal,
.site-footer-area .site-page-footer-menu-accent-primary {
  text-align: left
}
.site-footer-area.site-colophon .page-footer-navigation-grid:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .site-footer-area.site-colophon .colophon-top-section:has(.site-page-footer-menu-accent-primary a):not(:has(.page-footer-navbar-legal a)),
  .site-footer-area.site-colophon .colophon-top-section:not(:has(.site-page-footer-menu-accent-primary a)):has(.page-footer-navbar-legal a) {
    grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(220px,297px)
  }
  .site-footer-area.site-colophon .colophon-top-section:not(:has(.page-footer-navigation-grid a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-inner {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.site-main-wrapper {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-main-wrapper .site-primary-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px
}
.highlights-shell,
.site-mobile-banner {
  margin-left: auto;
  margin-right: auto
}
.site-footer-area[class] {
  padding-left: var(--width-aside,0)
}
.site-footer-area[class] .colophon-top-section,
.site-footer-area[class] .page-footer-lower {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .site-footer-area[class] {
    padding-left: 0
  }
}
.call-to-action-center-block {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.call-to-action-center-block .lead-btn-container,
.call-to-action-center-block a.lead-btn-container {
  display: inline-block
}
@media (max-width:768px) {
  .call-to-action-center-block {
    display: block;
    margin: 30px auto
  }
  .content-region-wrapper .table-scroll > table,
  .legal-main-wrap .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.lead-btn-container.application-banner-cta {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.faqs-headline,
.highlights-shell h2 {
  font-family: var(--headline-font);
  color: var(--theme-copy);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.highlights-shell .highlight-tile {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  background-size: contain;
  background-position: center 40px
}
.highlights-shell .highlight-tile 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(--ui-accent-primary);
  color: var(--action-label,#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-inner > .site-widget-region.secondary-alt {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--width-aside,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-inner > .site-main-wrapper {
  margin-left: var(--width-aside,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-main-wrapper .site-primary-row {
    padding-left: 20px
  }
  .site-layout-inner > .site-widget-region.secondary-alt {
    max-width: var(--width-aside,80px)
  }
}
@media (max-width:992px) {
  .site-layout-inner > .site-widget-region.secondary-alt {
    display: none
  }
  .site-layout-inner > .site-main-wrapper {
    margin-left: 0
  }
}
.masthead-background {
  position: relative;
  z-index: 1
}
.page-header-background-main {
  position: relative;
  z-index: 2
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
.main-side-rail-icon-mark-unit img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.main-side-rail-icon-mark-unit.sidebar-icon-lg-box img {
  object-fit: contain;
  opacity: 1;
  width: 48px;
  height: 48px
}
.toggle-holder img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.masthead-search img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.sign-up-offer img {
  width: 12px;
  height: 12px;
  object-fit: contain
}
.menu-toggle-cta img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.legal-heading-container {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--theme-copy);
  line-height: 1.15;
  letter-spacing: -.02em
}
.legal-main-wrap {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--golden-crown-copy-muted)
}
.legal-main-wrap p {
  margin-bottom: 1.1rem
}
.legal-main-wrap strong {
  color: var(--theme-copy)
}
.content-region-wrapper li,
.legal-main-wrap li {
  color: var(--golden-crown-copy-muted)
}
.content-region-wrapper li strong,
.legal-main-wrap li strong {
  color: var(--golden-crown-copy-muted);
  font-weight: 700
}
.legal-main-wrap a {
  color: var(--ui-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.legal-main-wrap a:hover {
  color: var(--theme-primary-hover,var(--ui-accent))
}
.legal-main-wrap article em {
  color: var(--golden-crown-copy-muted);
  font-style: italic
}
img {
  max-width: 100%;
  height: auto
}
.site-content-img {
  max-width: 24%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain
}
.site-inner-img-right-side {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.content-region-wrapper h2,
.content-region-wrapper h3,
.content-region-wrapper table {
  clear: both
}
.main-inner-clear {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .legal-heading-container {
    font-size: 1.6rem
  }
  .legal-main-wrap h1 {
    font-size: 1.5rem
  }
  .legal-main-wrap h2 {
    font-size: 1.2rem
  }
  .site-content-img,
  .site-inner-img-right-side {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    max-height: none;
    height: auto;
    margin: 1rem auto
  }
}
.content-region-wrapper h1,
.content-region-wrapper h2,
.content-region-wrapper h3,
.faqs-ask-grid,
.faqs-headline,
.legal-main-wrap h1,
.legal-main-wrap h2,
.legal-main-wrap h3 {
  font-family: var(--headline-font);
  color: var(--theme-copy);
  text-decoration: none;
  border: none
}
.content-region-wrapper h1,
.legal-main-wrap h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.content-region-wrapper h2,
.faqs-headline,
.legal-main-wrap h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.content-region-wrapper h3,
.faqs-ask-grid,
.legal-main-wrap h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.content-region-wrapper ul,
.legal-main-wrap ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.content-region-wrapper ul li,
.legal-main-wrap ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: .6rem;
  line-height: 1.6
}
.content-region-wrapper ul li::before,
.legal-main-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ui-accent-primary)
}
.content-region-wrapper ol,
.legal-main-wrap ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.content-region-wrapper ol li,
.legal-main-wrap ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  counter-increment: ol-counter
}
.content-region-wrapper ol li::before,
.legal-main-wrap ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--ui-accent-primary);
  font-weight: 600
}
.content-region-wrapper table,
.legal-main-wrap table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface-panel,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(--golden-crown-copy-muted,#c9ccd6);
  font-family: var(--content-text, 'Montserrat', system-ui, sans-serif)
}
.content-region-wrapper table thead tr:first-child th:first-child,
.legal-main-wrap table thead tr:first-child th:first-child {
  border-top-left-radius: 10px
}
.content-region-wrapper table thead tr:first-child th:last-child,
.legal-main-wrap table thead tr:first-child th:last-child {
  border-top-right-radius: 10px
}
.content-region-wrapper table tbody tr:last-child td:first-child,
.legal-main-wrap table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px
}
.content-region-wrapper table tbody tr:last-child td:last-child,
.legal-main-wrap table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px
}
.content-region-wrapper table thead tr,
.legal-main-wrap table thead tr {
  background: var(--theme-fill-alt,rgba(255,255,255,.06))
}
.content-region-wrapper table thead th,
.legal-main-wrap table thead th {
  font-weight: 700;
  color: var(--theme-copy,#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,
.legal-main-wrap table thead th:last-child {
  border-right: none
}
.content-region-wrapper table tbody tr:nth-child(odd),
.legal-main-wrap table tbody tr:nth-child(odd) {
  background: 0 0
}
.content-region-wrapper table tbody tr:nth-child(2n),
.legal-main-wrap table tbody tr:nth-child(2n) {
  background: var(--theme-fill-alt,rgba(255,255,255,.03))
}
.content-region-wrapper table tbody td,
.legal-main-wrap 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(--golden-crown-copy-muted,#c9ccd6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6
}
.content-region-wrapper table tbody td:last-child,
.legal-main-wrap table tbody td:last-child {
  border-right: none
}
.content-region-wrapper table tbody tr:last-child td,
.legal-main-wrap table tbody tr:last-child td {
  border-bottom: none
}
.questions-unit-row {
  background: var(--theme-fill-alt,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
}
.questions-unit-row .faqs-headline {
  color: var(--theme-copy,#fff);
  font-family: var(--headline-font, 'Montserrat', system-ui, sans-serif);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-top: 4px
}
.questions-unit-row .faq-section-panel {
  background: var(--surface-panel,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(--golden-crown-copy-muted,#b1b4bc)
}
.questions-unit-row .faq-section-panel:last-child {
  margin-bottom: 0
}
.questions-unit-row .faqs-ask-grid {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--theme-copy,#fff);
  margin: 0 0 12px
}
.questions-unit-row .faqs-reply {
  font-family: Montserrat,system-ui,sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--golden-crown-copy-muted,#b1b4bc)
}
.questions-unit-row .faqs-reply p {
  margin: 0 0 8px
}
.questions-unit-row .faqs-reply p:last-child {
  margin-bottom: 0
}
.questions-unit-row .faqs-reply b,
.questions-unit-row .faqs-reply strong {
  font-weight: 700;
  color: var(--theme-copy,#fff)
}
@media (max-width:600px) {
  .content-region-wrapper h1,
  .legal-main-wrap h1 {
    font-size: 2rem
  }
  .content-region-wrapper h2,
  .faqs-headline,
  .legal-main-wrap h2 {
    font-size: 1.6rem
  }
  .content-region-wrapper h3,
  .faqs-ask-grid,
  .legal-main-wrap h3 {
    font-size: 1.2rem
  }
  .content-region-wrapper table tbody td,
  .content-region-wrapper table thead th,
  .legal-main-wrap table tbody td,
  .legal-main-wrap table thead th {
    padding: 10px 12px;
    font-size: .8rem
  }
  .questions-unit-row {
    padding: 24px 20px 28px;
    margin: 24px 12px
  }
  .questions-unit-row .faqs-headline {
    letter-spacing: .3px;
    margin: 0 0 24px;
    padding-top: 4px
  }
  .questions-unit-row .faq-section-panel {
    padding: 20px 18px;
    margin-bottom: 12px
  }
  .questions-unit-row .faqs-ask-grid {
    line-height: 1.35
  }
}
.content-region-wrapper h2 {
  border: none;
  border-bottom: none
}
.content-region-wrapper ol li,
.content-region-wrapper ul li,
.legal-main-wrap ol li,
.legal-main-wrap ul li {
  border-bottom: none
}
.content-region-wrapper,
.legal-main-wrap {
  max-width: 1400px;
  margin: 0 auto
}
[data-slot=content-image-1]:not(a):not(button) {
  max-width: 30%!important;
  max-height: none!important
}
[data-slot=content-image-2]:not(a):not(button),
[data-slot=golden-crown-casino-australia-content-image-1]:not(a):not(button) {
  max-width: 25%!important;
  max-height: none!important
}
[data-slot=app-content-image-1]:not(a):not(button) {
  max-width: 35%!important;
  max-height: none!important
}
[data-slot=app-content-image-2]:not(a):not(button) {
  max-width: 15%!important;
  max-height: none!important
}
@media (max-width:768px) {
  [data-slot=app-content-image-1]:not(a):not(button),
  [data-slot=app-content-image-2]:not(a):not(button),
  [data-slot=content-image-1]:not(a):not(button),
  [data-slot=content-image-2]:not(a):not(button),
  [data-slot=golden-crown-casino-australia-content-image-1]:not(a):not(button) {
    max-width: 100%!important
  }
}
.site-page-header-background-headline {
  color: #fff!important
}
.masthead-surface-deposit,
.site-header-bg-promo {
  color: #ffe520!important
}
.masthead-bg-action {
  background: #f5bf00!important
}
:root .main-missions-action,
:root .main-missions-action .missions-heading-wrap {
  color: #000!important
}
:root .register-btn {
  color: #0a0608!important
}
:root .selector-left-side,
:root .selector-left-side .switcher-heading {
  color: #000!important
}