/* deploy-css-4ac8cd76b97c */

:root{
  --st-primary:#FFD700;
  --st-secondary:#000000;
  --st-accent:#00FF00;
  --st-ink:#1a1a12;
  --st-muted:#5c5c52;
  --st-surface:#ffffff;
  --st-surface-2:#f7f6ef;
  --st-header-h:68px;
  --st-mobile-cta-h:68px;
  --st-radius:14px;
  --st-font-head:'Figtree',system-ui,sans-serif;
  --st-font-body:'Work Sans',system-ui,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--st-font-body);
  color:var(--st-ink);
  background:var(--st-surface-2);
  line-height:1.55;
  padding-top:var(--st-header-h);
  padding-bottom:calc(var(--st-mobile-cta-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;list-style:none}
h1,h2,h3{font-family:var(--st-font-head);margin:0 0 .5em;line-height:1.2}
p{margin:0 0 .75em}

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

.st-section-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
}
.st-section-title{
  font-size:clamp(1.4rem,4vw,2rem);
  font-weight:800;
  color:var(--st-secondary);
  margin-bottom:.4em;
  position:relative;
  padding-bottom:.3em;
}
.st-section-title::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:44px;height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--st-accent),var(--st-primary));
}
.st-section-text{
  max-width:70ch;
  color:var(--st-muted);
  font-size:clamp(.95rem,1.5vw,1.05rem);
}

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--st-header-h);
  z-index:1000;
  background:linear-gradient(135deg,#000000 0%,#171400 60%,#1c1a00 100%);
  border-bottom:2px solid var(--st-primary);
  box-shadow:0 4px 18px rgba(0,0,0,.35);
  transition:background .3s ease;
}
.st-header.is-scrolled{
  background:#000000;
  height:calc(var(--st-header-h) - 8px);
}
.st-header-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  height:100%;
  display:flex;
  align-items:center;
  gap:1rem;
  padding:0 var(--st-ds-pad);
}
.st-brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.st-logo{
  height:34px;
  width:auto;
  display:block;
  background:#fff;
  border-radius:var(--st-ds-radius-sm);
  padding:6px 10px;
}
.st-nav{
  display:none;
}
.st-nav-list{
  display:flex;
  align-items:center;
  gap:1.4rem;
}
.st-nav-list a{
  color:#f5f0d8;
  font-weight:600;
  font-size:.95rem;
  padding:.4rem 0;
  position:relative;
  transition:color .2s ease;
}
.st-nav-list a:hover,.st-nav-list a:focus-visible{color:var(--st-primary)}
.st-nav-link.is-current{color:var(--st-primary)}
.st-nav-link.is-current::after{
  content:'';
  position:absolute;
  left:0;right:0;bottom:-6px;
  height:2px;
  background:var(--st-accent);
}
.st-auth-cluster{
  display:none;
}
.st-header-inner{justify-content:space-between}

.st-hamburger{
  margin-left:auto;
  width:44px;height:44px;
  border:0;
  background:rgba(255,215,0,.12);
  border-radius:var(--st-ds-radius-sm);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.st-hamburger span{
  width:20px;height:2px;
  background:var(--st-primary);
  border-radius:2px;
  transition:transform .25s ease,opacity .25s ease;
}
.st-hamburger.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.st-hamburger.is-active span:nth-child(2){opacity:0}
.st-hamburger.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.st-mobile-nav{
  display:none;
  position:fixed;
  top:var(--st-header-h);
  left:0;right:0;
  background:#0a0900;
  border-bottom:2px solid var(--st-primary);
  max-height:calc(100vh - var(--st-header-h));
  overflow-y:auto;
  z-index:999;
  padding:.5rem 0 1rem;
}
.st-mobile-nav.is-open{display:block}
.st-mobile-nav li{border-top:1px solid rgba(255,215,0,.15)}
.st-mobile-nav li:first-child{border-top:0}
.st-mobile-nav a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:.5rem 1.25rem;
  color:#f5f0d8;
  font-weight:600;
}
.st-mobile-nav-auth{
  display:flex;
  gap:.6rem;
  padding:.75rem 1.25rem;
}
.st-mobile-nav-auth .st-btn{flex:1}

.st-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:.65rem 1.4rem;
  border-radius:var(--st-ds-radius-btn);
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .15s ease,box-shadow .15s ease,background .2s ease;
  white-space:nowrap;
}
.st-btn-primary{
  background:var(--st-primary);
  color:#141200;
  box-shadow:0 4px 14px rgba(255,215,0,.35);
}
.st-btn-primary:hover{transform:translateY(-1px);box-shadow:0 6px 18px rgba(255,215,0,.5)}
.st-btn-ghost{
  background:transparent;
  border-color:var(--st-primary);
  color:var(--st-primary);
}
.st-btn-ghost:hover{background:rgba(255,215,0,.12)}
.st-btn-lg{padding:.85rem 1.9rem;font-size:1.05rem}

.st-hero{
  background:
    radial-gradient(circle at 90% 15%, rgba(0,255,0,.25), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(0,0,0,.18), transparent 50%),
    var(--st-primary);
  position:relative;
  overflow:hidden;
}
.st-hero::before,.st-hero::after{
  content:'';
  position:absolute;
  border-radius:50% 0 50% 50%;
  background:rgba(0,0,0,.08);
}
.st-hero::before{width:220px;height:220px;top:-60px;right:-40px;transform:rotate(20deg)}
.st-hero::after{width:160px;height:160px;bottom:-50px;left:-30px;background:rgba(0,255,0,.18);transform:rotate(-15deg)}
.st-hero-inner{
  position:relative;
  z-index:1;
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.st-hero-copy{max-width:60ch}
.st-hero-title{
  font-size:clamp(1.9rem,6vw,3rem);
  color:var(--st-secondary);
  font-weight:800;
}
.st-hero-subtitle{
  color:#1a1a12;
  font-size:clamp(1rem,2vw,1.15rem);
  margin-bottom:1rem;
}
.st-hero-media{width:100%}
.st-hero-slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:.75rem;
  border-radius:var(--st-ds-radius-lg);
  scrollbar-width:none;
}
.st-hero-slider::-webkit-scrollbar{display:none}
.st-hero-slide{
  flex:0 0 100%;
  scroll-snap-align:center;
  border-radius:var(--st-ds-radius-lg);
  overflow:hidden;
  aspect-ratio:16/10;
}
.st-hero-slide img{width:100%;height:100%;object-fit:cover;border-radius:var(--st-ds-radius-lg)}

.st-facts{background:var(--st-surface)}
.st-facts-table-wrap{overflow-x:hidden}
.st-facts-table,.st-facts-table tbody,.st-facts-table tr{display:contents}
.st-facts-table{
  display:grid;
  grid-template-columns:1fr;
  gap:.75rem;
}
.st-facts-table th,.st-facts-table td{
  display:flex;
  flex-direction:column;
  padding:1.1rem 1rem;
  border:1px solid rgba(0,0,0,.1);
  border-radius:var(--st-ds-radius);
  background:var(--st-surface-2);
  text-align:left;
}
.st-facts-table th{
  order:1;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--st-muted);
  font-weight:600;
  border-bottom:0;
  border-radius:var(--st-ds-radius) var(--st-ds-radius) 0 0;
  margin-bottom:-1px;
  padding-bottom:.35rem;
}
.st-facts-table td{
  order:2;
  font-size:1.15rem;
  font-weight:800;
  color:var(--st-secondary);
  border-top:0;
  border-radius:0 0 var(--st-ds-radius) var(--st-ds-radius);
  padding-top:.2rem;
  position:relative;
}
.st-facts-table th,.st-facts-table td{
  grid-column:1 / -1;
}
.st-facts-table tr{
  display:grid;
}
.st-facts-table th{border-color:var(--st-primary)}
.st-facts-table td{border-color:var(--st-primary)}
.st-facts-table tr:hover th,.st-facts-table tr:hover td{
  box-shadow:0 6px 18px rgba(255,215,0,.25);
}

.st-payments{background:var(--st-surface-2)}
.st-payments-row{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:center;
}
.st-payment-logo{
  height:30px;
  max-height:32px;
  width:auto;
  object-fit:contain;
  background:var(--st-surface);
  padding:.6rem 1rem;
  border-radius:var(--st-ds-radius-sm);
  box-shadow:var(--st-ds-shadow);
}

.st-about{background:var(--st-surface)}

.st-bonus{background:var(--st-surface-2)}
.st-bonus-list{
  display:grid;
  gap:.6rem;
  margin:.75rem 0 1rem;
}
.st-bonus-list li{
  background:var(--st-surface);
  border-radius:var(--st-ds-radius);
  box-shadow:var(--st-ds-shadow);
  padding:.85rem 1rem;
  font-weight:600;
  border-left:4px solid var(--st-accent);
}

.st-mobile-app{background:var(--st-secondary);color:#fff}
.st-mobile-app .st-section-title{color:var(--st-primary)}
.st-mobile-app .st-section-title::after{background:var(--st-accent)}
.st-mobile-app .st-section-text{color:#d8d5c4}

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

.st-responsible,.st-kyc,.st-security{background:var(--st-surface-2)}
.st-band{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.75rem;
  background:var(--st-surface);
  border-radius:var(--st-ds-radius);
  box-shadow:var(--st-ds-shadow);
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
}
.st-band-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;height:44px;
  border-radius:50%;
  background:var(--st-primary);
  color:var(--st-secondary);
  font-weight:800;
  font-size:.9rem;
}
.st-kyc-points,.st-security-points{display:grid;gap:.5rem}
.st-kyc-points li,.st-security-points li{
  padding-left:1.4rem;
  position:relative;
  color:var(--st-muted);
}
.st-kyc-points li::before,.st-security-points li::before{
  content:'✓';
  position:absolute;left:0;top:0;
  color:var(--st-accent);
  font-weight:800;
}

.st-registration{background:var(--st-surface)}
.st-reg-steps{
  display:grid;
  gap:.75rem;
  margin:1rem 0;
  counter-reset:step;
}
.st-reg-steps li{
  background:var(--st-surface-2);
  border-radius:var(--st-ds-radius);
  padding:.9rem 1rem 1rem 3rem;
  position:relative;
  box-shadow:var(--st-ds-shadow);
  font-weight:600;
}
.st-reg-steps li::before{
  counter-increment:step;
  content:counter(step);
  position:absolute;
  left:.8rem;top:.9rem;
  width:26px;height:26px;
  border-radius:50%;
  background:var(--st-secondary);
  color:var(--st-primary);
  font-size:.85rem;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

.st-faq{background:var(--st-surface-2)}
.st-faq-list{display:grid;gap:.6rem;margin-top:1rem}
.st-faq-item{
  background:var(--st-surface);
  border-radius:var(--st-ds-radius);
  box-shadow:var(--st-ds-shadow);
  overflow:hidden;
}
.st-faq-q{
  list-style:none;
  cursor:pointer;
  padding:1rem 1.1rem;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:44px;
  position:relative;
}
.st-faq-q::-webkit-details-marker{display:none}
.st-faq-q::after{
  content:'+';
  font-size:1.3rem;
  color:var(--st-accent);
  transition:transform .2s ease;
  margin-left:1rem;
}
details[open] .st-faq-q::after{transform:rotate(45deg)}
.st-faq-a{
  padding:0 1.1rem 1.1rem;
  color:var(--st-muted);
}

.st-footer{
  background:#0a0900;
  color:#e8e4cf;
}
.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:1.5rem;
  text-align:center;
}
.st-footer-col{display:flex;flex-direction:column;align-items:center;gap:.6rem}
.st-footer-logo{
  height:32px;
  background:#fff;
  border-radius:var(--st-ds-radius-sm);
  padding:5px 8px;
}
.st-footer-text,.st-footer-disclaimer{
  max-width:60ch;
  font-size:.85rem;
  color:#b8b49f;
}
.st-footer-nav ul{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  justify-content:center;
}
.st-footer-nav a{
  font-size:.9rem;
  font-weight:600;
  color:#e8e4cf;
}
.st-footer-nav a:hover{color:var(--st-primary)}

.st-footer-payments{
  border-top:1px solid rgba(255,215,0,.15);
  padding:1.2rem var(--st-ds-pad);
}
.st-payments-footer-heading{
  text-align:center;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--st-primary);
  margin-bottom:.75rem;
}
.st-footer-payments .st-payments-row .st-payment-logo{
  background:#161400;
  box-shadow:none;
}

.st-footer-bottom{
  text-align:center;
  padding:.9rem var(--st-ds-pad) 1.2rem;
  font-size:.8rem;
  color:#8a8770;
  border-top:1px solid rgba(255,255,255,.05);
}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:1200;
  display:flex;
  gap:.6rem;
  padding:.6rem .75rem;
  padding-bottom:calc(.6rem + env(safe-area-inset-bottom));
  background:#0a0900;
  border-top:2px solid var(--st-primary);
}
.st-mobile-cta .st-btn{flex:1;min-height:46px}

.st-back-to-top{
  position:fixed;
  right:1rem;
  bottom:calc(var(--st-mobile-cta-h) + 4.5rem + env(safe-area-inset-bottom));
  z-index:1100;
  width:46px;height:46px;
  border-radius:50%;
  border:0;
  background:var(--st-primary);
  color:var(--st-secondary);
  font-size:1.2rem;
  box-shadow:var(--st-ds-shadow);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.st-back-to-top.is-hidden{display:none}

.st-cookie-banner{
  position:fixed;
  left:.75rem;right:.75rem;
  bottom:calc(var(--st-mobile-cta-h) + .75rem + env(safe-area-inset-bottom));
  z-index:1150;
  background:var(--st-surface);
  color:var(--st-ink);
  border-radius:var(--st-ds-radius);
  box-shadow:var(--st-ds-shadow);
  padding:1rem;
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  align-items:center;
  justify-content:space-between;
  border-left:4px solid var(--st-accent);
}
.st-cookie-banner.is-hidden{display:none}

@media (min-width:640px){
  .st-facts-table{grid-template-columns:repeat(2,1fr)}
  .st-facts-table th,.st-facts-table td{grid-column:auto}
  .st-facts-table tr{display:contents}
  .st-games-grid{grid-template-columns:repeat(3,1fr)}
  .st-hero-inner{flex-direction:row;align-items:center}
  .st-hero-copy{flex:1}
  .st-hero-media{flex:1}
}

@media (min-width:860px){
  body{padding-bottom:0}
  .st-mobile-cta{display:none}
  .st-hamburger{display:none}
  .st-mobile-nav{display:none!important}
  .st-nav{display:block}
  .st-auth-cluster{
    display:flex;
    align-items:center;
    gap:.75rem;
    margin-left:2rem;
    padding-left:2rem;
    border-left:1px solid rgba(255,215,0,.25);
  }
  .st-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .st-facts-table{grid-template-columns:repeat(3,1fr)}
  .st-games-grid{grid-template-columns:repeat(4,1fr)}
  .st-band{flex-direction:row;align-items:center}
  .st-mobile-inner{display:flex;justify-content:center;text-align:center}
  .st-back-to-top{bottom:2.5rem}
  .st-cookie-banner{bottom:1.5rem;left:1.5rem;right:auto;max-width:420px}
}

@media (min-width:1100px){
  .st-games-grid{grid-template-columns:repeat(5,1fr)}
}
[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: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:14px;--st-ds-radius-sm:10px;--st-ds-radius-lg:18px;--st-ds-radius-btn:999px;--st-ds-measure:1120px;--st-ds-pad:1rem;--st-ds-sec-y:1.5rem;--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-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:#00FF00;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}
