/* deploy-css-58ba98d2123e */

:root{
  --st-primary:#FDFD96;
  --st-secondary:#FFD700;
  --st-accent:#FF5733;
  --st-dark:#2b2013;
  --st-dark-soft:#4a3420;
  --st-muted:#8a7f66;
  --st-light:#FFFDF2;
  --st-white:#ffffff;
  --st-border:#f0e4b8;
  --st-shadow:0 10px 30px rgba(43,32,19,0.12);
  --st-header-h-mobile:64px;
  --st-header-h-desktop:84px;
  --st-mobilebar-h:68px;
  --st-radius:18px;
  --st-font-heading:'Baloo 2',cursive;
  --st-font-body:'Nunito Sans',sans-serif;
}

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

html{scroll-behavior:smooth;}

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

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

@media (min-width:900px){
  body{
    padding-top:var(--st-header-h-desktop);
    padding-bottom:0;
  }
}

h1,h2,h3,h4{
  font-family:var(--st-font-heading);
  color:var(--st-dark);
  margin-top:0.4em;
  margin-bottom:0.5em;
  line-height:1.2;
}

h1{font-size:clamp(1.9rem,1.5rem + 2.5vw,3.2rem);}
h2{font-size:clamp(1.5rem,1.3rem + 1.4vw,2.3rem);}
h3{font-size:clamp(1.1rem,1rem + 0.6vw,1.4rem);}

p{margin:0 0 0.75em;max-width:70ch;}

a{color:inherit;text-decoration:none;}

ul,ol{padding-left:1.2rem;margin:0.75em 0;}
li{margin-bottom:0.4em;}

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

section{padding:1.5rem 1.25rem;max-width:1200px;margin:0 auto;}

@media (min-width:900px){
  section{padding:2.75rem 2rem;}
}

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:linear-gradient(120deg,var(--st-secondary) 0%,var(--st-accent) 100%);
  box-shadow:0 4px 18px rgba(43,32,19,0.18);
  transition:padding 0.25s ease, box-shadow 0.25s ease;
}

.st-header.is-scrolled{
  box-shadow:0 6px 24px rgba(43,32,19,0.28);
}

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

@media (min-width:900px){
  .st-header-inner{
    height:var(--st-header-h-desktop);
    padding:0.75rem 2rem;
  }
  .st-header.is-scrolled .st-header-inner{
    height:calc(var(--st-header-h-desktop) - 12px);
  }
}

.st-brand{display:flex;align-items:center;flex-shrink:0;}
.st-logo{height:34px;width:auto;object-fit:contain;}

@media (min-width:900px){
  .st-logo{height:42px;}
}

.st-nav{display:none;}

@media (min-width:900px){
  .st-nav{display:flex;flex:1;justify-content:center;}
  .st-nav-list{
    display:flex;
    align-items:center;
    gap:1.6rem;
    list-style:none;
    margin:0;padding:0;
    flex-wrap:wrap;
  }
  .st-nav-list a{
    font-weight:700;
    color:var(--st-dark);
    padding:0.5rem 0.2rem;
    position:relative;
    white-space:nowrap;
  }
  .st-nav-list a::after{
    content:"";
    position:absolute;
    left:0;bottom:0;
    width:0;height:2px;
    background:var(--st-dark);
    transition:width 0.2s ease;
  }
  .st-nav-list a:hover::after,
  .st-nav-list a.st-nav-link.is-current::after{width:100%;}
}

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

@media (min-width:900px){
  .st-auth-cluster{
    display:flex;
    align-items:center;
    gap:0.75rem;
    flex-shrink:0;
  }
}

.st-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0.6rem 1.3rem;
  border-radius:999px;
  font-family:var(--st-font-heading);
  font-weight:600;
  font-size:0.95rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space:nowrap;
}

.st-btn:hover{transform:translateY(-2px);}

.st-btn--ghost{
  background:transparent;
  border-color:var(--st-dark);
  color:var(--st-dark);
}
.st-btn--ghost:hover{background:rgba(43,32,19,0.08);}

.st-btn--primary{
  background:var(--st-dark);
  color:var(--st-secondary);
  border-color:var(--st-dark);
  box-shadow:0 6px 16px rgba(43,32,19,0.3);
}
.st-btn--primary:hover{background:var(--st-dark-soft);}

.st-btn--cta{
  background:var(--st-accent);
  color:var(--st-white);
  border-color:var(--st-accent);
  box-shadow:0 8px 20px rgba(255,87,51,0.4);
}
.st-btn--cta:hover{background:#e14a28;}

.st-hamburger{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;height:44px;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:0;
}

@media (min-width:900px){
  .st-hamburger{display:none;}
}

.st-hamburger-bar{
  width:26px;height:3px;
  background:var(--st-dark);
  border-radius:2px;
  transition:transform 0.25s ease, opacity 0.25s ease;
}

.st-hamburger.st-menu-toggle.is-active .st-hamburger-bar:nth-child(1){transform:translateY(8px) rotate(45deg);}
.st-hamburger.st-menu-toggle.is-active .st-hamburger-bar:nth-child(2){opacity:0;}
.st-hamburger.st-menu-toggle.is-active .st-hamburger-bar:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

.st-mobile-menu{
  display:none;
  list-style:none;
  margin:0;
  padding:0.5rem 1rem 1.25rem;
  background:linear-gradient(120deg,var(--st-secondary) 0%,var(--st-accent) 100%);
}

.st-mobile-menu.is-open{display:block;}

.st-mobile-menu li{margin:0;}

.st-mobile-menu a{
  display:flex;
  align-items:center;
  min-height:48px;
  color:var(--st-dark);
  font-weight:700;
  border-bottom:1px solid rgba(43,32,19,0.15);
}

@media (min-width:900px){
  .st-mobile-menu{display:none !important;}
}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  display:flex;
  gap:0.6rem;
  padding:0.6rem 0.8rem;
  padding-bottom:calc(0.6rem + env(safe-area-inset-bottom));
  background:var(--st-white);
  border-top:1px solid var(--st-border);
  box-shadow:0 -6px 18px rgba(43,32,19,0.15);
  z-index:1200;
}

.st-mobile-cta .st-btn{flex:1;}

@media (min-width:900px){
  .st-mobile-cta{display:none;}
}

.st-hero{
  position:relative;
  text-align:center;
  padding:2.5rem 1.25rem;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1.25rem;
}

.st-hero-shapes{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.st-blob{
  position:absolute;
  border-radius:50%;
  filter:blur(10px);
  opacity:0.55;
}

.st-blob--one{
  width:220px;height:220px;
  background:var(--st-primary);
  top:-60px;left:-60px;
}

.st-blob--two{
  width:260px;height:260px;
  background:var(--st-secondary);
  bottom:-80px;right:-60px;
}

.st-blob--three{
  width:160px;height:160px;
  background:var(--st-accent);
  opacity:0.35;
  top:40%;left:60%;
}

.st-hero-content{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.9rem;
  max-width:60ch;
}

.st-hero-badge{
  display:inline-flex;
  align-items:center;
  padding:0.4rem 1.1rem;
  border-radius:999px;
  background:var(--st-accent);
  color:var(--st-white);
  font-family:var(--st-font-heading);
  font-weight:700;
  font-size:0.85rem;
  letter-spacing:0.05em;
  box-shadow:0 6px 16px rgba(255,87,51,0.35);
}

.st-hero-title{margin-bottom:0.3em;}
.st-hero-subtitle{color:var(--st-dark-soft);}

.st-hero-media{
  position:relative;
  z-index:1;
  width:100%;
  max-width:900px;
}

.st-hero-slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:1rem;
  padding:0.25rem;
  border-radius:var(--st-radius);
}

.st-hero-slide{
  flex:0 0 100%;
  scroll-snap-align:center;
  border-radius:var(--st-radius);
  overflow:hidden;
}

.st-hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:var(--st-radius);
  aspect-ratio:16/9;
}

.st-facts{background:var(--st-light);}

.st-facts-heading{text-align:center;}

.st-facts-table-wrap{
  max-width:800px;
  margin:1rem auto 0;
  border-radius:var(--st-radius);
  background:var(--st-white);
  box-shadow:var(--st-shadow);
  border:1px solid var(--st-border);
  background-image:linear-gradient(180deg,rgba(255,215,0,0.08),transparent 40%);
  overflow:hidden;
}

.st-facts-table{
  width:100%;
  border-collapse:collapse;
}

.st-facts-table,
.st-facts-table tbody,
.st-facts-table tr,
.st-facts-table th,
.st-facts-table td{
  display:block;
  width:100%;
}

.st-facts-table tr{
  display:grid;
  grid-template-columns:1fr;
  gap:0.15rem;
  padding:0.9rem 1.1rem;
  border-bottom:1px solid var(--st-border);
  border-left:4px solid var(--st-accent);
  transition:background 0.2s ease;
}

.st-facts-table tr:last-child{border-bottom:none;}
.st-facts-table tr:nth-child(even){background:rgba(255,215,0,0.06);}

.st-facts-table th{
  text-align:left;
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--st-muted);
  font-weight:700;
}

.st-facts-table td{
  font-size:clamp(1rem,0.95rem + 0.3vw,1.2rem);
  font-weight:700;
  color:var(--st-dark);
}

@media (min-width:700px){
  .st-facts-table tr{
    grid-template-columns:33% 1fr;
    align-items:center;
    padding:1.1rem 1.5rem;
  }
  .st-facts-table th,
  .st-facts-table td{width:auto;display:block;}
  .st-facts-table tr:hover{background:rgba(255,87,51,0.06);}
}

.st-games-heading, .st-games-intro{text-align:center;}
.st-games-intro{margin-left:auto;margin-right:auto;}

.st-games-points{
  max-width:70ch;
  margin:0.5rem auto 1.25rem;
}

.st-games-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0.9rem;
  margin:1.25rem 0;
}

@media (min-width:600px){
  .st-games-grid{grid-template-columns:repeat(3,1fr);}
}
@media (min-width:900px){
  .st-games-grid{grid-template-columns:repeat(4,1fr);gap:1.1rem;}
}
@media (min-width:1200px){
  .st-games-grid.st-games-grid--6col{grid-template-columns:repeat(5,1fr);}
}

.st-game-card{
  background:var(--st-white);
  border-radius:14px;
  padding:0.6rem;
  box-shadow:0 6px 16px rgba(43,32,19,0.1);
  display:flex;
  flex-direction:column;
  gap:0.5rem;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.st-game-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 24px rgba(43,32,19,0.18);
}

.st-game-img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:10px;
}

.st-game-name{
  font-family:var(--st-font-heading);
  font-size:0.9rem;
  font-weight:600;
  text-align:center;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin:0;
}

.st-games-cta{display:flex;margin:1.25rem auto 0;width:max-content;}

.st-responsible, .st-security{
  background:var(--st-primary);
  border-radius:var(--st-radius);
  margin-top:1.5rem;
  margin-bottom:1.5rem;
}

.st-about, .st-mobile-app{
  background:transparent;
}

.st-registration{
  background:var(--st-white);
  border-radius:var(--st-radius);
  box-shadow:var(--st-shadow);
  margin:1.5rem auto;
}

.st-reg-steps{
  list-style:none;
  padding:0;
  display:grid;
  gap:0.75rem;
  counter-reset:step;
}

.st-reg-steps li{
  position:relative;
  padding:0.75rem 1rem 0.75rem 3rem;
  background:var(--st-light);
  border-radius:12px;
  counter-increment:step;
}

.st-reg-steps li::before{
  content:counter(step);
  position:absolute;
  left:0.7rem;top:50%;
  transform:translateY(-50%);
  width:28px;height:28px;
  border-radius:50%;
  background:var(--st-accent);
  color:var(--st-white);
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.85rem;
}

.st-bonus{
  background:linear-gradient(160deg,var(--st-secondary) 0%,var(--st-primary) 100%);
  border-radius:var(--st-radius);
  margin:1.5rem auto;
}

.st-bonus-list{
  display:grid;
  gap:0.6rem;
  list-style:none;
  padding:0;
}

.st-bonus-list li{
  background:rgba(255,255,255,0.65);
  border-left:4px solid var(--st-accent);
  padding:0.6rem 0.9rem;
  border-radius:10px;
}

.st-payments-points, .st-security-points{
  display:grid;
  gap:0.5rem;
  list-style:none;
  padding:0;
}

.st-payments-points li, .st-security-points li{
  padding:0.5rem 0.9rem;
  border-left:3px solid var(--st-secondary);
  background:var(--st-white);
  border-radius:8px;
}

.st-faq{max-width:900px;}

.st-faq-heading{text-align:center;}

.st-faq-list{
  display:grid;
  gap:0.75rem;
}

.st-faq-item{
  background:var(--st-white);
  border:1px solid var(--st-border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(43,32,19,0.06);
}

.st-faq-q{
  cursor:pointer;
  list-style:none;
  padding:1rem 1.2rem;
  font-family:var(--st-font-heading);
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  min-height:44px;
}

.st-faq-q::-webkit-details-marker{display:none;}

.st-faq-q::after{
  content:"+";
  font-size:1.4rem;
  color:var(--st-accent);
  transition:transform 0.2s ease;
  flex-shrink:0;
}

details[open] .st-faq-q::after{
  transform:rotate(45deg);
}

.st-faq-a{
  padding:0 1.2rem 1.1rem;
  color:var(--st-dark-soft);
}

.st-footer{
  background:linear-gradient(160deg,var(--st-dark) 0%,var(--st-dark-soft) 100%);
  color:var(--st-light);
  padding:2rem 1.25rem 1rem;
  margin-top:2rem;
}

.st-footer-columns{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  max-width:1200px;
  margin:0 auto;
}

@media (min-width:700px){
  .st-footer-columns{grid-template-columns:repeat(3,1fr);}
}

.st-footer-col h3{
  color:var(--st-secondary);
  margin-bottom:0.5rem;
}

.st-footer-logo{height:34px;margin-bottom:0.75rem;}

.st-footer-text, .st-footer-disclaimer{
  color:rgba(255,253,242,0.8);
  font-size:0.9rem;
}

.st-footer-nav ul{
  list-style:none;
  padding:0;
  display:grid;
  gap:0.4rem;
}

.st-footer-nav a{
  color:rgba(255,253,242,0.85);
}
.st-footer-nav a:hover{color:var(--st-secondary);}

.st-footer-payments{
  max-width:1200px;
  margin:1.75rem auto 0;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,253,242,0.15);
}

.st-payments-footer-heading{
  text-align:center;
  color:var(--st-secondary);
  font-size:1rem;
}

.st-payments-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0.75rem;
  margin-top:0.75rem;
}

.st-payment-logo{
  height:32px;
  max-height:32px;
  width:auto;
  object-fit:contain;
  background:rgba(255,253,242,0.95);
  padding:0.5rem 0.8rem;
  border-radius:10px;
}

.st-footer-bottom{
  text-align:center;
  margin-top:1.5rem;
  padding-top:1rem;
  border-top:1px solid rgba(255,253,242,0.1);
  font-size:0.85rem;
  color:rgba(255,253,242,0.6);
}

.st-cookie-consent{
  position:fixed;
  left:0.75rem;right:0.75rem;
  bottom:calc(var(--st-mobilebar-h) + 0.75rem + env(safe-area-inset-bottom));
  z-index:1300;
  background:var(--st-white);
  border:1px solid var(--st-border);
  border-radius:14px;
  box-shadow:var(--st-shadow);
  padding:1rem;
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  align-items:center;
  justify-content:space-between;
  max-width:600px;
  margin:0 auto;
}

@media (min-width:900px){
  .st-cookie-consent{
    left:auto;
    right:1.5rem;
    bottom:1.5rem;
    max-width:380px;
  }
}

.st-cookie-consent.is-hidden{display:none;}

.st-cookie-consent p{margin:0;font-size:0.9rem;}

.st-back-to-top{
  position:fixed;
  right:0.9rem;
  bottom:calc(var(--st-mobilebar-h) + 5.5rem + env(safe-area-inset-bottom));
  z-index:1150;
  width:48px;height:48px;
  border-radius:50%;
  background:var(--st-accent);
  color:var(--st-white);
  border:none;
  box-shadow:0 8px 20px rgba(255,87,51,0.4);
  font-size:1.2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform 0.2s ease, opacity 0.2s ease;
}

.st-back-to-top:hover{transform:translateY(-3px);}

.st-back-to-top.is-hidden{display:none;}

@media (min-width:900px){
  .st-back-to-top{bottom:1.5rem;}
}

.st-hero, .st-facts, .st-games, .st-responsible, .st-about, .st-registration, .st-mobile-app, .st-bonus, .st-payments, .st-security, .st-faq{
  position:relative;
}

.st-hero::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:min(90%,700px);
  height:4px;
  background:linear-gradient(90deg,transparent,var(--st-accent),transparent);
  opacity:0.6;
}
[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;background:#FFD700;border-top:1px solid rgba(255,255,255,.14);box-shadow:0 14px 28px rgba(0,0,0,.38)}[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:14px}
.st-hero-img{max-width:100%;height:auto;border-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(6,minmax(0,1fr))}}
@media(min-width:1400px){:where(.st-games-grid){grid-template-columns:repeat(7,minmax(0,1fr))}}
.st-game-img{width:100%;aspect-ratio:1/1;object-fit:cover;display:block;border-radius: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}}}

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

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

.st-lead-cta{max-width:1200px;margin:0 auto;padding:1rem 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 1.25rem 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:1200px !important;margin-left:auto !important;margin-right:auto !important;border-radius:16px;overflow:hidden}

[class*="-footer"] [class*="-logo"]:not([class*="-payment"]){filter:none !important}

.st-promo{position:relative;overflow:hidden;border-radius:16px;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;align-items:center;min-height:clamp(230px,44vw,420px);overflow:hidden}
.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(90deg,rgba(0,0,0,.80) 0%,rgba(0,0,0,.55) 45%,rgba(0,0,0,.05) 100%)}
.st-promo-body{position:relative;z-index:2;max-width:min(560px,58%);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:999px;background:#FF5733;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}
