/* deploy-css-1ba36f6998a7 */

:root{
  --st-primary:#161418;
  --st-secondary:#E63946;
  --st-accent:#F1FAEE;
  --st-bg:#1d2027;
  --st-text:#eef1f6;
  --st-text-soft:#a7b0be;
  --st-panel:#262a33;
  --st-panel-tint:#2b2f3a;
  --st-hairline:rgba(255,255,255,.14);
  --st-header-h:64px;
  --st-mobilecta-h:72px;
}

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

*,*::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:'Karla',sans-serif;
  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-mobilecta-h) + env(safe-area-inset-bottom));
  overflow-x:hidden;
}

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

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

h1,h2,h3{
  font-family:'Big Shoulders Display',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
  font-weight:800;
  color:var(--st-text);
  margin:0.3em 0 0.5em;
  line-height:1.1;
}

p{margin:0 0 0.75em}

a{color:var(--st-secondary);text-decoration:none}

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

.st-section-heading{
  font-size:clamp(1.5rem,1.2rem + 1.5vw,2.2rem);
  position:relative;
  padding-bottom:0.4em;
  margin-bottom:0.8em;
}
.st-section-heading::after{
  content:"";
  display:block;
  width:56px;
  height:4px;
  background:var(--st-secondary);
  margin-top:0.4em;
}

.st-section-text{
  max-width:70ch;
  color:var(--st-text-soft);
}

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:linear-gradient(135deg,var(--st-primary) 0%,#1c191e 60%,var(--st-primary) 100%);
  border-bottom:1px solid var(--st-hairline);
  transition:background .3s ease,padding .3s ease;
}
@media(prefers-reduced-motion:reduce){
  .st-header{transition:none}
}
.st-header.is-scrolled{
  background:linear-gradient(135deg,#0f0d10 0%,#161418 100%);
  box-shadow:0 4px 18px rgba(0,0,0,.4);
}

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

.st-brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.st-logo{
  width:auto;
  height:36px;
  background:var(--st-accent);
  padding:0.35rem 0.6rem;
  border-radius:var(--st-ds-radius);
}
@media(min-width:768px){
  .st-logo{height:44px}
}

.st-nav{display:none}
.st-auth-cluster{display:none}

@media(min-width:900px){
  .st-nav{display:flex}
  .st-nav-list{
    display:flex;
    gap:1.75rem;
    list-style:none;
    margin:0;padding:0;
  }
  .st-nav-list a{
    color:var(--st-text);
    font-weight:600;
    font-size:0.95rem;
    text-transform:uppercase;
    letter-spacing:0.03em;
    position:relative;
    padding:0.4rem 0;
  }
  .st-nav-list a::after{
    content:"";
    position:absolute;
    left:0;bottom:0;
    width:0;height:2px;
    background:var(--st-secondary);
    transition:width .25s ease;
  }
  .st-nav-list a:hover::after,
  .st-nav-list a.is-current::after{
    width:100%;
  }
  .st-nav-list a.is-current{color:var(--st-secondary)}

  .st-auth-cluster{
    display:flex;
    align-items:center;
    gap:0.75rem;
    margin-left:2rem;
    padding-left:2rem;
    border-left:1px solid var(--st-hairline);
    flex-shrink:0;
  }
}

.st-nav-link.is-current{color:var(--st-secondary)}

.st-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0.6rem 1.4rem;
  font-family:'Karla',sans-serif;
  font-weight:700;
  font-size:0.95rem;
  text-transform:uppercase;
  letter-spacing:0.03em;
  border-radius:var(--st-ds-radius-btn);
  border:var(--st-ds-border);
  cursor:pointer;
  transition:transform .15s ease,background .2s ease,color .2s ease;
  white-space:nowrap;
}
@media(prefers-reduced-motion:reduce){
  .st-btn{transition:none}
}
.st-btn-primary{
  background:var(--st-secondary);
  color:#ffffff;
}
.st-btn-primary:hover{
  background:#c92836;
  transform:translateY(-1px);
}
.st-btn-ghost{
  background:transparent;
  color:var(--st-text);
  border:1px solid rgba(255,255,255,.35);
}
.st-btn-ghost:hover{
  border-color:var(--st-secondary);
  color:var(--st-secondary);
}
.st-btn-lg{
  padding:0.85rem 2rem;
  font-size:1.05rem;
}

.st-hamburger{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  background:transparent;
  border:1px solid var(--st-hairline);
  border-radius:var(--st-ds-radius);
  padding:0.5rem;
}
@media(min-width:900px){
  .st-hamburger{display:none}
}
.st-hamburger-bar{
  display:block;
  height:2px;
  width:100%;
  background:var(--st-accent);
  transition:transform .25s ease,opacity .25s ease;
}
@media(prefers-reduced-motion:reduce){
  .st-hamburger-bar{transition:none}
}
.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-nav{
  display:none;
  list-style:none;
  margin:0;
  padding:0.5rem var(--st-ds-pad) 1.25rem;
  background:var(--st-primary);
  border-top:1px solid var(--st-hairline);
}
.st-mobile-nav.is-open{
  display:flex;
  flex-direction:column;
  gap:0.25rem;
}
.st-mobile-nav li a{
  display:flex;
  align-items:center;
  min-height:44px;
  color:var(--st-text);
  font-weight:600;
  padding:0.5rem 0;
  border-bottom:1px solid var(--st-hairline);
}
.st-mobile-nav li:last-child a,
.st-mobile-nav li:nth-last-child(2) a{
  border-bottom:none;
}
.st-mobile-nav .st-btn{
  width:100%;
  margin-top:0.5rem;
}
@media(min-width:900px){
  .st-mobile-nav{display:none !important}
}

.st-hero{
  position:relative;
  background:var(--st-primary);
  overflow:hidden;
  padding:calc(var(--st-ds-sec-y) * 1.3) 0;
  text-align:center;
}
.st-hero::before{
  content:"";
  position:absolute;
  top:0;right:-10%;
  width:60%;height:200%;
  background:var(--st-secondary);
  transform:rotate(12deg);
  opacity:0.14;
  clip-path:polygon(30% 0,100% 0,70% 100%,0 100%);
}
.st-hero::after{
  content:"";
  position:absolute;
  bottom:0;left:0;
  width:100%;height:6px;
  background:linear-gradient(90deg,transparent,var(--st-secondary),transparent);
}
.st-hero-media{
  position:relative;
  z-index:1;
  max-width:var(--st-ds-measure);
  margin:0 auto 1.5rem;
  padding:0 var(--st-ds-pad);
}
.st-hero-slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:0.75rem;
  border-radius:var(--st-ds-radius);
}
.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;
  border-radius:var(--st-ds-radius);
}
.st-hero-inner{
  position:relative;
  z-index:1;
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:0 var(--st-ds-pad);
}
.st-hero-title{
  font-size:clamp(2rem,1.4rem + 4vw,3.4rem);
  color:var(--st-accent);
  margin-bottom:0.5rem;
}
.st-hero-subtitle{
  max-width:60ch;
  margin:0 auto 1.5rem;
  color:var(--st-text-soft);
  font-size:clamp(1rem,0.95rem + 0.4vw,1.2rem);
}

.st-facts{background:var(--st-bg)}
.st-facts .st-section-inner{
  background:var(--st-panel-tint);
  border-radius:var(--st-ds-radius);
}

.st-payments{background:var(--st-panel)}
.st-about{background:var(--st-bg)}
.st-security{background:var(--st-panel)}
.st-bonus{background:var(--st-bg)}
.st-kyc{background:var(--st-panel)}
.st-registration{background:var(--st-bg)}
.st-games{background:var(--st-panel)}
.st-mobile-app{background:var(--st-bg)}
.st-responsible{background:var(--st-panel)}
.st-faq{background:var(--st-bg)}

.st-security-points,
.st-bonus-list,
.st-games-points,
.st-mobile-points{
  list-style:none;
  margin:1rem 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.6rem;
}
.st-security-points li,
.st-bonus-list li,
.st-games-points li,
.st-mobile-points li{
  background:var(--st-panel-tint);
  border-left:3px solid var(--st-secondary);
  border-radius:var(--st-ds-radius);
  padding:0.7rem 1rem;
  color:var(--st-text);
}

.st-reg-steps{
  list-style:none;
  counter-reset:step;
  margin:1rem 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
}
.st-reg-steps li{
  counter-increment:step;
  position:relative;
  background:var(--st-panel-tint);
  border-radius:var(--st-ds-radius);
  padding:0.9rem 1rem 0.9rem 3.2rem;
  color:var(--st-text);
}
.st-reg-steps li::before{
  content:counter(step);
  position:absolute;
  left:0.8rem;top:0.85rem;
  width:1.6rem;height:1.6rem;
  display:flex;
  align-items:center;justify-content:center;
  background:var(--st-secondary);
  color:#fff;
  font-weight:800;
  font-family:'Big Shoulders Display',sans-serif;
  border-radius:var(--st-ds-radius-sm);
}

.st-games-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0.9rem;
  margin:1.5rem 0;
}
@media(min-width:640px){
  .st-games-grid{grid-template-columns:repeat(3,1fr)}
}
@media(min-width:1000px){
  .st-games-grid{grid-template-columns:repeat(5,1fr)}
}
.st-game-card{
  position:relative;
  display:block;
  border-radius:var(--st-ds-radius);
  overflow:hidden;
  background:var(--st-panel-tint);
}
.st-game-img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
}
.st-game-name{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:1.4rem 0.6rem 0.5rem;
  background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,0));
  color:#ffffff;
  font-size:0.85rem;
  font-weight:700;
  line-height:1.25;
  display:block;
}

.st-payments-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  justify-content:center;
  margin-top:1rem;
}
.st-payment-logo{
  background:var(--st-panel-tint);
  border-radius:var(--st-ds-radius-sm);
  padding:0.5rem 0.9rem;
  max-height:34px;
  height:34px;
  width:auto;
  object-fit:contain;
  display:block;
}

.st-faq-list{
  display:flex;
  flex-direction:column;
  gap:0.6rem;
  margin-top:1rem;
}
.st-faq-item{
  background:var(--st-panel);
  border-left:3px solid var(--st-secondary);
  border-radius:var(--st-ds-radius);
  overflow:hidden;
}
.st-faq-q{
  cursor:pointer;
  list-style:none;
  padding:1rem 1.2rem;
  font-weight:700;
  color:var(--st-text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:44px;
}
.st-faq-q::-webkit-details-marker{display:none}
.st-faq-q::after{
  content:"+";
  color:var(--st-secondary);
  font-size:1.3rem;
  transition:transform .2s ease;
  margin-left:1rem;
  flex-shrink:0;
}
details[open] .st-faq-q::after{
  transform:rotate(45deg);
}
.st-faq-a{
  padding:0 1.2rem 1.1rem;
  color:var(--st-text-soft);
}

.st-footer{
  background:var(--st-primary);
  border-top:1px solid var(--st-hairline);
  padding:var(--st-ds-sec-y) 0 0;
}
.st-footer-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  padding:0 var(--st-ds-pad);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:2rem;
}
.st-footer-col{
  max-width:60ch;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.st-footer-logo{
  height:34px;
  width:auto;
  background:var(--st-accent);
  padding:0.3rem 0.6rem;
  border-radius:var(--st-ds-radius);
  margin-bottom:0.75rem;
}
.st-footer-text{color:var(--st-text-soft)}
.st-footer-heading{
  font-family:'Big Shoulders Display',sans-serif;
  text-transform:uppercase;
  color:var(--st-accent);
  font-size:1.1rem;
  margin-bottom:0.6rem;
}
.st-footer-nav ul{
  list-style:none;
  margin:0;padding:0;
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}
.st-footer-nav a{
  color:var(--st-text-soft);
}
.st-footer-nav a:hover{color:var(--st-secondary)}

.st-footer-payments{
  max-width:var(--st-ds-measure);
  margin:2rem auto 0;
  padding:1.5rem var(--st-ds-pad);
  background:var(--st-panel);
  text-align:center;
}
.st-footer-payments .st-payments-row{margin-top:0.75rem}

.st-footer-bottom{
  text-align:center;
  padding:1.25rem var(--st-ds-pad) 2rem;
  color:var(--st-text-soft);
  font-size:0.85rem;
}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:1200;
  display:flex;
  gap:0.5rem;
  padding:0.6rem var(--st-ds-pad);
  padding-bottom:calc(0.6rem + env(safe-area-inset-bottom));
  background:var(--st-primary);
  border-top:1px solid var(--st-hairline);
}
.st-mobile-cta .st-btn{
  flex:1 1 50%;
}
@media(min-width:900px){
  .st-mobile-cta{display:none}
}

.st-back-to-top{
  position:fixed;
  right:1rem;
  bottom:calc(var(--st-mobilecta-h) + 1rem);
  z-index:1150;
  width:46px;height:46px;
  border-radius:var(--st-ds-radius);
  background:var(--st-secondary);
  color:#fff;
  border:var(--st-ds-border);
  font-size:1.2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
@media(min-width:900px){
  .st-back-to-top{bottom:1.5rem}
}
.st-back-to-top.is-hidden{display:none}

.st-cookie-banner{
  position:fixed;
  left:0;right:0;
  bottom:var(--st-mobilecta-h);
  z-index:1180;
  background:var(--st-panel);
  border-top:1px solid var(--st-hairline);
  padding:1rem var(--st-ds-pad);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:0.75rem;
  color:var(--st-text);
}
.st-cookie-banner .st-btn{
  min-height:40px;
  padding:0.5rem 1.1rem;
}
.st-cookie-banner.is-hidden{display:none}
@media(min-width:900px){
  .st-cookie-banner{bottom:0}
}

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

@media(min-width:640px){
  .st-hero-inner{padding:0 2rem}
  .st-security-points,
  .st-bonus-list,
  .st-games-points,
  .st-mobile-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
  }
}
@media(min-width:900px){
  .st-security-points,
  .st-bonus-list,
  .st-games-points,
  .st-mobile-points{
    grid-template-columns:repeat(3,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(5,minmax(0,1fr))}}
@media(min-width:1400px){:where(.st-games-grid){grid-template-columns:repeat(6,minmax(0,1fr))}}
.st-game-img{width:100%;height:auto;aspect-ratio:174/131;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:3px;--st-ds-radius-sm:2px;--st-ds-radius-lg:4px;--st-ds-radius-btn:4px;--st-ds-measure:1120px;--st-ds-pad:1.25rem;--st-ds-sec-y:2.25rem;--st-ds-border:0;--st-ds-shadow:none;--st-radius:3px}

:root{--st-ds-surface:rgba(22,20,24,.08)}

: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:899px){.st-header .st-auth-cluster .st-btn{display:none}.st-header [class*="-auth"] > a{display:none}}
:where(html){background:#1d2027}
:where(body){background:#1d2027;color:#eef1f6}

.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-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:#F1FAEE;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}
