/* deploy-css-f8978130281a */

:root{
  --st-bg:#faf7f0;
  --st-text:#1b1a17;
  --st-text-soft:#6a655c;
  --st-panel:#f2ece0;
  --st-hairline:rgba(0,0,0,.12);
  --st-primary:#F0E68C;
  --st-secondary:#FFFFE0;
  --st-accent:#ADFF2F;
  --st-header-h:72px;
  --st-header-h-desktop:88px;
  --st-mobile-bar-h:68px;
  --st-font-head:'Baloo 2', system-ui, sans-serif;
  --st-font-body:'Mukta', system-ui, sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
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.08rem);
  line-height:1.6;
  padding-top:var(--st-header-h);
  padding-bottom:calc(var(--st-mobile-bar-h) + env(safe-area-inset-bottom));
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{margin:0;padding:0}
h1,h2,h3{font-family:var(--st-font-head);color:var(--st-text);margin:0 0 .5rem;line-height:1.2}
p{margin:0 0 .75em;color:var(--st-text)}
.st-container{max-width:var(--st-ds-measure);margin:0 auto;padding:0 var(--st-ds-pad)}

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

.st-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  padding:.85rem 1.6rem;
  min-height:44px;
  border-radius:var(--st-ds-radius-btn);
  font-family:var(--st-font-head);
  font-weight:600;
  font-size:1rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.st-btn--primary{
  background:var(--st-accent);
  color:#132b04;
  box-shadow:0 8px 18px rgba(173,255,47,.35);
}
.st-btn--primary:hover{transform:translateY(-2px);box-shadow:0 12px 22px rgba(173,255,47,.45)}
.st-btn--ghost{
  background:transparent;
  color:var(--st-text);
  border-color:rgba(27,26,23,.35);
}
.st-btn--ghost:hover{background:rgba(27,26,23,.06)}
.st-btn--lg{padding:1.05rem 2.1rem;font-size:1.1rem}

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  min-height:var(--st-header-h);
  background:linear-gradient(120deg, var(--st-secondary), var(--st-primary));
  border-bottom:1px solid var(--st-hairline);
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  transition:box-shadow .2s ease, min-height .2s ease;
}
.st-header.is-scrolled{
  box-shadow:0 10px 26px rgba(0,0,0,.14);
}
.st-header-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  height:var(--st-header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0 var(--st-ds-pad);
}
.st-brand{display:flex;align-items:center;flex-shrink:0}
.st-logo{
  width:44px;height:44px;
  object-fit:contain;
  background:#181712;
  padding:.4rem;
  border-radius:var(--st-ds-radius-sm);
}
.st-nav{display:none}
.st-auth-cluster{display:none}

.st-hamburger{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;height:44px;
  border-radius:var(--st-ds-radius-sm);
  background:rgba(27,26,23,.08);
  border:0;
  cursor:pointer;
  flex-shrink:0;
}
.st-hamburger-bar{
  width:22px;height:2px;
  background:var(--st-text);
  border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.st-hamburger.is-active .st-hamburger-bar:nth-child(1){transform:translateY(7px) rotate(45deg)}
.st-hamburger.is-active .st-hamburger-bar:nth-child(2){opacity:0}
.st-hamburger.is-active .st-hamburger-bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.st-mobile-menu{
  display:none;
  list-style:none;
  position:absolute;
  top:100%;left:0;right:0;
  background:var(--st-secondary);
  border-bottom:1px solid var(--st-hairline);
  box-shadow:0 14px 24px rgba(0,0,0,.14);
  max-height:calc(100vh - var(--st-header-h));
  overflow-y:auto;
}
.st-mobile-menu.is-open{display:block}
.st-mobile-menu li{border-bottom:1px solid var(--st-hairline)}
.st-mobile-menu li:last-child{border-bottom:0}
.st-mobile-menu a{
  display:flex;
  align-items:center;
  min-height:52px;
  padding:0 var(--st-ds-pad);
  font-family:var(--st-font-head);
  font-weight:600;
  color:var(--st-text);
}
.st-mobile-menu a:hover{background:rgba(27,26,23,.06)}

@media (min-width:960px){
  .st-header-inner{padding:0 calc(var(--st-ds-pad) * 1.4)}
  .st-hamburger{display:none}
  .st-mobile-menu{display:none !important}
  .st-nav{
    display:flex;
    flex:1;
    justify-content:center;
  }
  .st-nav-list{
    display:flex;
    align-items:center;
    gap:1.8rem;
    list-style:none;
  }
  .st-nav-list a{
    font-family:var(--st-font-head);
    font-weight:600;
    color:var(--st-text);
    padding:.5rem .2rem;
    position:relative;
  }
  .st-nav-list a::after{
    content:'';
    position:absolute;
    left:0;bottom:-2px;
    width:0;height:2px;
    background:#132b04;
    transition:width .2s ease;
  }
  .st-nav-list a:hover::after,
  .st-nav-link.is-current::after{width:100%}
  .st-auth-cluster{
    display:flex;
    align-items:center;
    gap:.8rem;
    flex-shrink:0;
  }
  .st-logo{width:56px;height:56px}
}

.st-hero{
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
  background:
    radial-gradient(circle at 15% 20%, rgba(173,255,47,.35), transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(255,255,224,.7), transparent 50%),
    linear-gradient(160deg, var(--st-primary), var(--st-secondary));
  position:relative;
  overflow:hidden;
  text-align:center;
}
.st-hero::before,
.st-hero::after{
  content:'';
  position:absolute;
  border-radius:999px;
  background:rgba(255,255,255,.5);
  filter:blur(2px);
  animation:st-float 6s ease-in-out infinite;
}
.st-hero::before{
  width:90px;height:36px;
  top:12%;left:8%;
  background:rgba(173,255,47,.55);
}
.st-hero::after{
  width:70px;height:28px;
  bottom:14%;right:10%;
  background:rgba(255,255,255,.6);
  animation-delay:1.5s;
}
@keyframes st-float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}
.st-hero-media{max-width:var(--st-ds-measure);margin:0 auto 1.5rem}
.st-hero-slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:1rem;
  border-radius:var(--st-ds-radius);
  -webkit-overflow-scrolling:touch;
}
.st-hero-slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  border-radius:var(--st-ds-radius);
  overflow:hidden;
}
.st-hero-slide img{width:100%;height:100%;object-fit:cover;aspect-ratio:16/9;border-radius:var(--st-ds-radius)}
.st-hero-content{
  position:relative;
  z-index:1;
  max-width:65ch;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1rem;
}
.st-hero-title{
  font-size:clamp(1.9rem, 1.5rem + 2vw, 3.2rem);
  font-weight:800;
}
.st-hero-subtitle{
  font-size:clamp(1rem, .95rem + .3vw, 1.25rem);
  color:#3a3728;
  max-width:60ch;
}

.st-about,.st-bonus,.st-games,.st-registration,.st-mobile,.st-responsible{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
}
.st-about-text,.st-bonus-intro,.st-games-intro,.st-mobile-text,.st-responsible-text,.st-kyc-text,.st-security-text{
  max-width:70ch;
  color:var(--st-text-soft);
}
h2::after{
  content:'';
  display:block;
  width:56px;height:5px;
  margin:.5rem 0 1rem;
  border-radius:999px;
  background:linear-gradient(90deg, var(--st-accent), var(--st-primary));
}

.st-facts,.st-kyc,.st-security,.st-payments{
  max-width:var(--st-ds-measure);
  margin:1.5rem auto;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
  background:var(--st-panel);
  border-radius:var(--st-ds-radius-lg);
  box-shadow:var(--st-ds-shadow);
  border:var(--st-ds-border);
}

.st-bonus-list,.st-kyc-points,.st-security-points,.st-games-points{
  list-style:none;
  display:grid;
  grid-template-columns:1fr;
  gap:.85rem;
  margin:1.25rem 0;
}
.st-bonus-list li,.st-kyc-points li,.st-security-points li,.st-games-points li{
  position:relative;
  padding:.9rem 1.1rem .9rem 2.6rem;
  background:var(--st-panel);
  border-radius:var(--st-ds-radius);
  box-shadow:var(--st-ds-shadow);
  color:var(--st-text);
}
.st-bonus-list li::before,.st-kyc-points li::before,.st-security-points li::before,.st-games-points li::before{
  content:'✓';
  position:absolute;
  left:.9rem;top:.85rem;
  width:22px;height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--st-accent);
  color:#132b04;
  border-radius:50%;
  font-size:.8rem;
  font-weight:700;
}
@media (min-width:700px){
  .st-bonus-list,.st-kyc-points,.st-security-points,.st-games-points{grid-template-columns:repeat(2,1fr)}
}

.st-reg-steps{
  list-style:none;
  counter-reset:st-step;
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
  margin:1.25rem 0;
}
.st-reg-steps li{
  counter-increment:st-step;
  position:relative;
  padding:1.1rem 1.2rem 1.1rem 3.6rem;
  background:var(--st-bg);
  border:1px solid var(--st-hairline);
  border-radius:var(--st-ds-radius);
}
.st-reg-steps li::before{
  content:counter(st-step);
  position:absolute;
  left:1rem;top:1rem;
  width:32px;height:32px;
  border-radius:50%;
  background:var(--st-primary);
  color:#132b04;
  font-family:var(--st-font-head);
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}
@media (min-width:700px){
  .st-reg-steps{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:1024px){
  .st-reg-steps{grid-template-columns:repeat(3,1fr)}
}

.st-games-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
  margin:1.5rem 0;
}
@media (min-width:700px){
  .st-games-grid{grid-template-columns:repeat(3,1fr)}
}
@media (min-width:960px){
  .st-games-grid{grid-template-columns:repeat(4,1fr)}
}
@media (min-width:1200px){
  .st-games-grid{grid-template-columns:repeat(5,1fr);gap:1.25rem}
}
.st-game-card{
  display:flex;
  flex-direction:column;
  background:var(--st-panel);
  border-radius:var(--st-ds-radius);
  overflow:hidden;
  box-shadow:var(--st-ds-shadow);
  transition:transform .2s ease;
}
.st-game-card:hover{transform:translateY(-4px)}
.st-game-img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.st-game-name{
  padding:.65rem .6rem .8rem;
  text-align:center;
  font-size:.92rem;
  font-weight:600;
  color:var(--st-text);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.st-payments-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.9rem;
  margin-top:1rem;
}
.st-payment-logo{
  max-height:32px;
  width:auto;
  object-fit:contain;
  background:#fff;
  padding:.6rem 1rem;
  border-radius:var(--st-ds-radius-sm);
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.st-payments table{
  width:100%;
  border-collapse:collapse;
  margin-top:1rem;
}
.st-payments table th,.st-payments table td{
  padding:.7rem .8rem;
  border-bottom:1px solid var(--st-hairline);
  text-align:left;
}

.st-facts-table{max-width:70ch}

.st-faq{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
}
.st-faq-list{
  display:flex;
  flex-direction:column;
  gap:.8rem;
  max-width:75ch;
}
.st-faq-item{
  background:var(--st-panel);
  border-radius:var(--st-ds-radius);
  box-shadow:var(--st-ds-shadow);
  overflow:hidden;
  padding:0 1.1rem;
}
.st-faq-q{
  cursor:pointer;
  list-style:none;
  padding:1.1rem 2rem 1.1rem 0;
  font-family:var(--st-font-head);
  font-weight:600;
  position:relative;
  min-height:44px;
  display:flex;
  align-items:center;
}
.st-faq-q::-webkit-details-marker{display:none}
.st-faq-q::after{
  content:'+';
  position:absolute;
  right:0;top:50%;
  transform:translateY(-50%);
  font-size:1.4rem;
  color:#132b04;
  transition:transform .2s ease;
}
details[open] .st-faq-q::after{transform:translateY(-50%) rotate(45deg)}
.st-faq-a{
  padding:0 0 1.2rem;
  color:var(--st-text-soft);
  max-width:70ch;
}

.st-footer{
  background:linear-gradient(160deg, var(--st-secondary), var(--st-primary));
  border-top:1px solid var(--st-hairline);
  padding:var(--st-ds-sec-y) var(--st-ds-pad) 2rem;
  margin-top:2rem;
}
.st-footer-top{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:2rem;
}
.st-footer-col{
  display:flex;
  flex-direction:column;
  align-items:center;
  max-width:60ch;
}
.st-footer-logo{
  width:48px;height:48px;
  object-fit:contain;
  background:#181712;
  padding:.4rem;
  border-radius:var(--st-ds-radius-sm);
  margin-bottom:.75rem;
}
.st-footer-heading{
  font-family:var(--st-font-head);
  margin-bottom:.6rem;
}
.st-footer-links{
  list-style:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
}
.st-footer-links a{color:#2a2915;font-weight:500}
.st-footer-links a:hover{text-decoration:underline}
.st-footer-text,.st-footer-disclaimer{color:#3a3728;max-width:60ch}

.st-footer-payments{
  max-width:var(--st-ds-measure);
  margin:2rem auto 0;
  padding-top:2rem;
  border-top:1px solid var(--st-hairline);
  text-align:center;
}
.st-payments-footer-heading{
  font-family:var(--st-font-head);
  margin-bottom:1rem;
}

.st-footer-bottom{
  text-align:center;
  margin-top:2rem;
  color:#3a3728;
  font-size:.9rem;
}

@media (min-width:960px){
  .st-footer-top{flex-direction:column}
}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:1100;
  display:flex;
  gap:.6rem;
  padding:.6rem var(--st-ds-pad);
  padding-bottom:calc(.6rem + env(safe-area-inset-bottom));
  background:var(--st-secondary);
  border-top:1px solid var(--st-hairline);
  box-shadow:0 -6px 18px rgba(0,0,0,.1);
}
.st-mobile-cta .st-btn{flex:1;min-height:48px}
@media (min-width:960px){
  .st-mobile-cta{display:none}
  body{padding-bottom:0}
}

.st-cookie-consent{
  position:fixed;
  left:1rem;right:1rem;
  bottom:calc(var(--st-mobile-bar-h) + env(safe-area-inset-bottom) + .75rem);
  z-index:1200;
  background:var(--st-panel);
  border-radius:var(--st-ds-radius);
  box-shadow:var(--st-ds-shadow);
  border:1px solid var(--st-hairline);
  padding:1.1rem 1.2rem;
  display:flex;
  flex-direction:column;
  gap:.85rem;
  max-width:560px;
  margin:0 auto;
}
.st-cookie-consent p{margin:0;font-size:.92rem;color:var(--st-text-soft)}
.st-cookie-actions{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
}
.st-cookie-actions .st-btn{min-height:44px;flex:1}
@media (min-width:960px){
  .st-cookie-consent{
    left:auto;right:1.5rem;bottom:1.5rem;max-width:420px;
  }
}

.st-back-to-top{
  position:fixed;
  right:1rem;
  bottom:calc(var(--st-mobile-bar-h) + env(safe-area-inset-bottom) + 5.5rem);
  z-index:1150;
  width:48px;height:48px;
  border-radius:50%;
  border:0;
  background:var(--st-accent);
  color:#132b04;
  font-size:1.3rem;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  cursor:pointer;
  transition:opacity .2s ease, transform .2s ease;
}
.st-back-to-top:hover{transform:translateY(-3px)}
@media (min-width:960px){
  .st-back-to-top{bottom:1.5rem}
}

.is-hidden{display:none !important}

@media (min-width:600px){
  .st-hero-title{max-width:40ch;margin:0 auto}
}

@media (min-width:960px){
  .st-hero-content{max-width:70ch}
}
[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:900px){[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%;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:263/156;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:14px;--st-ds-radius-sm:10px;--st-ds-radius-lg:18px;--st-ds-radius-btn:999px;--st-ds-measure:1320px;--st-ds-pad:1.6rem;--st-ds-sec-y:3rem;--st-ds-border:0;--st-ds-shadow:0 10px 30px rgba(0,0,0,.12);--st-radius:14px}

: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:959px){.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:#faf7f0}
:where(body){background:#faf7f0;color:#1b1a17}

.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 0;border-bottom:1px solid rgba(128,128,128,.22)}
.st-facts-table tr:last-child{border-bottom:0}
.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.3rem;margin:0;padding:0;line-height:1.35}
@media(min-width:700px){.st-facts-table tbody{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:2rem}}

.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,.30) 0%,rgba(0,0,0,.56) 100%)}
.st-promo-body{position:relative;z-index:2;max-width:min(560px,80%);margin:0 auto;text-align:center;padding:clamp(.9rem,2.5vw,1.6rem);background:rgba(0,0,0,.55);border-radius:var(--st-ds-radius,16px)}
.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:#ADFF2F;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}
