/* deploy-css-eacb8f504120 */

:root{
--st-primary:#2E8B57;
--st-primary-dark:#1f6b42;
--st-primary-light:#3fa86c;
--st-secondary:#FFD700;
--st-accent:#FF4500;
--st-bg:#faf9f4;
--st-surface:#ffffff;
--st-text:#161f1a;
--st-muted:#5c6b62;
--st-border:rgba(46,139,87,0.18);
--st-header-h:64px;
--st-mobilecta-h:64px;
--st-font-head:'Bricolage Grotesque',serif;
--st-font-body:'Inter',sans-serif;
--st-radius:14px;
--st-shadow:0 10px 30px -12px rgba(22,31,26,0.25);
}



*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
margin:0;
font-family:var(--st-font-body);
background:var(--st-bg);
color:var(--st-text);
line-height:1.6;
padding-top:var(--st-header-h);
padding-bottom:calc(var(--st-mobilecta-h) + env(safe-area-inset-bottom));
overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{margin:0;padding:0}
h1,h2,h3{font-family:var(--st-font-head);color:var(--st-text);margin:0.2em 0 0.5em;line-height:1.15}
p{margin:0 0 0.75em;max-width:70ch}
.st-section-heading{
font-size:clamp(1.5rem,4vw,2.25rem);
font-weight:800;
position:relative;
padding-bottom:0.4em;
margin-top:0.2em;
margin-bottom:0.8em;
}
.st-section-heading::after{
content:"";
display:block;
width:56px;
height:5px;
margin-top:0.35em;
border-radius:4px;
background:linear-gradient(90deg,var(--st-primary),var(--st-secondary),var(--st-accent));
}
.st-section-intro,.st-section-text{color:var(--st-muted);max-width:70ch}

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

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

.st-header{
position:fixed;
top:0;left:0;right:0;
z-index:1000;
height:var(--st-header-h);
background:linear-gradient(135deg,var(--st-primary) 0%,var(--st-primary-dark) 100%);
box-shadow:0 4px 18px -6px rgba(0,0,0,0.35);
transition:height 0.25s ease,box-shadow 0.25s ease;
}
.st-header.is-scrolled{
box-shadow:0 6px 24px -6px rgba(0,0,0,0.5);
}
.st-header-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:0.75rem;
height:100%;
padding:0 1rem;
max-width:1400px;
margin:0 auto;
}
.st-brand{display:flex;align-items:center;height:100%}
.st-logo{height:32px;width:auto;object-fit:contain}
.st-nav{display:none}
.st-nav-list{display:flex;align-items:center;gap:1.5rem}
.st-nav-list a{
color:#fff;
font-weight:600;
font-size:0.95rem;
padding:0.5rem 0.2rem;
position:relative;
opacity:0.92;
}
.st-nav-list a:hover{opacity:1}
.st-nav-list a.st-nav-link.is-current{opacity:1}
.st-nav-list a.st-nav-link.is-current::after{
content:"";
position:absolute;
left:0;right:0;bottom:0;
height:2px;
background:var(--st-secondary);
border-radius:2px;
}
.st-auth-cluster{display:none;align-items:center;gap:0.6rem}

.st-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:0.4rem;
min-height:44px;
padding:0.6rem 1.2rem;
border-radius:999px;
font-weight:700;
font-size:0.9rem;
border:2px solid transparent;
cursor:pointer;
white-space:nowrap;
transition:transform 0.15s ease,background 0.15s ease,color 0.15s ease,box-shadow 0.15s ease;
}
.st-btn-primary{
background:var(--st-accent);
color:#fff;
box-shadow:0 6px 16px -6px rgba(255,69,0,0.6);
}
.st-btn-primary:hover{background:#e33e00;transform:translateY(-1px)}
.st-btn-ghost{
background:transparent;
color:#fff;
border-color:rgba(255,255,255,0.6);
}
.st-btn-ghost:hover{background:rgba(255,255,255,0.15);border-color:#fff}
.st-btn-large{padding:0.85rem 1.8rem;font-size:1.05rem}

.st-hamburger{
display:flex;
flex-direction:column;
justify-content:center;
gap:5px;
width:44px;
height:44px;
padding:10px;
background:transparent;
border:none;
cursor:pointer;
}
.st-hamburger span{
display:block;
width:100%;
height:3px;
border-radius:2px;
background:#fff;
transition:transform 0.25s ease,opacity 0.25s ease;
}
.st-hamburger.st-menu-toggle.is-active span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.st-hamburger.st-menu-toggle.is-active span:nth-child(2){opacity:0}
.st-hamburger.st-menu-toggle.is-active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

.st-mobile-menu{
display:none;
list-style:none;
background:var(--st-primary-dark);
padding:0.5rem 1rem 1.25rem;
box-shadow:0 12px 24px -10px rgba(0,0,0,0.4);
}
.st-mobile-menu.is-open{display:block}
.st-mobile-menu li{border-top:1px solid rgba(255,255,255,0.12)}
.st-mobile-menu a{
display:flex;
align-items:center;
min-height:48px;
color:#fff;
font-weight:600;
}
.st-mobile-menu-auth{
display:flex;
gap:0.6rem;
padding:0.9rem 0;
border-top:1px solid rgba(255,255,255,0.12);
}
.st-mobile-menu-auth .st-btn{flex:1}

.is-hidden{display:none!important}

.st-hero{
position:relative;
max-width:none;
background:linear-gradient(160deg,var(--st-primary) 0%,var(--st-primary-dark) 100%);
color:#fff;
padding:2.5rem 1.25rem 3rem;
display:flex;
flex-direction:column;
gap:1.5rem;
overflow:hidden;
}
.st-hero::before{
content:"";
position:absolute;
top:-30%;
right:-20%;
width:60%;
height:160%;
background:radial-gradient(circle,rgba(255,215,0,0.25),transparent 65%);
pointer-events:none;
}
.st-hero-rule{
display:none;
}
.st-hero-content{position:relative;z-index:2;max-width:900px}
.st-hero-kicker{
font-family:var(--st-font-head);
letter-spacing:0.18em;
font-size:0.75rem;
color:var(--st-secondary);
font-weight:700;
margin-bottom:0.6em;
}
.st-hero-title{
font-size:clamp(2.1rem,8vw,4.2rem);
font-weight:800;
letter-spacing:-0.01em;
margin-bottom:0.5em;
}
.st-hero-subtitle{
font-size:clamp(1rem,2.5vw,1.25rem);
color:rgba(255,255,255,0.88);
max-width:60ch;
margin-bottom:1em;
}
.st-hero-media{position:relative;z-index:2}
.st-hero-slider{
display:flex;
gap:0.75rem;
overflow-x:auto;
scroll-snap-type:x mandatory;
padding-bottom:0.5rem;
-webkit-overflow-scrolling:touch;
}
.st-hero-slide{
flex:0 0 100%;
scroll-snap-align:start;
border-radius:var(--st-radius);
overflow:hidden;
aspect-ratio:16/9;
}
.st-hero-slide img{width:100%;height:100%;object-fit:cover;border-radius:var(--st-radius)}

.st-facts{padding:1.75rem 1.25rem}
.st-facts-table{
width:100%;
border-collapse:collapse;
display:block;
background:var(--st-surface);
border-radius:var(--st-radius);
border:1px solid var(--st-border);
box-shadow:var(--st-shadow);
overflow:hidden;
position:relative;
}
.st-facts-table::before{
content:"";
position:absolute;
top:0;left:0;
width:5px;
height:100%;
background:linear-gradient(180deg,var(--st-primary),var(--st-secondary),var(--st-accent));
}
.st-facts-table tbody{display:block}
.st-facts-table tr{
display:grid;
grid-template-columns:1fr;
padding:1rem 1.1rem 1rem 1.4rem;
border-bottom:1px solid var(--st-border);
gap:0.25rem;
}
.st-facts-table tr:last-child{border-bottom:none}
.st-facts-table tr:nth-child(even){background:rgba(46,139,87,0.04)}
.st-facts-table th{
text-align:left;
font-family:var(--st-font-body);
font-size:0.72rem;
letter-spacing:0.08em;
text-transform:uppercase;
color:var(--st-muted);
font-weight:700;
}
.st-facts-table td{
font-size:1.1rem;
font-weight:700;
color:var(--st-text);
}

.st-games{padding:1.75rem 1.25rem}
.st-games-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:0.9rem;
margin:1.25rem 0 1.5rem;
}
.st-game-card{
background:var(--st-surface);
border-radius:var(--st-radius);
border:1px solid var(--st-border);
overflow:hidden;
box-shadow:0 6px 16px -10px rgba(0,0,0,0.25);
transition:transform 0.2s ease,box-shadow 0.2s ease;
display:flex;
flex-direction:column;
}
.st-game-card:hover{transform:translateY(-3px);box-shadow:0 12px 22px -10px rgba(0,0,0,0.3)}
.st-game-img{
width:100%;
aspect-ratio:3/4;
object-fit:cover;
display:block;
}
.st-game-name{
padding:0.6rem 0.7rem;
font-size:0.88rem;
font-weight:600;
line-height:1.3;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}

.st-registration{padding:1.75rem 1.25rem}
.st-reg-steps{
list-style:none;
display:grid;
gap:0.8rem;
margin:1.25rem 0 1.5rem;
counter-reset:step;
}
.st-reg-steps > *{
position:relative;
background:var(--st-surface);
border:1px solid var(--st-border);
border-radius:12px;
padding:1rem 1rem 1rem 3.2rem;
counter-increment:step;
}
.st-reg-steps > *::before{
content:counter(step);
position:absolute;
left:0.9rem;
top:1rem;
width:1.7rem;
height:1.7rem;
border-radius:50%;
background:var(--st-primary);
color:#fff;
font-weight:700;
font-size:0.85rem;
display:flex;
align-items:center;
justify-content:center;
}

.st-responsible,.st-mobile-app,.st-security,.st-about{padding:1.5rem 1.25rem}

.st-bonus{padding:1.75rem 1.25rem}
.st-bonus-list{
list-style:none;
display:grid;
gap:0.75rem;
margin:1.25rem 0 1.5rem;
}
.st-bonus-list > *{
background:linear-gradient(135deg,rgba(46,139,87,0.08),rgba(255,215,0,0.08));
border-left:4px solid var(--st-secondary);
border-radius:10px;
padding:0.85rem 1rem;
font-weight:500;
}

.st-payments{padding:1.5rem 1.25rem}
.st-payments-row{
display:flex;
flex-wrap:wrap;
gap:0.7rem;
justify-content:center;
margin-top:1rem;
}
.st-payment-logo{
height:30px;
max-height:32px;
width:auto;
object-fit:contain;
background:#fff;
padding:0.5rem 0.9rem;
border-radius:10px;
border:1px solid var(--st-border);
box-shadow:0 2px 8px -4px rgba(0,0,0,0.15);
}

.st-faq{padding:1.75rem 1.25rem}
.st-faq-list{display:grid;gap:0.75rem;margin-top:1.25rem}
.st-faq-item{
background:var(--st-surface);
border:1px solid var(--st-border);
border-radius:12px;
padding:0.2rem 1rem;
overflow:hidden;
}
.st-faq-q{
list-style:none;
cursor:pointer;
display:flex;
align-items:center;
justify-content:space-between;
gap:1rem;
padding:1rem 0;
font-weight:700;
font-family:var(--st-font-head);
min-height:44px;
}
.st-faq-q::-webkit-details-marker{display:none}
.st-faq-q::after{
content:"+";
flex:0 0 auto;
font-size:1.3rem;
color:var(--st-accent);
transition:transform 0.2s ease;
}
details[open] .st-faq-q::after{transform:rotate(45deg)}
.st-faq-a{
padding:0 0 1.1rem;
color:var(--st-muted);
}

.st-footer{
background:var(--st-primary-dark);
color:rgba(255,255,255,0.85);
padding:2rem 1.25rem 1rem;
}
.st-footer-columns{
display:grid;
grid-template-columns:1fr;
gap:1.5rem;
max-width:1200px;
margin:0 auto;
padding-bottom:1.5rem;
border-bottom:1px solid rgba(255,255,255,0.15);
}
.st-footer-logo{height:34px;margin-bottom:0.75rem;filter:brightness(0) invert(1)}
.st-footer-text{font-size:0.9rem;color:rgba(255,255,255,0.75)}
.st-footer-col h3{
color:#fff;
font-size:1rem;
margin-bottom:0.6rem;
}
.st-footer-nav ul{list-style:none;display:grid;gap:0.5rem}
.st-footer-nav a{
color:rgba(255,255,255,0.78);
font-size:0.9rem;
min-height:44px;
display:flex;
align-items:center;
}
.st-footer-disclaimer{font-size:0.82rem;color:rgba(255,255,255,0.65)}

.st-footer-payments{max-width:1200px;margin:1.5rem auto 0}
.st-payments-footer-heading{
font-size:0.85rem;
letter-spacing:0.06em;
text-transform:uppercase;
color:rgba(255,255,255,0.7);
margin-bottom:0.75rem;
}
.st-footer-payments .st-payments-row{justify-content:flex-start}
.st-footer-payments .st-payment-logo{background:rgba(255,255,255,0.95)}

.st-footer-bottom{
max-width:1200px;
margin:1.5rem auto 0;
padding-top:1rem;
border-top:1px solid rgba(255,255,255,0.15);
font-size:0.8rem;
color:rgba(255,255,255,0.6);
}

.st-mobile-cta{
position:fixed;
left:0;right:0;bottom:0;
z-index:1200;
display:flex;
gap:0.5rem;
padding:0.6rem 0.75rem;
padding-bottom:calc(0.6rem + env(safe-area-inset-bottom));
background:var(--st-primary-dark);
box-shadow:0 -6px 20px -8px rgba(0,0,0,0.4);
}
.st-mobile-cta .st-btn{flex:1}

.st-cookie-banner{
position:fixed;
left:0.75rem;right:0.75rem;
bottom:calc(var(--st-mobilecta-h) + env(safe-area-inset-bottom) + 0.75rem);
z-index:1150;
background:var(--st-surface);
color:var(--st-text);
border:1px solid var(--st-border);
border-radius:14px;
padding:1rem;
box-shadow:var(--st-shadow);
display:flex;
flex-direction:column;
gap:0.75rem;
}
.st-cookie-banner p{margin:0;font-size:0.85rem;max-width:none}
.st-cookie-banner-actions{display:flex;gap:0.6rem}
.st-cookie-banner-actions .st-btn{flex:1;min-height:44px}

.st-back-to-top{
position:fixed;
right:0.9rem;
bottom:calc(var(--st-mobilecta-h) + env(safe-area-inset-bottom) + 5.5rem);
z-index:1100;
width:46px;
height:46px;
border-radius:50%;
border:none;
background:var(--st-accent);
color:#fff;
font-size:1.2rem;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 18px -6px rgba(255,69,0,0.55);
cursor:pointer;
transition:transform 0.2s ease,opacity 0.2s ease;
}
.st-back-to-top:hover{transform:translateY(-2px)}

@media (min-width:600px){
.st-games-grid{grid-template-columns:repeat(3,1fr)}
.st-hero-title{font-size:clamp(2.6rem,7vw,4.5rem)}
.st-footer-columns{grid-template-columns:1.4fr 1fr 1fr}
}

@media (min-width:768px){
:root{--st-mobilecta-h:0px}
body{padding-bottom:0}
.st-mobile-cta{display:none}
.st-back-to-top{bottom:1.5rem}
.st-cookie-banner{bottom:1.5rem;left:auto;max-width:420px}
.st-hamburger{display:none}
.st-mobile-menu{display:none!important}
.st-nav{display:block}
.st-auth-cluster{display:flex}
:root{--st-header-h:76px}
.st-header-inner{gap:1.5rem}
.st-facts-table tr{
grid-template-columns:minmax(180px,33%) 1fr;
align-items:center;
padding:1.1rem 1.5rem;
}
.st-facts-table th{padding-right:1rem}
.st-facts-table tr:hover{background:rgba(46,139,87,0.07)}
.st-hero{
flex-direction:row;
align-items:center;
padding:4rem 3rem;
gap:3rem;
}
.st-hero-rule{
display:block;
width:2px;
background:rgba(255,255,255,0.35);
align-self:stretch;
}
.st-hero-content{flex:1}
.st-hero-media{flex:1}
main > section{padding:2.5rem 2rem}
.st-facts,.st-games,.st-registration,.st-bonus,.st-faq,.st-payments{padding:2.5rem 2rem}
}

@media (min-width:900px){
.st-games-grid{grid-template-columns:repeat(4,1fr)}
.st-reg-steps{grid-template-columns:repeat(2,1fr)}
.st-bonus-list{grid-template-columns:repeat(2,1fr)}
.st-faq-list{grid-template-columns:repeat(2,1fr)}
}

@media (min-width:1200px){
.st-games-grid{grid-template-columns:repeat(5,1fr)}
main > section{padding:3rem 2rem}
}
[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}
: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;padding:1.5rem 1.25rem 0}

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