/* deploy-css-2e14e13b9e12 */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Karla:wght@400;500;700&display=swap');
:root{
  --st-primary:#1F3B4D;
  --st-primary-dark:#12242F;
  --st-primary-light:#2C5169;
  --st-secondary:#FFD700;
  --st-secondary-dark:#E0B800;
  --st-accent:#FFFFFF;
  --st-bg:#F6F8F9;
  --st-text:#17232B;
  --st-muted:#5B7182;
  --st-border:rgba(31,59,77,0.14);
  --st-font-heading:'Manrope',sans-serif;
  --st-font-body:'Karla',sans-serif;
  --st-header-h:64px;
  --st-mobile-cta-h:64px;
  --st-radius:14px;
}

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

body{
  margin:0;
  font-family:var(--st-font-body);
  color:var(--st-text);
  background:var(--st-bg);
  padding-top:var(--st-header-h);
  padding-bottom:calc(var(--st-mobile-cta-h) + env(safe-area-inset-bottom));
  line-height:1.6;
  overflow-x:hidden;
}

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

p{margin:0 0 0.75em;}

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

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

.st-section-title{
  font-size:clamp(1.4rem,4vw,2.1rem);
  font-weight:800;
}
.st-section-intro,.st-body-text{
  max-width:70ch;
  color:var(--st-text);
  font-size:clamp(0.95rem,2vw,1.05rem);
}

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

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

.st-header{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--st-header-h);
  z-index:1000;
  background:linear-gradient(180deg,var(--st-primary),var(--st-primary-dark));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0 1rem;
  border-bottom:2px solid var(--st-secondary);
  transition:height .25s ease,box-shadow .25s ease;
}
.st-header.is-scrolled{
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
  height:calc(var(--st-header-h) - 8px);
}

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

.st-nav{display:none;}
.st-nav-list{
  display:flex;
  align-items:center;
  gap:1.5rem;
  margin:0;
  padding:0;
  list-style:none;
}
.st-nav-list a{
  color:var(--st-accent);
  font-family:var(--st-font-heading);
  font-weight:600;
  font-size:0.95rem;
  padding:0.5rem 0.25rem;
  position:relative;
  min-height:44px;
  display:flex;
  align-items:center;
}
.st-nav-list a::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  height:2px;width:0;
  background:var(--st-secondary);
  transition:width .2s ease;
}
.st-nav-list a:hover::after{width:100%;}
.st-nav-link.is-current{color:var(--st-secondary);}
.st-nav-link.is-current::after{width:100%;}

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

.st-btn{
  font-family:var(--st-font-heading);
  font-weight:700;
  font-size:0.9rem;
  padding:0.65rem 1.25rem;
  border-radius:999px;
  border:2px solid transparent;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  text-align:center;
  transition:transform .15s ease,background .2s ease,color .2s ease,border-color .2s ease;
}
.st-btn:hover{transform:translateY(-1px);}
.st-btn--primary{
  background:var(--st-secondary);
  color:var(--st-primary-dark);
  border-color:var(--st-secondary);
}
.st-btn--primary:hover{background:var(--st-secondary-dark);}
.st-btn--ghost{
  background:transparent;
  color:var(--st-accent);
  border-color:var(--st-accent);
}
.st-btn--ghost:hover{background:rgba(255,255,255,0.12);}
.st-btn--large{padding:0.9rem 1.9rem;font-size:1.05rem;}

.st-hamburger{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  background:transparent;
  border:2px solid var(--st-secondary);
  border-radius:10px;
  padding:0;
  cursor:pointer;
}
.st-hamburger span{
  display:block;
  height:2px;
  width:22px;
  margin:0 auto;
  background:var(--st-accent);
  border-radius:2px;
  transition:transform .25s ease,opacity .25s ease;
}
.st-hamburger.is-active span:nth-child(1),
.st-menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.st-hamburger.is-active span:nth-child(2),
.st-menu-toggle.is-active span:nth-child(2){opacity:0;}
.st-hamburger.is-active span:nth-child(3),
.st-menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.st-mobile-menu{
  display:none;
  position:fixed;
  top:var(--st-header-h);
  left:0;right:0;
  background:var(--st-primary-dark);
  border-bottom:2px solid var(--st-secondary);
  list-style:none;
  margin:0;
  padding:0.5rem 1rem 1rem;
  max-height:calc(100vh - var(--st-header-h));
  overflow-y:auto;
  z-index:999;
}
.st-mobile-menu.is-open{display:block;}
.st-mobile-menu li{border-bottom:1px solid rgba(255,255,255,0.08);}
.st-mobile-menu li:last-child,.st-mobile-menu li:nth-last-child(2){border-bottom:none;}
.st-mobile-menu a{
  display:flex;
  align-items:center;
  min-height:48px;
  color:var(--st-accent);
  font-weight:600;
}
.st-mobile-menu li .st-btn{width:100%;margin:0.4rem 0;}

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

.st-hero{
  position:relative;
  background:var(--st-primary);
  padding:2.25rem 1.25rem;
  text-align:center;
  overflow:hidden;
}
.st-hero-panel{
  position:relative;
  z-index:1;
  background:var(--st-secondary);
  color:var(--st-primary-dark);
  border:3px solid var(--st-accent);
  border-radius:6px;
  max-width:680px;
  margin:0 auto 1.5rem;
  padding:1.75rem 1.25rem;
}
.st-hero-title{
  font-size:clamp(1.7rem,6vw,2.75rem);
  font-weight:800;
  color:var(--st-primary-dark);
  margin-bottom:0.4em;
}
.st-hero-subtitle{
  font-size:clamp(0.95rem,2.5vw,1.15rem);
  margin-bottom:1.1em;
}
.st-hero-media{
  max-width:900px;
  margin:0 auto;
}
.st-hero-slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:0.75rem;
  border-radius:16px;
  -webkit-overflow-scrolling:touch;
}
.st-hero-slide{
  flex:0 0 100%;
  scroll-snap-align:center;
  border-radius:16px;
  overflow:hidden;
}
.st-hero-slide img{
  width:100%;
  height:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:16px;
}

@media (min-width:960px){
  .st-hero{padding:3.5rem 2rem;}
}

.st-facts{position:relative;}
.st-facts::before{
  content:"";
  position:absolute;
  top:10%;left:10%;
  width:60%;height:60%;
  background:radial-gradient(circle,var(--st-secondary) 0%,transparent 70%);
  filter:blur(50px);
  opacity:0.28;
  z-index:0;
  pointer-events:none;
}
.st-facts-table{
  position:relative;
  z-index:1;
  width:100%;
  border-collapse:collapse;
  background:var(--st-accent);
  border-radius:var(--st-radius);
  overflow:hidden;
  border:1px solid var(--st-border);
  box-shadow:0 12px 30px rgba(31,59,77,0.1);
}
.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{
  position:relative;
  padding:1rem 1.25rem 1rem 1.5rem;
  border-bottom:1px solid var(--st-border);
  border-left:4px solid var(--st-secondary);
}
.st-facts-table tr:last-child{border-bottom:none;}
.st-facts-table tr:nth-child(even){background:rgba(31,59,77,0.03);}
.st-facts-table th{
  text-align:left;
  font-weight:700;
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--st-muted);
  margin-bottom:0.3rem;
  padding:0;
}
.st-facts-table td{
  font-size:1.15rem;
  font-weight:700;
  color:var(--st-primary);
  padding:0;
}

@media (min-width:960px){
  .st-facts-table,.st-facts-table tbody{display:table;}
  .st-facts-table tr{display:table-row;border-left:none;}
  .st-facts-table th,.st-facts-table td{display:table-cell;padding:1.15rem 1.5rem;vertical-align:middle;}
  .st-facts-table th{width:33%;border-left:4px solid var(--st-secondary);}
  .st-facts-table tr:hover{background:rgba(255,215,0,0.09);}
}

.st-bonus{background:var(--st-accent);}
.st-bonus-list{
  list-style:none;
  margin:1rem 0;
  padding:0;
  display:grid;
  gap:0.75rem;
}
.st-bonus-list li{
  background:var(--st-bg);
  border-left:4px solid var(--st-secondary);
  border-radius:10px;
  padding:0.9rem 1.1rem;
  font-weight:600;
}
@media (min-width:640px){
  .st-bonus-list{grid-template-columns:repeat(2,1fr);}
}

.st-security,.st-about,.st-responsible,.st-kyc{
  background:var(--st-primary);
  color:var(--st-accent);
  border-radius:0;
}
.st-security h2,.st-about h2,.st-responsible h2,.st-kyc h2{color:var(--st-accent);}
.st-security .st-body-text,.st-about .st-body-text,.st-responsible .st-body-text,.st-kyc .st-body-text{color:rgba(255,255,255,0.85);}

.st-registration{background:var(--st-bg);}
.st-reg-steps{
  list-style:none;
  counter-reset:step;
  margin:1rem 0;
  padding:0;
  display:grid;
  gap:0.9rem;
}
.st-reg-steps li{
  counter-increment:step;
  position:relative;
  background:var(--st-accent);
  border:1px solid var(--st-border);
  border-radius:10px;
  padding:0.9rem 1.1rem 0.9rem 3.2rem;
}
.st-reg-steps li::before{
  content:counter(step);
  position:absolute;
  left:0.9rem;top:50%;
  transform:translateY(-50%);
  width:1.7rem;height:1.7rem;
  border-radius:50%;
  background:var(--st-secondary);
  color:var(--st-primary-dark);
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.9rem;
}
@media (min-width:768px){
  .st-reg-steps{grid-template-columns:repeat(2,1fr);}
}

.st-games{background:var(--st-accent);}
.st-games-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0.75rem;
  margin:1.25rem 0;
}
@media (min-width:640px){
  .st-games-grid{grid-template-columns:repeat(3,1fr);gap:1rem;}
}
@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-bg);
  border:1px solid var(--st-border);
  border-radius:12px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease,box-shadow .2s ease;
}
.st-game-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(31,59,77,0.14);
}
.st-game-img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
}
.st-game-name{
  padding:0.55rem 0.6rem;
  font-size:0.85rem;
  font-weight:700;
  text-align:center;
  color:var(--st-primary);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.st-payments{background:var(--st-bg);}

.st-faq{background:var(--st-accent);}
.st-faq-item{
  background:var(--st-bg);
  border:1px solid var(--st-border);
  border-radius:10px;
  margin-bottom:0.75rem;
  padding:0;
  overflow:hidden;
}
.st-faq-q{
  cursor:pointer;
  list-style:none;
  padding:1rem 1.1rem;
  font-weight:700;
  font-family:var(--st-font-heading);
  color:var(--st-primary);
  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:"+";
  font-size:1.3rem;
  color:var(--st-secondary-dark);
  transition:transform .2s ease;
  margin-left:0.75rem;
}
details[open] .st-faq-q::after{transform:rotate(45deg);}
details[open] .st-faq-q{border-bottom:1px solid var(--st-border);background:rgba(255,215,0,0.08);}
.st-faq-a{
  padding:1rem 1.1rem 1.15rem;
  color:var(--st-text);
  max-width:65ch;
}

.st-footer{
  background:var(--st-primary-dark);
  color:rgba(255,255,255,0.85);
  display:grid;
  grid-template-columns:1fr;
  gap:1.75rem;
  padding:2rem 1.25rem 1.25rem;
}
@media (min-width:768px){
  .st-footer{
    grid-template-columns:repeat(2,1fr);
    padding:2.75rem 2rem 1.5rem;
  }
}
@media (min-width:1024px){
  .st-footer{grid-template-columns:1.4fr 1fr 1.2fr 1.4fr;}
}
.st-footer-col{min-width:0;}
.st-footer-brand .st-logo{filter:brightness(0) invert(1);margin-bottom:0.6rem;}
.st-footer-text{max-width:40ch;font-size:0.9rem;}
.st-footer-nav ul{list-style:none;margin:0;padding:0;display:grid;gap:0.5rem;}
.st-footer-nav a{color:rgba(255,255,255,0.85);font-weight:600;}
.st-footer-nav a:hover{color:var(--st-secondary);}
.st-footer-disclaimer{font-size:0.8rem;color:rgba(255,255,255,0.6);max-width:40ch;}

.st-payments-footer-heading{
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(255,255,255,0.65);
  margin-bottom:0.75rem;
}
.st-payments-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
  align-items:center;
}
.st-payment-logo{
  background:rgba(255,255,255,0.92);
  border-radius:8px;
  padding:0.4rem 0.65rem;
  max-height:32px;
  height:32px;
  width:auto;
  object-fit:contain;
  display:block;
}

.st-footer-bottom{
  grid-column:1/-1;
  text-align:center;
  font-size:0.8rem;
  color:rgba(255,255,255,0.5);
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:1rem;
}

.st-mobile-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  display:flex;
  gap:0.6rem;
  padding:0.6rem 0.75rem;
  padding-bottom:calc(0.6rem + env(safe-area-inset-bottom));
  background:var(--st-primary-dark);
  border-top:2px solid var(--st-secondary);
  z-index:1000;
  height:var(--st-mobile-cta-h);
  box-sizing:border-box;
}
.st-mobile-cta .st-btn{flex:1 1 0;}

@media (min-width:960px){
  .st-mobile-cta{display:none;}
  body{padding-bottom:0;}
}

.st-cookie-consent,.st-cookie-banner{
  position:fixed;
  left:0.75rem;right:0.75rem;
  bottom:calc(var(--st-mobile-cta-h) + 0.75rem + env(safe-area-inset-bottom));
  background:var(--st-primary);
  color:var(--st-accent);
  border:1px solid var(--st-secondary);
  border-radius:12px;
  padding:1rem 1.1rem;
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  align-items:center;
  justify-content:space-between;
  z-index:1100;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}
@media (min-width:960px){
  .st-cookie-consent,.st-cookie-banner{
    left:auto;right:1.5rem;bottom:1.5rem;max-width:420px;
  }
}

.st-back-to-top{
  position:fixed;
  right:1rem;
  bottom:calc(var(--st-mobile-cta-h) + 5.5rem + env(safe-area-inset-bottom));
  width:48px;height:48px;
  border-radius:50%;
  background:var(--st-secondary);
  color:var(--st-primary-dark);
  border:none;
  font-size:1.2rem;
  font-weight:700;
  cursor:pointer;
  z-index:1050;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 18px rgba(0,0,0,0.25);
  transition:transform .2s ease,opacity .2s ease;
}
.st-back-to-top:hover{transform:translateY(-3px);}
@media (min-width:960px){
  .st-back-to-top{bottom:2rem;}
}

.is-hidden{display:none !important;}
[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}}

.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}
.st-games-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}
@media(min-width:768px){.st-games-grid{grid-template-columns:repeat(2,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}}}

.st-promo{position:relative;overflow:hidden;border-radius:16px;margin:0 0 1.25rem}
.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:#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: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}
