/* deploy-css-5a7779b8cc70 */

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:'Mukta',sans-serif;
  color:#141414;
  background:#fff;
  line-height:1.6;
  padding-top:64px;
  padding-bottom:76px;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul,ol{margin:0;padding:0;list-style:none}
h1,h2,h3{font-family:'Kanit',sans-serif;font-weight:700;margin:0 0 .5em;line-height:1.2}
p{margin:0 0 .75em;max-width:70ch}

@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:.4em;
  min-height:44px;
  padding:.7em 1.6em;
  border-radius:var(--st-ds-radius-btn);
  font-family:'Kanit',sans-serif;
  font-weight:700;
  font-size:.95rem;
  letter-spacing:.02em;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease,background .2s ease,color .2s ease,border-color .2s ease;
}
.st-btn:active{transform:translateY(1px)}
.st-btn-primary{background:#FFCC00;color:#000;border-color:#FFCC00}
.st-btn-primary:hover{background:#ffd633;box-shadow:0 0 0 4px rgba(255,204,0,.25)}
.st-btn-ghost{background:transparent;color:#fff;border-color:#fff}
.st-btn-ghost:hover{background:rgba(255,255,255,.12)}
.st-btn-lg{padding:.9em 2.2em;font-size:1.05rem}

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:#000;
  border-bottom:1px solid rgba(255,204,0,.35);
}
.st-header.is-scrolled{box-shadow:0 2px 18px rgba(0,0,0,.5)}
.st-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  min-height:64px;
  padding:.5rem var(--st-ds-pad);
  max-width:var(--st-ds-measure);
  margin:0 auto;
}
.st-brand{
  display:inline-flex;
  order:1;
}
.st-logo{
  height:34px;
  width:auto;
  background:#fff;
  padding:.35rem .6rem;
  border-radius:var(--st-ds-radius-sm);
}
.st-auth-cluster{
  order:2;
  display:flex;
  align-items:center;
  gap:.6rem;
}
.st-nav{
  order:3;
  display:none;
  width:100%;
}
.st-nav-list{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:1.4rem;
}
.st-nav-list a{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  color:#eaeaea;
  font-family:'Kanit',sans-serif;
  font-weight:600;
  font-size:.95rem;
  letter-spacing:.02em;
  position:relative;
  transition:color .2s ease;
}
.st-nav-list a:hover,.st-nav-link.is-current{color:#FFCC00}
.st-nav-link.is-current::after{
  content:'';
  position:absolute;
  left:0;right:0;bottom:-4px;
  height:2px;
  background:#FFCC00;
}

.st-hamburger{
  order:4;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;
  height:44px;
  background:transparent;
  border:1px solid rgba(255,255,255,.3);
  border-radius:var(--st-ds-radius-sm);
  cursor:pointer;
}
.st-hamburger-bar{
  width:22px;
  height:2px;
  background:#FFCC00;
  transition:transform .25s ease,opacity .25s 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;
  background:#000;
  border-top:1px solid rgba(255,204,0,.35);
  padding:.5rem var(--st-ds-pad) 1.2rem;
  max-height:80vh;
  overflow-y:auto;
}
.st-mobile-menu.is-open{display:block}
.st-mobile-menu li{border-bottom:1px solid rgba(255,255,255,.08)}
.st-mobile-menu li:last-child,.st-mobile-menu li:nth-last-child(2){border-bottom:none;margin-top:.5rem}
.st-mobile-menu a{
  display:flex;
  align-items:center;
  min-height:48px;
  color:#f0f0f0;
  font-weight:600;
}
.st-mobile-menu a.st-btn{justify-content:center;margin:.4rem 0}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:1200;
  display:flex;
  gap:.6rem;
  padding:.6rem var(--st-ds-pad);
  padding-bottom:calc(.6rem + env(safe-area-inset-bottom));
  background:#000;
  border-top:1px solid rgba(255,204,0,.35);
}
.st-mobile-cta .st-btn{flex:1 1 50%}

.st-back-to-top{
  position:fixed;
  right:1rem;
  bottom:calc(90px + env(safe-area-inset-bottom));
  z-index:1100;
  width:48px;
  height:48px;
  border-radius:50%;
  background:#FFCC00;
  color:#000;
  border:2px solid #000;
  font-size:1.2rem;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.st-back-to-top.is-hidden{display:none}

.st-cookie-consent,.st-cookie-banner{
  position:fixed;
  left:0;right:0;
  bottom:calc(70px + env(safe-area-inset-bottom));
  z-index:1150;
  background:#111;
  color:#f5f5f5;
  border-top:1px solid rgba(255,204,0,.4);
  padding:1rem var(--st-ds-pad);
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  align-items:center;
  justify-content:space-between;
}
.st-cookie-consent p,.st-cookie-banner p{margin:0;max-width:60ch;font-size:.9rem}
.st-cookie-consent.is-hidden,.st-cookie-banner.is-hidden{display:none}

main{display:block}

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

.st-hero{
  max-width:100%;
  background:#000;
  color:#fff;
  padding:2rem var(--st-ds-pad);
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  position:relative;
  overflow:hidden;
}
.st-hero::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:6px;
  background:repeating-linear-gradient(90deg,#FFCC00 0 20px,#000 20px 40px);
}
.st-hero-content{
  display:flex;
  flex-direction:column;
  gap:.6rem;
  max-width:100%;
}
.st-hero-title{
  font-size:clamp(1.8rem,5vw + 1rem,3.2rem);
  color:#FFCC00;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.st-hero-subtitle{
  font-size:clamp(1rem,2.5vw + .5rem,1.25rem);
  color:#eaeaea;
  max-width:60ch;
}
.st-hero-media{
  width:100%;
  border:var(--st-ds-border);
  border-radius:var(--st-ds-radius-lg);
  padding:.5rem;
  background:#111;
}
.st-hero-slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:.6rem;
  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;
  aspect-ratio:16/10;
}
.st-hero-slide img{
  width:100%;height:100%;object-fit:cover;
}

.st-facts{
  background:#fff8dc;
  border-top:var(--st-ds-border);
  border-bottom:var(--st-ds-border);
}
.st-facts-heading{
  font-size:clamp(1.4rem,3vw + .5rem,2rem);
  color:#000;
  border-bottom:3px solid #FFCC00;
  display:inline-block;
  padding-bottom:.3rem;
  margin-bottom:1.2rem;
}

.st-section-heading{
  font-size:clamp(1.4rem,3vw + .5rem,2.1rem);
  color:#000;
  position:relative;
  padding-left:1rem;
  border-left:6px solid #FFCC00;
  margin-bottom:.8rem;
}
.st-section-intro,.st-section-text{
  color:#333;
  margin-bottom:1rem;
}

.st-games-points,.st-kyc-points,.st-mobile-points,.st-responsible-points{
  display:flex;
  flex-direction:column;
  gap:.6rem;
  margin:1rem 0 1.5rem;
}
.st-games-points li,.st-kyc-points li,.st-mobile-points li,.st-responsible-points li{
  position:relative;
  padding:.6rem .8rem .6rem 2rem;
  background:#fafafa;
  border:var(--st-ds-border);
  border-radius:var(--st-ds-radius-sm);
}
.st-games-points li::before,.st-kyc-points li::before,.st-mobile-points li::before,.st-responsible-points li::before{
  content:'★';
  position:absolute;
  left:.7rem;
  color:#FFCC00;
  font-size:.9rem;
}

.st-games-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
  margin:1.5rem 0;
}
.st-game-card{
  background:#fff;
  border:var(--st-ds-border);
  border-radius:var(--st-ds-radius);
  padding:.6rem;
  display:flex;
  flex-direction:column;
  gap:.5rem;
  transition:transform .2s ease;
}
.st-game-card:hover{transform:translateY(-3px)}
.st-game-img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:var(--st-ds-radius-sm);
}
.st-game-name{
  text-align:center;
  font-family:'Kanit',sans-serif;
  font-weight:600;
  font-size:.9rem;
  color:#111;
  padding-top:.5rem;
  border-top:1px solid rgba(0,0,0,.14);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:2.4em;
}

.st-registration{background:#000;color:#fff;border-radius:var(--st-ds-radius-lg);margin:2rem auto;max-width:var(--st-ds-measure)}
.st-reg-steps{
  display:flex;
  flex-direction:column;
  gap:.8rem;
  counter-reset:step;
  margin:1.2rem 0 1.5rem;
}
.st-reg-steps li{
  counter-increment:step;
  position:relative;
  padding:.8rem 1rem 1rem 3rem;
  background:#151515;
  border:1px solid rgba(255,204,0,.3);
  border-radius:var(--st-ds-radius-sm);
  color:#e8e8e8;
}
.st-reg-steps li::before{
  content:counter(step);
  position:absolute;
  left:.7rem;top:.7rem;
  width:26px;height:26px;
  display:flex;align-items:center;justify-content:center;
  background:#FFCC00;
  color:#000;
  font-weight:700;
  border-radius:50%;
  font-size:.85rem;
}

.st-bonus-steps{padding:0;margin:1rem 0 1.5rem}
.st-bonus-list{
  display:flex;
  flex-direction:column;
  gap:.7rem;
}
.st-bonus-list li{
  padding:.9rem 1rem;
  border:var(--st-ds-border);
  border-left:4px solid #FFCC00;
  border-radius:var(--st-ds-radius-sm);
  background:#fffef2;
}

.st-payments-row{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  justify-content:center;
  margin-top:1rem;
}
.st-payment-logo{
  max-height:32px;
  width:auto;
  object-fit:contain;
  background:#fff;
  border:var(--st-ds-border);
  border-radius:var(--st-ds-radius-sm);
  padding:.5rem .9rem;
}

.st-faq-list{
  display:flex;
  flex-direction:column;
  gap:.8rem;
  margin-top:1.2rem;
}
.st-faq-item{
  border:var(--st-ds-border);
  border-radius:var(--st-ds-radius);
  background:#fff;
  padding:0;
  overflow:hidden;
}
.st-faq-q{
  cursor:pointer;
  list-style:none;
  padding:1rem 1.2rem;
  font-family:'Kanit',sans-serif;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  min-height:44px;
  background:#fffbe6;
}
.st-faq-q::-webkit-details-marker{display:none}
.st-faq-q::after{
  content:'▾';
  color:#000;
  transition:transform .2s ease;
  flex-shrink:0;
}
details[open] .st-faq-q::after{transform:rotate(180deg)}
details[open] .st-faq-q{background:#FFCC00}
.st-faq-a{
  padding:1rem 1.2rem 1.2rem;
  color:#333;
  border-top:1px solid rgba(0,0,0,.1);
}

.st-footer{
  background:#000;
  color:#f0f0f0;
  padding:var(--st-ds-sec-y) var(--st-ds-pad) 1.5rem;
  margin-top:2rem;
}
.st-footer-grid{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
  gap:2rem;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.12);
  padding-bottom:1.6rem;
}
.st-footer-col{flex:1 1 220px;min-width:200px}
.st-footer-logo{
  height:32px;
  background:#fff;
  padding:.3rem .55rem;
  border-radius:var(--st-ds-radius-sm);
  margin:0 auto .6rem;
}
.st-footer-text,.st-footer-disclaimer{font-size:.85rem;color:#c9c9c9;max-width:40ch;margin:0 auto}
.st-footer-nav h3,.st-footer-responsible h3{
  font-size:1rem;
  color:#FFCC00;
  margin-bottom:.6rem;
}
.st-footer-nav ul{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.9rem;
}
.st-footer-nav a{
  font-size:.85rem;
  color:#e6e6e6;
  min-height:44px;
  display:inline-flex;
  align-items:center;
}
.st-footer-nav a:hover{color:#FFCC00}

.st-footer-payments{
  max-width:var(--st-ds-measure);
  margin:1.6rem auto 0;
  text-align:center;
}
.st-payments-footer-heading{
  color:#fff;
  font-size:1rem;
  margin-bottom:.8rem;
}
.st-footer-payments .st-payments-row{justify-content:center}
.st-footer-payments .st-payment-logo{background:#111;border:1px solid rgba(255,255,255,.18)}

.st-footer-bottom{
  text-align:center;
  margin-top:1.6rem;
  font-size:.8rem;
  color:#999;
}

@media (min-width:768px){
  body{padding-top:136px;padding-bottom:0}
  .st-mobile-cta{display:none}
  .st-hamburger{display:none}
  .st-header-inner{
    flex-wrap:wrap;
    min-height:84px;
    padding:.8rem var(--st-ds-pad);
  }
  .st-nav{
    display:block;
    background:#161616;
    border-top:1px solid rgba(255,204,0,.25);
    margin-top:.4rem;
  }
  .st-nav-list{
    min-height:52px;
    padding:.4rem 0;
  }
  .st-hero-split-right{
    flex-direction:row;
    align-items:center;
  }
  .st-hero-split-right .st-hero-content{flex:1 1 45%}
  .st-hero-split-right .st-hero-media{flex:1 1 50%}
  .st-games-grid{grid-template-columns:repeat(3,1fr)}
  .st-footer-grid{text-align:left;justify-content:space-between}
  .st-footer-logo{margin:0 0 .6rem}
  .st-footer-text,.st-footer-disclaimer{margin:0}
  .st-footer-nav ul{justify-content:flex-start}
}

@media (min-width:1024px){
  .st-games-grid{grid-template-columns:repeat(4,1fr)}
}

@media (min-width:1280px){
  .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(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: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:1200px;--st-ds-pad:1.6rem;--st-ds-sec-y:3rem;--st-ds-border:1px solid rgba(0,0,0,.14);--st-ds-shadow:none;--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-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-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:radial-gradient(ellipse at center,rgba(0,0,0,.26) 0%,rgba(0,0,0,.74) 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:#FFFFFF;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}
