/* deploy-css-4339dd16dbe1 */

:root{
  --st-primary:#D4AF37;
  --st-secondary:#292826;
  --st-accent:#F4F4F4;
  --st-bg:#ffffff;
  --st-text:#14171f;
  --st-text-soft:#5b6270;
  --st-panel:#f4f6f9;
  --st-hairline:rgba(0,0,0,.12);
  --st-header-h:64px;
  --st-mobile-cta-h:66px;
  --st-font-head:'Fredoka',sans-serif;
  --st-font-body:'Mulish',sans-serif;
}

@media(min-width:880px){
  :root{ --st-header-h:84px; }
}

*,*::before,*::after{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  margin:0;
  background:var(--st-bg);
  color:var(--st-text);
  font-family:var(--st-font-body);
  font-size:clamp(1rem,0.95rem + 0.2vw,1.05rem);
  line-height:1.6;
  padding-top:var(--st-header-h);
  padding-bottom:calc(var(--st-mobile-cta-h) + env(safe-area-inset-bottom));
  overflow-x:hidden;
}

@media(min-width:880px){
  body{ padding-bottom:0; }
}

img{max-width:100%;display:block;}

h1,h2,h3{
  font-family:var(--st-font-head);
  color:var(--st-secondary);
  margin:0 0 .5rem;
  line-height:1.2;
}

h1{font-size:clamp(1.9rem,1.4rem + 3vw,3.1rem);}
h2{font-size:clamp(1.5rem,1.2rem + 1.6vw,2.2rem);position:relative;padding-bottom:.5rem;}
h2::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:56px;height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--st-primary),#e9cf7a);
}
p{margin:0 0 .75rem;color:var(--st-text-soft);}

a{color:var(--st-primary);text-decoration:none;}
a:focus-visible,button:focus-visible{outline:3px solid var(--st-primary);outline-offset:2px;}

ul,ol{margin:0;padding:0;}

.st-section-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
}

.st-about-text{max-width:70ch;}

.st-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:.7rem 1.6rem;
  border-radius:var(--st-ds-radius-btn);
  font-weight:700;
  font-family:var(--st-font-head);
  font-size:.95rem;
  cursor:pointer;
  border:var(--st-ds-border);
  box-shadow:var(--st-ds-shadow);
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.st-btn:hover{transform:translateY(-1px);}
.st-btn-primary{background:var(--st-primary);color:var(--st-secondary);}
.st-btn-primary:hover{background:#e2c25a;}
.st-btn-ghost{background:rgba(255,255,255,.08);color:var(--st-primary);}
.st-btn-ghost:hover{background:rgba(255,255,255,.16);}
.st-btn-lg{padding:.9rem 2rem;font-size:1.05rem;}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
    scroll-behavior:auto!important;
  }
}

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--st-header-h);
  z-index:1000;
  background:linear-gradient(135deg,var(--st-secondary),#3c3833);
  transition:height .2s ease;
}
.st-header::after{
  content:'';
  position:absolute;
  left:0;right:0;bottom:0;
  height:3px;
  background:linear-gradient(90deg,transparent,var(--st-primary),transparent);
}
.st-header.is-scrolled{height:calc(var(--st-header-h) - 10px);}

.st-header-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0 var(--st-ds-pad);
}

.st-brand{
  display:inline-flex;
  align-items:center;
  background:#fdfdfd;
  padding:.4rem .8rem;
  border-radius:var(--st-ds-radius-sm);
  flex:0 0 auto;
}
.st-brand img{height:32px;width:auto;}

.st-nav{display:none;flex:1;}
@media(min-width:880px){
  .st-nav{display:flex;justify-content:center;}
}
.st-nav-list{
  display:flex;
  align-items:center;
  gap:1.75rem;
  list-style:none;
}
.st-nav-link{
  color:#f2f0ec;
  font-weight:600;
  font-size:.95rem;
  padding:.5rem .1rem;
  position:relative;
}
.st-nav-link::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:0;height:2px;
  background:var(--st-primary);
  transition:width .2s ease;
}
.st-nav-link:hover::after{width:100%;}
.st-nav-link.is-current{color:var(--st-primary);}

.st-auth-cluster{
  display:none;
  align-items:center;
  gap:.75rem;
  flex:0 0 auto;
}
@media(min-width:880px){
  .st-auth-cluster{display:flex;}
}

.st-hamburger{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;
  height:44px;
  background:rgba(255,255,255,.08);
  border:none;
  border-radius:var(--st-ds-radius-sm);
  cursor:pointer;
  flex:0 0 auto;
}
@media(min-width:880px){
  .st-hamburger{display:none;}
}
.st-hamburger-bar{
  width:22px;height:2px;
  background:var(--st-primary);
  border-radius:2px;
  transition:transform .2s ease,opacity .2s ease;
}
.st-hamburger.is-active .st-hamburger-bar:nth-child(1),
.st-menu-toggle.is-active .st-hamburger-bar:nth-child(1){transform:translateY(7px) rotate(45deg);}
.st-hamburger.is-active .st-hamburger-bar:nth-child(2),
.st-menu-toggle.is-active .st-hamburger-bar:nth-child(2){opacity:0;}
.st-hamburger.is-active .st-hamburger-bar:nth-child(3),
.st-menu-toggle.is-active .st-hamburger-bar:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.st-mobile-menu{
  display:none;
  position:fixed;
  top:var(--st-header-h);
  left:0;right:0;
  max-height:calc(100vh - var(--st-header-h));
  overflow-y:auto;
  list-style:none;
  background:var(--st-secondary);
  padding:.5rem var(--st-ds-pad) 1.5rem;
  z-index:999;
}
.st-mobile-menu.is-open{display:block;}
@media(min-width:880px){
  .st-mobile-menu{display:none!important;}
}
.st-mobile-link{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:.6rem .5rem;
  color:#f2f0ec;
  font-weight:600;
  border-bottom:none;
}
.st-mobile-menu li + li{border-top:1px solid rgba(255,255,255,.08);}
.st-mobile-link-primary{
  color:var(--st-secondary);
  background:var(--st-primary);
  border-radius:var(--st-ds-radius-btn);
  justify-content:center;
  margin-top:.75rem;
}

.st-hero{
  background:linear-gradient(160deg,#fdf5df 0%,#ffffff 55%);
}
.st-hero-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
  display:grid;
  grid-template-columns:1fr;
  gap:1.75rem;
}
@media(min-width:880px){
  .st-hero-inner{grid-template-columns:1fr 1fr;align-items:center;gap:2.5rem;}
}
.st-hero-copy{
  background:linear-gradient(150deg,var(--st-primary),#e6c860);
  color:var(--st-secondary);
  border-radius:var(--st-ds-radius-lg);
  padding:2rem 1.75rem;
}
.st-hero-title{color:var(--st-secondary);margin-bottom:.6rem;}
.st-hero-subtitle{color:#3a3626;margin-bottom:1.25rem;font-size:1.05rem;}
.st-hero-media{
  border-radius:var(--st-ds-radius-lg);
  overflow:hidden;
  background:var(--st-panel);
  aspect-ratio:4/3;
}
.st-hero-slider{
  display:flex;
  height:100%;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.st-hero-slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  height:100%;
}
.st-hero-slide img{
  width:100%;height:100%;
  object-fit:cover;
  border-radius:var(--st-ds-radius-lg);
}

.st-facts{background:var(--st-panel);}
.st-facts-heading{margin-bottom:1.25rem;}

.st-about{background:var(--st-bg);}
.st-about-points{
  list-style:none;
  display:grid;
  gap:.6rem;
  margin-top:1rem;
}
.st-about-points li{
  position:relative;
  padding-left:1.75rem;
  color:var(--st-text);
}
.st-about-points li::before{
  content:'★';
  position:absolute;left:0;top:0;
  color:var(--st-primary);
}

.st-games{background:var(--st-panel);}
.st-games-intro{max-width:70ch;}
.st-games-points{
  list-style:none;
  display:grid;
  gap:.5rem;
  margin:1rem 0 1.5rem;
}
.st-games-points li{
  position:relative;
  padding-left:1.5rem;
}
.st-games-points li::before{
  content:'';
  position:absolute;left:0;top:.5em;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--st-primary);
}
.st-games-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
  margin:1.5rem 0;
}
@media(min-width:600px){
  .st-games-grid{grid-template-columns:repeat(3,1fr);}
}
@media(min-width:880px){
  .st-games-grid{grid-template-columns:repeat(4,1fr);gap:1.25rem;}
}
@media(min-width:1200px){
  .st-games-grid{grid-template-columns:repeat(5,1fr);}
}
.st-game-card{
  background:#ffffff;
  border-radius:var(--st-ds-radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease;
}
.st-game-card:hover{transform:translateY(-4px);}
.st-game-img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:var(--st-ds-radius) var(--st-ds-radius) 0 0;
}
.st-game-name{
  text-align:center;
  padding:.75rem .5rem;
  font-weight:700;
  font-size:.9rem;
  color:var(--st-text);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.st-games-cta{display:flex;width:fit-content;margin:0 auto;}

.st-bonus{background:var(--st-bg);}
.st-bonus-list{
  list-style:none;
  display:grid;
  gap:.85rem;
  margin:1rem 0 1.5rem;
}
.st-bonus-list li{
  position:relative;
  background:var(--st-panel);
  border-radius:var(--st-ds-radius-sm);
  padding:1rem 1.25rem 1rem 1.75rem;
  overflow:hidden;
}
.st-bonus-list li::before{
  content:'';
  position:absolute;left:0;top:0;bottom:0;
  width:6px;
  background:var(--st-primary);
}

.st-payments{background:var(--st-panel);}
.st-payments-intro{max-width:70ch;}
.st-payments table{
  width:100%;
  border-collapse:collapse;
  margin-top:1rem;
  background:#ffffff;
  border-radius:var(--st-ds-radius-sm);
  overflow:hidden;
}
.st-payments table th,.st-payments table td{
  padding:.75rem 1rem;
  text-align:left;
  border-bottom:1px solid var(--st-hairline);
  font-size:.95rem;
}

.st-registration{background:var(--st-bg);}
.st-reg-steps{
  list-style:none;
  display:grid;
  gap:1.25rem;
  margin:1.25rem 0 1.5rem;
  counter-reset:step;
}
.st-reg-steps li{
  position:relative;
  padding-left:3.25rem;
  min-height:2.5rem;
  counter-increment:step;
}
.st-reg-steps li::before{
  content:counter(step);
  position:absolute;
  left:0;top:0;
  width:2.5rem;height:2.5rem;
  border-radius:50%;
  background:var(--st-primary);
  color:var(--st-secondary);
  font-family:var(--st-font-head);
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}
.st-reg-steps li:not(:last-child)::after{
  content:'';
  position:absolute;
  left:1.25rem;top:2.5rem;
  width:2px;height:calc(100% - 1.25rem);
  background:var(--st-hairline);
}

.st-kyc{background:var(--st-panel);}
.st-kyc-text{max-width:70ch;}
.st-kyc-points{
  list-style:none;
  display:grid;
  gap:.6rem;
  margin-top:1rem;
}
.st-kyc-points li{
  position:relative;
  padding-left:1.75rem;
}
.st-kyc-points li::before{
  content:'✓';
  position:absolute;left:0;top:0;
  color:var(--st-primary);
  font-weight:700;
}

.st-security{background:var(--st-bg);}
.st-security-text{max-width:70ch;}

.st-mobile-app{background:var(--st-panel);}
.st-mobile-text{max-width:70ch;}

.st-responsible{background:var(--st-bg);}
.st-responsible-text{max-width:70ch;}

.st-faq{background:var(--st-panel);}
.st-faq-list{
  display:grid;
  gap:.85rem;
  margin-top:1.25rem;
}
.st-faq-item{
  background:#ffffff;
  border-radius:var(--st-ds-radius-sm);
  padding:.25rem 1.25rem;
}
.st-faq-q{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  min-height:52px;
  font-weight:700;
  font-family:var(--st-font-head);
  color:var(--st-secondary);
}
.st-faq-q::-webkit-details-marker{display:none;}
.st-faq-q::after{
  content:'+';
  flex:0 0 auto;
  color:var(--st-primary);
  font-size:1.4rem;
  transition:transform .2s ease;
}
details[open] .st-faq-q::after{transform:rotate(45deg);}
.st-faq-a{
  padding:0 0 1.1rem;
  color:var(--st-text-soft);
}

.st-footer{background:var(--st-secondary);color:#f2f0ec;}
.st-footer-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
  gap:2rem;
  text-align:center;
}
.st-footer-col{
  flex:1 1 220px;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:200px;
}
.st-footer-brand img{
  background:#fdfdfd;
  padding:.4rem .8rem;
  border-radius:var(--st-ds-radius-sm);
  height:32px;
  width:auto;
  margin-bottom:.75rem;
}
.st-footer-text,.st-footer-disclaimer{color:#c9c6c0;font-size:.9rem;}
.st-footer-heading{
  color:var(--st-primary);
  font-size:1rem;
  margin-bottom:.75rem;
}
.st-footer-nav ul{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.9rem 1.25rem;
}
.st-footer-nav a{color:#f2f0ec;font-size:.9rem;}
.st-footer-nav a:hover{color:var(--st-primary);}

.st-footer-payments{
  background:rgba(255,255,255,.05);
  padding:1.5rem var(--st-ds-pad);
}
.st-payments-footer-heading{
  text-align:center;
  color:#f2f0ec;
  font-size:1rem;
  margin-bottom:1rem;
}
.st-payments-row{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem;
}
.st-payment-logo{
  max-height:32px;
  width:auto;
  object-fit:contain;
  background:#ffffff;
  border-radius:var(--st-ds-radius-sm);
  padding:.5rem .85rem;
}

.st-footer-bottom{
  text-align:center;
  padding:1rem var(--st-ds-pad);
  background:rgba(0,0,0,.25);
  font-size:.8rem;
  color:#b8b5af;
}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  display:flex;
  gap:.6rem;
  padding:.6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background:var(--st-secondary);
  z-index:1200;
}
.st-mobile-cta .st-btn{flex:1;}
@media(min-width:880px){
  .st-mobile-cta{display:none;}
}

.st-cookie-banner{
  position:fixed;
  left:1rem;right:1rem;
  bottom:calc(var(--st-mobile-cta-h) + .75rem);
  z-index:1150;
  background:#ffffff;
  color:var(--st-text);
  border-radius:var(--st-ds-radius-sm);
  padding:1rem 1.25rem;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.75rem;
  max-width:calc(var(--st-ds-measure) - 2rem);
  margin:0 auto;
}
@media(min-width:880px){
  .st-cookie-banner{bottom:1rem;}
}
.st-cookie-actions{display:flex;gap:.5rem;flex-wrap:wrap;}

.st-back-to-top{
  position:fixed;
  right:1rem;
  bottom:calc(var(--st-mobile-cta-h) + 4.5rem);
  width:48px;height:48px;
  border-radius:50%;
  background:var(--st-primary);
  color:var(--st-secondary);
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.25rem;
  cursor:pointer;
  z-index:1100;
}
@media(min-width:880px){
  .st-back-to-top{bottom:2rem;}
}
.is-hidden{display:none!important;}
[class*="-mobile-menu"].is-open,[class*="-mobile-nav"].is-open,[class*="-mobile-menu"].is-open.is-hidden{display:block !important}
[class*="-mobile-nav"].is-open [class*="-mobile-menu"],[class*="-mobile-menu"].is-open [class*="-mobile-nav-list"]{display:block !important}
[class*="-mobile-nav"].is-open [class*="-mobile-nav-list"],[class*="-mobile-menu"].is-open [class*="-nav-list"]{display:flex !important}

@media(max-width:879px){[class*="-header-inner"],[class*="-header"] > [class*="-inner"]{position:relative}[data-burger-open="true"]{display:flex !important;flex-direction:column;align-items:stretch;gap:.15rem;position:absolute;left:0;right:0;top:100%;bottom:auto;height:auto;z-index:70;margin:0;padding:.5rem;list-style:none;max-height:75vh;overflow-y:auto}:where([data-burger-open="true"]){background:inherit;box-shadow:0 14px 28px rgba(0,0,0,.28)}[data-burger-open="true"] > li{width:100%}[data-burger-open="true"] a{display:block;width:100%;padding:.7rem .9rem;min-height:44px}}

html{scroll-behavior:smooth}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
[id]{scroll-margin-top:calc(var(--st-hdr,64px) + 12px)}

.st-hero-slider{display:flex;gap:.75rem;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.st-hero-slider::-webkit-scrollbar{display:none}
.st-hero-slide{flex:0 0 100%;scroll-snap-align:center;width:100%;height:auto;object-fit:cover;border-radius:var(--st-ds-radius,14px)}
.st-hero-img{max-width:100%;height:auto;border-radius:var(--st-ds-radius,14px)}
:where(.st-games-grid){display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}
@media(min-width:640px){:where(.st-games-grid){grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(min-width:900px){:where(.st-games-grid){grid-template-columns:repeat(4,minmax(0,1fr))}}
@media(min-width:1400px){:where(.st-games-grid){grid-template-columns:repeat(5,minmax(0,1fr))}}
.st-game-img{width:100%;height:auto;aspect-ratio:600/400;object-fit:cover;display:block;border-radius:var(--st-ds-radius-sm,10px)}
.st-payments-row{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center}
.st-payment-logo{max-height:32px;width:auto;object-fit:contain}
[class*="-hero-media"]{position:absolute;inset:0;z-index:1;overflow:hidden}
[class*="-hero-media"]>img,[class*="-hero-media"] [class*="-hero-img"],[class*="-hero-media"] [class*="-hero-slide"]{width:100%;height:100%;object-fit:cover;border-radius:0}
[class*="-hero-media"]::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.72))}
[class*="-hero-content"]{position:relative;z-index:2}
@media(max-width:767px){[class*="-hero-media"]{display:block !important;visibility:visible !important;opacity:1 !important;max-height:none !important}}
@supports selector(:has(*)){@media(max-width:767px){*:has(> [class*="-hero-media"]){flex-direction:column !important;align-items:stretch !important;flex-wrap:wrap !important}[class*="-hero-media"]{position:relative !important;inset:auto !important;order:2 !important;flex:0 0 auto !important;width:100% !important;height:auto !important;margin:1rem 0 0 !important;border-radius:14px;overflow:hidden}[class*="-hero-media"]::after{display:none !important}[class*="-hero-media"]>img,[class*="-hero-media"] [class*="-hero-img"]{width:100% !important;height:auto !important;aspect-ratio:auto !important;object-fit:contain;border-radius:14px}[class*="-hero-media"] [class*="-hero-slide"]{width:100% !important;height:auto !important;aspect-ratio:16/9;object-fit:cover;border-radius:14px}[class*="-hero-slider"]{height:auto !important;aspect-ratio:auto !important}}}

.st-lead-grid{max-width:var(--st-ds-measure,1200px);margin:0 auto;display:grid;gap:clamp(.75rem,2vw,1.5rem);padding:0 var(--st-ds-pad,1.25rem)}
.st-lead-grid > *{min-width:0}
.st-lead-grid > section,.st-lead-col > section{max-width:none;padding-left:0;padding-right:0;margin:0}
.st-lead-col{display:flex;flex-direction:column;justify-content:center;gap:.75rem}
@media(min-width:900px){.st-lead-grid{grid-template-columns:2fr 1fr;align-items:center}.st-lead-grid--beside{grid-template-columns:1.7fr 1fr}.st-lead-grid--beside .st-promo-slide{min-height:clamp(200px,24vw,340px)}}

:root{--st-ds-radius:24px;--st-ds-radius-sm:16px;--st-ds-radius-lg:30px;--st-ds-radius-btn:999px;--st-ds-measure:1320px;--st-ds-pad:1.25rem;--st-ds-sec-y:2.25rem;--st-ds-border:0;--st-ds-shadow:none;--st-radius:24px}

:root{--st-ds-surface:transparent}

:where(.st-promo-section){max-width:var(--st-ds-measure,1200px);margin:0 auto}
.st-promo-section{padding:0 var(--st-ds-pad,1.25rem)}

:where(.st-headline-section){max-width:var(--st-ds-measure,1200px);margin:0 auto}
.st-headline-section{padding:var(--st-ds-sec-y,2rem) var(--st-ds-pad,1.25rem) 1rem}
.st-headline-section > :is(h1,[class*="-title"]){color:inherit !important;margin:0}

.st-lead-cta{max-width:var(--st-ds-measure,1200px);margin:0 auto;padding:1rem var(--st-ds-pad,1.25rem) 1.25rem;text-align:center}
.st-lead-cta-btn{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:.85rem 2.25rem;font-size:1.05rem;line-height:1.2;max-width:100%}
.st-lead-intro{max-width:860px;margin:0 auto;padding:0 var(--st-ds-pad,1.25rem) var(--st-ds-sec-y,2rem)}
.st-lead-intro p{color:inherit;margin:0;line-height:1.75;font-size:1.05rem}
@media(max-width:640px){.st-lead-cta-btn{width:100%}.st-headline-section{padding:1.5rem 1.25rem .6rem}.st-lead-cta{padding:.6rem 1.25rem 1rem}.st-lead-intro{padding-bottom:1.5rem}}

section[class*="-hero"]{max-width:var(--st-ds-measure,1200px) !important;margin-left:auto !important;margin-right:auto !important;border-radius:var(--st-ds-radius,16px);overflow:hidden}

[class*="-footer"] [class*="-logo"]:not([class*="-payment"]){filter:none !important}
:where(img[class*="-logo"]:not([class*="-payment"])){width:auto}
.st-brand{order:-1;margin-left:0;margin-right:0}
.st-brand{flex-shrink:0}
@media(max-width:879px){.st-header .st-auth-cluster .st-btn{display:none}.st-header [class*="-auth"] > a{display:none}.st-header nav [class*="-nav-list"]:not(#main-navigation),.st-header [class*="-nav"]:not([class*="-mobile"]) > ul:not(#main-navigation),.st-header > ul[class*="-nav"]:not([class*="-mobile"]):not(#main-navigation){display:none}}
.st-section-inner > .st-btn{display:flex;width:fit-content;margin:clamp(1.5rem,3vw,2.25rem) auto clamp(.25rem,1vw,.5rem);text-align:center}
@media(max-width:520px){.st-section-inner > .st-btn{width:100%}}
:where(html){background:#ffffff}
:where(body){background:#ffffff;color:#14171f}

.st-facts-table{display:block;width:100%;border-collapse:separate;border-spacing:0;margin:1.25rem 0 0;}
.st-facts-table thead{display:none}
.st-facts-table tbody{display:grid;grid-template-columns:1fr;gap:0}
.st-facts-table tr{display:grid;grid-template-columns:1fr;gap:.15rem;align-content:center;padding:.9rem var(--st-ds-pad,1.25rem);border-left:4px solid var(--st-accent,#e11d48)}
.st-facts-table tr:nth-child(even){background:rgba(128,128,128,.08)}
.st-facts-table th{display:block;text-align:left;font-size:.72rem;letter-spacing:.09em;text-transform:uppercase;font-weight:600;opacity:.72;margin:0;padding:0}
.st-facts-table td{display:block;text-align:left;font-weight:700;font-size:1.05rem;margin:0;padding:0;line-height:1.35}
@media(min-width:700px){.st-facts-table tr{grid-template-columns:34% 1fr;align-items:center;gap:1rem}}

.st-pay-table{display:block;width:100%;border-collapse:separate;border-spacing:0;margin:1.25rem 0 0;font-size:.95rem}
.st-pay-table thead{display:none}
.st-pay-table tbody{display:grid;grid-template-columns:1fr;gap:.7rem}
.st-pay-table tr{display:grid;grid-template-columns:1fr;gap:.35rem;padding:.85rem 1rem;border:var(--st-ds-border,1px solid rgba(128,128,128,.28));border-radius:var(--st-ds-radius,12px);background:rgba(128,128,128,.06);border-left:4px solid var(--st-accent,#e11d48)}
.st-pay-table td{display:grid;grid-template-columns:minmax(0,42%) minmax(0,1fr);gap:.6rem;align-items:baseline;min-width:0;margin:0;padding:0;border:0;text-align:left;overflow-wrap:anywhere}
.st-pay-table td::before{content:attr(data-label);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600;opacity:.7}
.st-pay-table td:first-child{font-weight:700}
@media(min-width:700px){.st-pay-table thead{display:block}.st-pay-table thead tr{border:0;border-radius:0;background:none;padding:.6rem 1rem;border-bottom:2px solid rgba(128,128,128,.3);grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}.st-pay-table th{display:block;min-width:0;margin:0;padding:0;text-align:left;font-size:.72rem;letter-spacing:.09em;text-transform:uppercase;font-weight:600;opacity:.75}.st-pay-table tbody{gap:0}.st-pay-table tbody tr{grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;align-items:center;border:0;border-radius:0;background:none;padding:.85rem 1rem;border-bottom:1px solid rgba(128,128,128,.22)}.st-pay-table tbody tr:last-child{border-bottom:0}.st-pay-table tbody tr:nth-child(even){background:rgba(128,128,128,.05)}.st-pay-table td{display:block}.st-pay-table td::before{display:none}}

.st-promo{position:relative;overflow:hidden;border-radius:var(--st-ds-radius,16px);border:var(--st-ds-border,0);box-shadow:var(--st-ds-shadow,none);margin:0 0 1rem}
.st-promo-track{display:flex;transition:transform .5s ease;will-change:transform}
.st-promo-slide{position:relative;flex:0 0 100%;min-width:100%;display:flex;justify-content:center;align-items:center;min-height:clamp(230px,44vw,420px);overflow:hidden;padding:0 clamp(.75rem,2vw,1.5rem) clamp(2rem,4vw,2.6rem)}
.st-promo-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.st-promo-slide::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(0,0,0,.34) 0%,rgba(0,0,0,.64) 100%)}
.st-promo-body{position:relative;z-index:2;max-width:min(620px,80%);margin:0 auto;text-align:center;padding:clamp(1rem,3vw,2.5rem)}
.st-promo-title{margin:0 0 .45rem;color:#fff;font-weight:800;line-height:1.15;font-size:clamp(1.25rem, 1rem + 2vw, 2.35rem)}
.st-promo-text{margin:0 0 1rem;color:rgba(255,255,255,.9);line-height:1.45;font-size:clamp(.9rem, .85rem + .35vw, 1.05rem)}
.st-promo-cta{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:.6rem 1.5rem;border-radius:var(--st-ds-radius-btn,999px);background:#F4F4F4;color:#111111;font-weight:700;text-decoration:none;box-shadow:0 8px 20px rgba(0,0,0,.28)}
.st-promo-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:40px;height:40px;padding:0;border:0;border-radius:50%;background:rgba(0,0,0,.45);color:#fff;cursor:pointer;display:none;line-height:1;font-size:22px}
.st-promo-prev{left:10px}.st-promo-prev::before{content:"\2039"}
.st-promo-next{right:10px}.st-promo-next::before{content:"\203A"}
@media(min-width:768px){.st-promo-arrow{display:block}}
.st-promo-dots{position:absolute;left:0;right:0;bottom:10px;z-index:3;display:flex;justify-content:center;gap:8px}
.st-promo-dot{width:9px;height:9px;padding:0;border:0;border-radius:50%;cursor:pointer;background:rgba(255,255,255,.45);transition:width .25s ease}
.st-promo-dot[aria-current="true"]{background:#fff;width:22px;border-radius:999px}
@media(max-width:640px){.st-promo-slide{min-height:190px}.st-promo-body{padding:.85rem 1rem}.st-promo-title{font-size:1.15rem;margin-bottom:.3rem}.st-promo-text{font-size:.88rem;margin-bottom:.65rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.st-promo-dots{bottom:6px}}
@media(max-width:520px){.st-promo-body{max-width:100%}.st-promo-slide::after{background:linear-gradient(180deg,rgba(0,0,0,.30) 0%,rgba(0,0,0,.82) 100%)}}
@media(prefers-reduced-motion:reduce){.st-promo-track{transition:none}}
[class*="-hero-media"]:empty{display:none !important}

.is-hidden{display:none !important}
