/* deploy-css-f0b7c8aa6092 */

:root{
  --st-primary:#101010;
  --st-secondary:#f7931a;
  --st-accent:#ffffff;
  --st-bg:#1d2027;
  --st-text:#eef1f6;
  --st-text-soft:#a7b0be;
  --st-panel:#262a33;
  --st-panel-2:#2c313c;
  --st-hairline:rgba(255,255,255,.14);
  --st-header-h:4.25rem;
  --st-mcta-h:4.5rem;
  --st-font-head:'Sora',sans-serif;
  --st-font-body:'Mulish',sans-serif;
}

@media (min-width:960px){
  :root{ --st-header-h:5.25rem; }
}

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;
  background:var(--st-bg);
  color:var(--st-text);
  font-family:var(--st-font-body);
  font-size:clamp(0.95rem,0.9rem + 0.2vw,1.05rem);
  line-height:1.6;
  padding-top:var(--st-header-h);
  padding-bottom:var(--st-mcta-h);
  overflow-x:hidden;
}

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

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul,ol{margin:0;padding:0;list-style:none;}
p{margin:0 0 0.75em;}
h1,h2,h3{font-family:var(--st-font-head);color:var(--st-text);margin:0 0 0.5em;line-height:1.2;}

.st-section-heading{
  font-size:clamp(1.4rem,1.1rem + 1.4vw,2rem);
  margin-top:0.2em;
  margin-bottom:0.6em;
  position:relative;
  display:inline-block;
}
.st-section-heading::after{
  content:"";
  display:block;
  width:2.5rem;
  height:3px;
  border-radius:999px;
  margin-top:0.4rem;
  background:linear-gradient(90deg,var(--st-secondary),transparent);
}

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

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1200;
  height:var(--st-header-h);
  background:linear-gradient(135deg,#0c0c0d 0%,#151517 55%,#101010 100%);
  box-shadow:0 1px 0 rgba(247,147,26,.25),0 12px 30px -14px rgba(0,0,0,.7);
  transition:background .3s ease,box-shadow .3s ease;
}
@media (prefers-reduced-motion:reduce){
  .st-header{transition:none;}
}
.st-header.is-scrolled{
  background:linear-gradient(135deg,#0a0a0b 0%,#111113 55%,#0c0c0d 100%);
  box-shadow:0 1px 0 rgba(247,147,26,.45),0 16px 34px -16px rgba(0,0,0,.85);
}

.st-header-inner{
  max-width:var(--st-ds-measure);
  height:100%;
  margin:0 auto;
  padding:0 var(--st-ds-pad);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:1rem;
}

.st-logo{
  display:inline-flex;
  align-items:center;
  background:var(--st-accent);
  padding:0.4rem 0.7rem;
  border-radius:var(--st-ds-radius-sm);
  line-height:0;
}
.st-logo img{
  height:2.1rem;
  width:auto;
}

.st-nav{
  display:none;
}

.st-nav-list{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.75rem;
}
.st-nav-list a{
  font-size:0.95rem;
  font-weight:600;
  color:var(--st-accent);
  padding:0.5rem 0.15rem;
  position:relative;
  transition:color .2s ease;
}
.st-nav-list a:hover{color:var(--st-secondary);}
.st-nav-list a.is-current,
.st-nav-link.is-current{
  color:var(--st-secondary);
}
.st-nav-list a.is-current::after,
.st-nav-link.is-current::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-2px;
  height:2px;
  background:var(--st-secondary);
  border-radius:999px;
}

.st-auth{
  display:none;
  align-items:center;
  gap:0.75rem;
}

.st-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0.65rem 1.5rem;
  border-radius:var(--st-ds-radius-btn);
  font-family:var(--st-font-head);
  font-weight:600;
  font-size:0.95rem;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease;
  border:none;
}
@media (prefers-reduced-motion:reduce){
  .st-btn{transition:none;}
}
.st-btn-primary{
  background:linear-gradient(135deg,#ffb04d,var(--st-secondary));
  color:#171000;
  box-shadow:0 8px 20px -8px rgba(247,147,26,.6);
}
.st-btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px -10px rgba(247,147,26,.75);
}
.st-btn-ghost{
  background:transparent;
  color:var(--st-accent);
  border:1px solid rgba(255,255,255,.45);
}
.st-btn-ghost:hover{
  border-color:var(--st-secondary);
  color:var(--st-secondary);
}
.st-btn-lg{
  padding:0.85rem 1.9rem;
  font-size:1.05rem;
}

.st-hamburger{
  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 span{
  display:block;
  width:20px;
  height:2px;
  background:var(--st-accent);
  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-menu-toggle.is-active span{background:var(--st-secondary);}

.st-mobile-menu{
  display:none;
  position:fixed;
  top:var(--st-header-h);
  left:0;right:0;
  max-height:calc(100vh - var(--st-header-h));
  overflow-y:auto;
  background:#131316;
  border-top:1px solid var(--st-hairline);
  padding:0.5rem var(--st-ds-pad) 1rem;
  z-index:1150;
}
.st-mobile-menu.is-open{display:block;}
.st-mobile-menu li{border-bottom:1px solid var(--st-hairline);}
.st-mobile-menu li:last-child{border-bottom:none;}
.st-mobile-menu a{
  display:flex;
  align-items:center;
  min-height:48px;
  color:var(--st-text);
  font-weight:600;
}
.st-mobile-menu a:hover{color:var(--st-secondary);}

@media (min-width:960px){
  .st-nav{display:flex;justify-self:center;}
  .st-auth{display:flex;}
  .st-hamburger{display:none;}
  .st-mobile-menu{display:none !important;}
}

.st-hero-split{
  position:relative;
  border-radius:var(--st-ds-radius-lg);
  background:
    radial-gradient(circle at 15% 20%,rgba(247,147,26,.35),transparent 55%),
    radial-gradient(circle at 85% 80%,rgba(247,147,26,.18),transparent 60%),
    linear-gradient(155deg,#15161a 0%,#101010 100%);
  display:grid;
  gap:1.5rem;
  padding:var(--st-ds-sec-y) var(--st-ds-pad);
  overflow:hidden;
}
.st-hero-split::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,.35));
  pointer-events:none;
}
.st-hero-text{position:relative;z-index:1;display:flex;flex-direction:column;gap:0.6rem;align-items:flex-start;}
.st-hero-title{
  font-size:clamp(1.7rem,1.3rem + 3vw,2.8rem);
  color:var(--st-accent);
}
.st-hero-subtitle{
  color:var(--st-text-soft);
  max-width:100%;
}
.st-hero-media{
  position:relative;
  z-index:1;
  border-radius:var(--st-ds-radius-lg);
  overflow:hidden;
  min-height:180px;
  background:var(--st-panel);
}
.st-hero-slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:0;
  height:100%;
  scrollbar-width:none;
}
.st-hero-slider::-webkit-scrollbar{display:none;}
.st-hero-slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  display:flex;
}
.st-hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:var(--st-ds-radius-lg);
  min-height:180px;
}

@media (min-width:960px){
  .st-hero-split{
    grid-template-columns:1.05fr 1fr;
    align-items:center;
    padding:2.25rem;
  }
  .st-hero-media{min-height:320px;}
  .st-hero-slide img{min-height:320px;}
}

.st-facts{
  background:var(--st-panel);
  border-radius:var(--st-ds-radius);
  border:var(--st-ds-border);
  box-shadow:var(--st-ds-shadow);
  border-left:3px solid var(--st-secondary);
}

.st-about-points{
  display:flex;
  flex-direction:column;
  gap:0.6rem;
  margin-top:0.75rem;
}
.st-about-points li{
  padding-left:1rem;
  border-left:3px solid var(--st-secondary);
  color:var(--st-text-soft);
}

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

.st-bonus-intro{color:var(--st-text-soft);}
.st-bonus-list{
  display:grid;
  grid-template-columns:1fr;
  gap:0.85rem;
  margin:1rem 0;
}
@media (min-width:640px){
  .st-bonus-list{grid-template-columns:repeat(2,1fr);}
}
@media (min-width:1200px){
  .st-bonus-list{grid-template-columns:repeat(3,1fr);}
}
.st-bonus-list li{
  position:relative;
  background:var(--st-panel-2);
  border-radius:var(--st-ds-radius);
  border:var(--st-ds-border);
  box-shadow:var(--st-ds-shadow);
  padding:1.1rem 1rem 1rem 3rem;
  color:var(--st-text-soft);
}
.st-bonus-list li::before{
  content:"★";
  position:absolute;
  left:1rem;top:1rem;
  width:1.6rem;height:1.6rem;
  border-radius:50%;
  background:var(--st-secondary);
  color:#171000;
  font-size:0.8rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

.st-payments-intro{color:var(--st-text-soft);}
.st-payments-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  justify-content:center;
  align-items:center;
  margin-top:1rem;
}
.st-payment-logo{
  max-height:32px;
  width:auto;
  object-fit:contain;
  background:var(--st-accent);
  padding:0.45rem 0.85rem;
  border-radius:var(--st-ds-radius-sm);
}

.st-reg-steps{
  display:flex;
  flex-direction:column;
  gap:0.85rem;
  margin:1rem 0 1.25rem;
  counter-reset:reg;
}
.st-reg-steps li{
  counter-increment:reg;
  position:relative;
  padding:0.9rem 1rem 0.9rem 3.2rem;
  background:var(--st-panel);
  border-radius:var(--st-ds-radius-sm);
  border-left:3px solid var(--st-secondary);
  color:var(--st-text-soft);
}
.st-reg-steps li::before{
  content:counter(reg);
  position:absolute;
  left:0.85rem;top:0.85rem;
  width:1.7rem;height:1.7rem;
  border-radius:50%;
  background:var(--st-secondary);
  color:#171000;
  font-weight:700;
  font-family:var(--st-font-head);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.85rem;
}
@media (min-width:960px){
  .st-reg-steps{flex-direction:row;flex-wrap:wrap;}
  .st-reg-steps li{flex:1 1 220px;}
}

.st-kyc-text{color:var(--st-text-soft);}
.st-kyc-points{
  display:flex;
  flex-direction:column;
  margin-top:0.75rem;
}
.st-kyc-points li{
  padding:0.65rem 0;
  border-bottom:1px solid var(--st-hairline);
  padding-left:1.6rem;
  position:relative;
  color:var(--st-text-soft);
}
.st-kyc-points li:last-child{border-bottom:none;}
.st-kyc-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--st-secondary);
  font-weight:700;
}

.st-mobile-text,.st-security-text{color:var(--st-text-soft);}

.st-faq-list{
  display:flex;
  flex-direction:column;
  margin-top:1rem;
  border-top:1px solid var(--st-hairline);
}
.st-faq-item{
  border-bottom:1px solid var(--st-hairline);
  padding:0.2rem 0;
}
.st-faq-q{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0.9rem 0.25rem;
  font-weight:700;
  font-family:var(--st-font-head);
  color:var(--st-text);
  min-height:44px;
}
.st-faq-q::-webkit-details-marker{display:none;}
.st-faq-q::after{
  content:"+";
  color:var(--st-secondary);
  font-size:1.3rem;
  flex-shrink:0;
  transition:transform .2s ease;
}
@media (prefers-reduced-motion:reduce){.st-faq-q::after{transition:none;}}
details[open] .st-faq-q::after{transform:rotate(45deg);}
.st-faq-a{
  padding:0 0.25rem 1.1rem;
  color:var(--st-text-soft);
}

.st-footer{
  background:#151619;
  border-top:1px solid var(--st-hairline);
  padding:2rem var(--st-ds-pad) 1rem;
}
.st-footer-inner{
  max-width:var(--st-ds-measure);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:1.75rem;
}
.st-footer-col{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.6rem;
  max-width:560px;
}
.st-footer-brand img{
  background:var(--st-accent);
  padding:0.35rem 0.6rem;
  border-radius:var(--st-ds-radius-sm);
}
.st-footer-text,.st-footer-disclaimer{color:var(--st-text-soft);font-size:0.9rem;}
.st-footer-nav h3{
  font-size:1rem;
  color:var(--st-accent);
}
.st-footer-nav ul{
  display:flex;
  flex-direction:column;
  gap:0.4rem;
  align-items:center;
}
.st-footer-nav a{
  color:var(--st-text-soft);
  min-height:32px;
  display:flex;
  align-items:center;
}
.st-footer-nav a:hover{color:var(--st-secondary);}

.st-footer-payments{
  max-width:var(--st-ds-measure);
  margin:1.5rem auto 0;
  padding:1.25rem var(--st-ds-pad);
  background:var(--st-panel);
  border-radius:var(--st-ds-radius);
  border:var(--st-ds-border);
  box-shadow:var(--st-ds-shadow);
  text-align:center;
}
.st-payments-footer-heading{
  font-size:0.95rem;
  color:var(--st-text-soft);
  margin-bottom:0.75rem;
}

.st-footer-bottom{
  max-width:var(--st-ds-measure);
  margin:1.5rem auto 0;
  text-align:center;
  color:var(--st-text-soft);
  font-size:0.85rem;
  padding-top:1rem;
  border-top:1px solid var(--st-hairline);
}

@media (min-width:960px){
  .st-footer-inner{align-items:center;}
}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:1300;
  display:flex;
  background:#101010;
  border-top:1px solid var(--st-hairline);
  padding:0.6rem var(--st-ds-pad);
  padding-bottom:calc(0.6rem + env(safe-area-inset-bottom));
  gap:0.6rem;
}
.st-mobile-cta a{
  flex:1 1 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border-radius:var(--st-ds-radius-btn);
  font-weight:700;
  font-family:var(--st-font-head);
}
.st-mobile-cta a:first-child{
  background:transparent;
  border:1px solid rgba(255,255,255,.4);
  color:var(--st-accent);
}
.st-mobile-cta a:last-child{
  background:linear-gradient(135deg,#ffb04d,var(--st-secondary));
  color:#171000;
}
@media (min-width:960px){
  .st-mobile-cta{display:none;}
}

.st-cookie-banner{
  position:fixed;
  left:1rem;right:1rem;
  bottom:calc(var(--st-mcta-h) + 0.75rem);
  z-index:1250;
  background:var(--st-panel);
  border-radius:var(--st-ds-radius-sm);
  border:var(--st-ds-border);
  box-shadow:0 12px 30px -12px rgba(0,0,0,.6);
  padding:1rem 1.1rem;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  color:var(--st-text-soft);
  font-size:0.9rem;
}
.st-cookie-banner.is-hidden{display:none;}
.st-cookie-actions{
  display:flex;
  gap:0.6rem;
  flex-wrap:wrap;
}
.st-cookie-actions .st-btn{padding:0.5rem 1.1rem;min-height:40px;font-size:0.85rem;}

@media (min-width:960px){
  .st-cookie-banner{
    left:auto;
    right:1.25rem;
    bottom:1.25rem;
    max-width:360px;
  }
}

.st-back-to-top{
  position:fixed;
  right:1rem;
  bottom:calc(var(--st-mcta-h) + 4.5rem);
  z-index:1260;
  width:46px;height:46px;
  border-radius:50%;
  background:linear-gradient(135deg,#ffb04d,var(--st-secondary));
  color:#171000;
  border:none;
  font-size:1.1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 24px -10px rgba(247,147,26,.7);
  transition:transform .2s ease,opacity .2s ease;
}
@media (prefers-reduced-motion:reduce){.st-back-to-top{transition:none;}}
.st-back-to-top:hover{transform:translateY(-2px);}
.st-back-to-top.is-hidden{display:none;}

@media (min-width:960px){
  .st-back-to-top{bottom:1.75rem;right:1.75rem;}
}

.is-hidden{display:none !important;}

@media (min-width:1200px){
  main > section{padding:calc(var(--st-ds-sec-y) + 0.5rem) var(--st-ds-pad);}
}
[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:959px){[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%;bottom:auto;height:auto;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:400/254;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:24px;--st-ds-radius-sm:16px;--st-ds-radius-lg:30px;--st-ds-radius-btn:999px;--st-ds-measure:1320px;--st-ds-pad:1rem;--st-ds-sec-y:1.5rem;--st-ds-border:0;--st-ds-shadow:none;--st-radius:24px}

:root{--st-ds-surface:rgba(16,16,16,.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:959px){.st-header .st-auth-cluster .st-btn{display:none}.st-header [class*="-auth"] > a{display:none}.st-header nav [class*="-nav-list"]:not(#main-navigation),.st-header [class*="-nav"]:not([class*="-mobile"]) > ul:not(#main-navigation),.st-header > ul[class*="-nav"]:not([class*="-mobile"]):not(#main-navigation){display:none}}
.st-section-inner > .st-btn{display:flex;width:fit-content;margin:clamp(1.5rem,3vw,2.25rem) auto clamp(.25rem,1vw,.5rem);text-align:center}
@media(max-width:520px){.st-section-inner > .st-btn{width:100%}}
:where(html){background:#1d2027}
:where(body){background:#1d2027;color:#eef1f6}

.st-facts-table{display:block;width:100%;border-collapse:separate;border-spacing:0;margin-top:1.25rem;}
.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-pay-table{display:block;width:100%;border-collapse:separate;border-spacing:0;margin-top:1.25rem;font-size:.95rem}
.st-pay-table thead{display:none}
.st-pay-table tbody{display:grid;grid-template-columns:1fr;gap:.7rem}
.st-pay-table tr{display:grid;grid-template-columns:1fr;gap:.35rem;padding:.85rem 1rem;border:var(--st-ds-border,1px solid rgba(128,128,128,.28));border-radius:var(--st-ds-radius,12px);background:rgba(128,128,128,.06);border-left:4px solid var(--st-accent,#e11d48)}
.st-pay-table td{display:grid;grid-template-columns:minmax(0,42%) minmax(0,1fr);gap:.6rem;align-items:baseline;min-width:0;margin:0;padding:0;border:0;text-align:left;overflow-wrap:anywhere}
.st-pay-table td::before{content:attr(data-label);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600;opacity:.7}
.st-pay-table td:first-child{font-weight:700}
@media(min-width:700px){.st-pay-table thead{display:block}.st-pay-table thead tr{border:0;border-radius:0;background:none;padding:.6rem 1rem;border-bottom:2px solid rgba(128,128,128,.3);grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}.st-pay-table th{display:block;min-width:0;margin:0;padding:0;text-align:left;font-size:.72rem;letter-spacing:.09em;text-transform:uppercase;font-weight:600;opacity:.75}.st-pay-table tbody{gap:0}.st-pay-table tbody tr{grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;align-items:center;border:0;border-radius:0;background:none;padding:.85rem 1rem;border-bottom:1px solid rgba(128,128,128,.22)}.st-pay-table tbody tr:last-child{border-bottom:0}.st-pay-table tbody tr:nth-child(even){background:rgba(128,128,128,.05)}.st-pay-table td{display:block}.st-pay-table td::before{display:none}}

.st-proscons,.st-pay-table,.st-verdict-box{max-width:var(--st-ds-measure,1100px);margin-left:auto;margin-right:auto}
main section > .st-proscons,main section > .st-pay-table,main section > .st-verdict-box{padding-left:var(--st-ds-pad,1rem);padding-right:var(--st-ds-pad,1rem)}

.st-proscons{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:1.1rem;margin-bottom:1.1rem}
.st-pc-col{border:var(--st-ds-border,1px solid rgba(128,128,128,.28));border-radius:var(--st-ds-radius,12px);box-shadow:var(--st-ds-shadow,none);padding:var(--st-ds-pad,1.1rem);min-width:0}
.st-pc-pros{border-top:3px solid var(--st-accent,#e11d48)}
.st-pc-cons{border-top:3px solid rgba(128,128,128,.55)}
.st-pc-col h3{margin:0 0 .6rem;font-size:1.02rem}
.st-pc-col ul{list-style:none;margin:0;padding:0}
.st-pc-col li{position:relative;padding:.28rem 0 .28rem 1.5rem;min-width:0}
.st-pc-col li::before{position:absolute;left:0;top:.28rem}
.st-pc-pros li::before{content:"\2713";color:var(--st-accent,#e11d48)}
.st-pc-cons li::before{content:"\2013";opacity:.75}
@media(max-width:700px){.st-proscons{grid-template-columns:1fr}}
.st-verdict-box{border-left:4px solid var(--st-accent,#e11d48);background:rgba(128,128,128,.07);border-radius:var(--st-ds-radius-sm,8px);padding:var(--st-ds-pad,1.1rem);margin-top:1.1rem;margin-bottom:1.1rem}
.st-verdict-box p{margin:.4rem 0}
.st-blurbs{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;margin-top:1.1rem;margin-bottom:1.1rem}
.st-blurb{border:var(--st-ds-border,1px solid rgba(128,128,128,.28));border-radius:var(--st-ds-radius,12px);box-shadow:var(--st-ds-shadow,none);padding:var(--st-ds-pad,1.1rem);min-width:0}
.st-blurb h3{margin:0 0 .45rem;font-size:1.02rem}
.st-blurb p{margin:0}

main section :is(p,[class*="-prose"]){max-width:none}

.st-promo{position:relative;overflow:hidden;border-radius:var(--st-ds-radius,16px);border:var(--st-ds-border,0);box-shadow:var(--st-ds-shadow,none);margin:0 0 1rem}
.st-promo-track{display:flex;transition:transform .5s ease;will-change:transform}
.st-promo-slide{position:relative;flex:0 0 100%;min-width:100%;display:flex;justify-content:center;align-items:center;min-height:clamp(230px,44vw,420px);overflow:hidden;padding:0 clamp(.75rem,2vw,1.5rem) clamp(2rem,4vw,2.6rem)}
.st-promo-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.st-promo-slide::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(0,0,0,.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:#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}
