/* Site bundle - system fonts, no external deps */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body.stk-page{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,sans-serif;
  font-size:15px;line-height:1.5;color:#1a1f2e;background:#f0f2f7;
  min-height:100vh;padding-bottom:env(safe-area-inset-bottom,0);
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:none;background:none}
ul{list-style:none}

:root{
  --stk-blue:#3d5afe;
  --stk-blue-dark:#2f46c8;
  --stk-green:#5ccd3c;
  --stk-green-dark:#4ab82e;
  --stk-ink:#12151c;
  --stk-ink-soft:#1e2433;
  --stk-muted:#6b7289;
  --stk-line:#e2e6ef;
  --stk-surface:#fff;
  --stk-radius:14px;
  --stk-radius-sm:10px;
  --stk-shadow:0 4px 24px rgba(18,21,28,.08);
  --stk-top-h:60px;
  --stk-nav-h:48px;
  --stk-dock-h:64px;
}

/* -- Top bar -- */
.stk-shell{position:sticky;top:0;z-index:200;background:var(--stk-surface);box-shadow:0 1px 0 var(--stk-line)}
.stk-topbar{display:flex;align-items:center;justify-content:space-between;gap:12px;max-width:1280px;margin:0 auto;padding:10px 16px;min-height:var(--stk-top-h)}
.stk-brand{flex:0 0 auto}
.stk-brand a{display:flex;align-items:center}
.stk-brand img{height:36px;width:auto;object-fit:contain}
.stk-brand-text{font-size:1.35rem;font-weight:800;letter-spacing:-.02em}
.stk-brand-text .stk-brand-a{color:var(--stk-blue)}
.stk-topbar__actions{display:flex;align-items:center;gap:8px;margin-left:auto}
.stk-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 18px;border-radius:999px;font-weight:600;font-size:14px;
  white-space:nowrap;transition:transform .15s,opacity .15s;
}
.stk-btn:active{transform:scale(.97)}
.stk-btn--login{background:var(--stk-blue);color:#fff}
.stk-btn--login:hover{background:var(--stk-blue-dark)}
.stk-btn--signup{background:var(--stk-green);color:#fff}
.stk-btn--signup:hover{background:var(--stk-green-dark)}

@keyframes stk-pulse-login{
  0%,100%{box-shadow:0 2px 8px rgba(61,90,254,.35)}
  50%{box-shadow:0 4px 18px rgba(61,90,254,.55),0 0 0 5px rgba(61,90,254,.22)}
}
@keyframes stk-pulse-signup{
  0%,100%{box-shadow:0 2px 8px rgba(92,205,60,.35)}
  50%{box-shadow:0 4px 18px rgba(92,205,60,.55),0 0 0 5px rgba(92,205,60,.22)}
}
.stk-btn--outline{border:1.5px solid var(--stk-blue);color:var(--stk-blue);background:transparent}
.stk-btn--ghost{background:#eef1f8;color:var(--stk-ink);padding:8px 14px}
.stk-nav-toggle{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;border-radius:12px;background:#f0f2f7;flex-shrink:0;
}
.stk-nav-toggle span{display:block;width:20px;height:2px;background:var(--stk-ink);border-radius:2px;transition:transform .2s,opacity .2s}
.stk-nav-toggle[aria-expanded=true] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.stk-nav-toggle[aria-expanded=true] span:nth-child(2){opacity:0}
.stk-nav-toggle[aria-expanded=true] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* -- Horizontal nav under header -- */
.stk-primary-nav{
  background:var(--stk-surface);border-top:1px solid var(--stk-line);
  overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.stk-primary-nav::-webkit-scrollbar{display:none}
.stk-primary-nav__list{
  display:flex;align-items:stretch;gap:4px;max-width:1280px;margin:0 auto;padding:0 12px;min-height:var(--stk-nav-h);
}
.stk-primary-nav__link{
  display:inline-flex;align-items:center;gap:8px;padding:0 14px;
  font-size:14px;font-weight:500;color:var(--stk-ink);white-space:nowrap;
  border-bottom:3px solid transparent;transition:color .15s,border-color .15s;
}
.stk-primary-nav__link:hover{color:var(--stk-blue)}
.stk-primary-nav__link.is-active{color:var(--stk-blue);border-bottom-color:var(--stk-blue);font-weight:600}
.stk-nav-glyph{width:20px;height:20px;flex-shrink:0;fill:currentColor}

/* -- Mobile drawer -- */
.stk-backdrop{
  position:fixed;inset:0;background:rgba(10,14,24,.55);z-index:280;
  opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s;
}
.stk-backdrop.is-visible{opacity:1;visibility:visible}
.stk-drawer{
  position:fixed;top:0;right:0;width:min(320px,88vw);height:100%;
  background:linear-gradient(165deg,#4a6cf7 0%,#2f46c8 55%,#2438a8 100%);
  z-index:300;transform:translateX(100%);transition:transform .28s ease;
  display:flex;flex-direction:column;overflow-y:auto;padding:20px 16px 24px;
  color:#fff;
}
.stk-drawer.is-open{transform:translateX(0)}
.stk-drawer__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.stk-drawer__brand img{height:32px;filter:brightness(0) invert(1)}
.stk-drawer__close{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.15);color:#fff;font-size:22px;line-height:1}
.stk-drawer__cta{display:flex;flex-direction:column;gap:10px;margin-bottom:20px}
.stk-drawer__cta .stk-btn{width:100%;justify-content:center}
.stk-drawer__cta .stk-btn--login{background:#fff;color:var(--stk-blue-dark)}
.stk-drawer__menu{flex:1}
.stk-drawer__menu a{
  display:flex;align-items:center;gap:12px;padding:12px 10px;border-radius:12px;
  font-weight:500;font-size:15px;transition:background .15s;
}
.stk-drawer__menu a:hover,.stk-drawer__menu a.is-active{background:rgba(255,255,255,.12)}
.stk-drawer__menu .stk-nav-glyph{fill:#fff;opacity:.95}

/* -- Main -- */
.stk-main{max-width:1280px;margin:0 auto;padding:16px 16px 32px}

/* Breadcrumbs */
.stk-crumb{display:flex;flex-wrap:wrap;align-items:center;gap:6px;margin-bottom:16px;font-size:13px;color:var(--stk-muted)}
.stk-crumb a{color:var(--stk-blue)}
.stk-crumb__sep{opacity:.5}

/* Hero / promo */
.stk-hero{margin-bottom:24px}
.stk-hero__track{display:flex;flex-direction:column;gap:16px}
.stk-hero-card{
  background:var(--stk-surface);border-radius:var(--stk-radius);overflow:hidden;
  box-shadow:var(--stk-shadow);display:grid;grid-template-columns:1fr;
}
.stk-hero-card__visual{position:relative;background:linear-gradient(135deg,#ffe8d6,#ffd0a8);min-height:180px}
.stk-hero-card__visual img{width:100%;height:100%;object-fit:cover;min-height:180px}
.stk-hero-card__body{padding:16px 18px 18px;display:flex;align-items:flex-start;gap:12px}
.stk-hero-card__text{flex:1;min-width:0}
.stk-hero-card__title{font-size:17px;font-weight:700;color:var(--stk-ink);margin-bottom:6px;line-height:1.3}
.stk-hero-card__desc{font-size:13px;color:var(--stk-muted);line-height:1.45}
.stk-hero-card__cta{
  flex-shrink:0;width:48px;height:48px;border-radius:50%;background:var(--stk-blue);color:#fff;
  display:flex;align-items:center;justify-content:center;align-self:center;
  box-shadow:0 4px 14px rgba(61,90,254,.35);
}
.stk-hero-card__cta svg{width:18px;height:18px;fill:#fff;margin-left:2px}
.stk-hero-card__action{margin-top:12px}
.stk-hero-card__action .stk-btn{padding:10px 20px;font-size:13px}

@media(min-width:769px){
  .stk-hero-card{grid-template-columns:1.1fr 1fr}
  .stk-hero-card__visual{min-height:220px}
  .stk-hero-card__body{padding:24px 28px;align-items:center}
  .stk-hero-card__title{font-size:22px}
}

/* Game shelves */
.stk-shelf{margin-bottom:28px}
.stk-shelf__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;gap:12px}
.stk-shelf__title{font-size:18px;font-weight:700;color:var(--stk-ink)}
.stk-shelf__more{
  font-size:13px;font-weight:600;color:var(--stk-blue);
  padding:6px 14px;border-radius:999px;border:1.5px solid var(--stk-blue);
  white-space:nowrap;
}
.stk-shelf__more:hover{background:rgba(61,90,254,.06)}
.stk-shelf__scroll{
  display:flex;gap:12px;overflow-x:auto;padding-bottom:4px;
  -webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;scrollbar-width:none;
}
.stk-shelf__scroll::-webkit-scrollbar{display:none}
.stk-game{
  flex:0 0 140px;scroll-snap-align:start;
  background:var(--stk-surface);border-radius:var(--stk-radius-sm);overflow:hidden;
  box-shadow:0 2px 12px rgba(18,21,28,.06);
}
@media(min-width:769px){.stk-game{flex:0 0 160px}}
.stk-game__thumb{position:relative;aspect-ratio:9/16;overflow:hidden;background:#e8ebf2}
.stk-game__thumb img{width:100%;height:100%;object-fit:cover;object-position:center}
.stk-game__badge{
  position:absolute;top:8px;right:8px;padding:3px 8px;border-radius:6px;
  font-size:10px;font-weight:700;text-transform:uppercase;color:#fff;
}
.stk-game__badge--top{background:var(--stk-blue)}
.stk-game__badge--new{background:var(--stk-green)}
.stk-game__overlay{
  position:absolute;inset:0;background:rgba(18,21,28,.45);
  display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .2s;
}
.stk-game:hover .stk-game__overlay{opacity:1}
.stk-game__play{
  padding:8px 16px;border-radius:999px;background:var(--stk-green);color:#fff;
  font-size:12px;font-weight:700;
}
.stk-game__label{padding:8px 10px;font-size:12px;font-weight:600;color:var(--stk-ink);text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

/* Bonuses */
.stk-bonus-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px;margin-bottom:28px}
.stk-bonus{
  background:var(--stk-surface);border-radius:var(--stk-radius);overflow:hidden;box-shadow:var(--stk-shadow);
}
.stk-bonus__img img{width:100%;aspect-ratio:16/10;object-fit:cover}
.stk-bonus__body{padding:16px}
.stk-bonus__name{font-size:17px;font-weight:700;margin-bottom:8px}
.stk-bonus__desc{font-size:14px;color:var(--stk-muted);margin-bottom:10px}
.stk-bonus__val{font-weight:700;color:var(--stk-blue)}
.stk-bonus__tag{display:inline-block;margin-top:8px;padding:4px 10px;background:#eef1f8;border-radius:6px;font-size:12px}
.stk-bonus__terms{margin-top:10px;padding-top:10px;border-top:1px solid var(--stk-line);font-size:12px;color:var(--stk-muted)}

/* SEO text block - only place with semantic headings */
.stk-article{
  background:var(--stk-surface);border-radius:var(--stk-radius);padding:20px 18px;
  margin-top:28px;box-shadow:var(--stk-shadow);max-width:100%;
}
.stk-article h1{font-size:26px;font-weight:800;margin-bottom:16px;line-height:1.25;color:var(--stk-ink)}
.stk-article h2{font-size:21px;font-weight:700;margin:28px 0 12px;color:var(--stk-ink)}
.stk-article h3{font-size:17px;font-weight:700;margin:22px 0 10px;color:var(--stk-ink-soft)}
.stk-article p{margin-bottom:14px;color:#2d3348}
.stk-article a{color:var(--stk-blue);text-decoration:underline}
.stk-article img{margin:16px 0;border-radius:var(--stk-radius-sm)}
.stk-article ul,.stk-article ol{margin:14px 0;padding-left:22px}
.stk-article li{margin-bottom:6px}
.stk-article blockquote{margin:16px 0;padding:14px 16px;border-left:4px solid var(--stk-blue);background:#f4f6fc;border-radius:0 var(--stk-radius-sm) var(--stk-radius-sm) 0}

/* Tables - horizontal scroll on mobile */
.table-wrapper,.stk-table-scroll{
  width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;
}
.table-wrapper table,.stk-table-scroll table{width:100%;min-width:520px;border-collapse:collapse;font-size:14px}
.table-wrapper th,.table-wrapper td,.stk-table-scroll th,.stk-table-scroll td{
  padding:10px 12px;border:1px solid var(--stk-line);text-align:left;
}
.table-wrapper th,.stk-table-scroll th{background:#f4f6fc;font-weight:600}

/* FAQ / HowTo */
.stk-faq{margin:16px 0}
.stk-faq__item{border:1px solid var(--stk-line);border-radius:var(--stk-radius-sm);margin-bottom:8px;overflow:hidden}
.stk-faq__q{padding:14px 16px;background:#f8f9fc;font-weight:600;font-size:15px}
.stk-faq__a{padding:14px 16px;font-size:14px;color:#2d3348}
.stk-howto{margin:16px 0;padding:16px;background:#f8f9fc;border-radius:var(--stk-radius-sm)}
.stk-howto ol{counter-reset:step;padding-left:0;list-style:none}
.stk-howto li{counter-increment:step;padding:12px 12px 12px 40px;position:relative;margin-bottom:8px;background:var(--stk-surface);border-radius:8px}
.stk-howto li::before{
  content:counter(step);position:absolute;left:12px;top:12px;
  width:22px;height:22px;background:var(--stk-blue);color:#fff;border-radius:50%;
  font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center;
}
.stk-howto li strong{display:block;margin-bottom:4px}

/* Payments block in main */
.stk-payments{margin:32px 0}
.stk-payments__title{font-size:18px;font-weight:700;text-align:center;margin-bottom:16px}
.stk-payments__grid{
  display:flex;flex-wrap:wrap;justify-content:center;gap:10px;
}
.stk-payments__item{
  background:var(--stk-surface);border-radius:var(--stk-radius-sm);padding:12px 16px;
  min-width:100px;text-align:center;box-shadow:0 2px 8px rgba(18,21,28,.05);
}
.stk-payments__item img{height:28px;width:auto;margin:0 auto 6px;object-fit:contain}
.stk-payments__item span{font-size:11px;font-weight:600;color:var(--stk-muted)}

/* App table */
.app-info-table-wrapper{margin:20px 0}
.app-info-table{min-width:400px}
.app-info-row{border-bottom:1px solid var(--stk-line)}
.app-info-label-cell,.app-info-value-cell{padding:12px}
.app-info-icon{width:22px;height:22px;color:var(--stk-blue)}
.app-download-link{display:inline-block;padding:10px 18px;background:var(--stk-green);color:#fff;border-radius:999px;font-weight:600}
.app-name-with-logo{display:flex;align-items:center;gap:10px}
.app-name-logo{width:40px;height:40px;object-fit:contain}

/* Footer */
.stk-footer{
  background:var(--stk-ink);color:#c5cad8;margin-top:40px;padding:36px 16px 24px;
}
.stk-footer__inner{max-width:1280px;margin:0 auto}
.stk-footer__grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:28px 24px;
  margin-bottom:28px;
}
.stk-footer__heading{font-size:14px;font-weight:700;color:#fff;margin-bottom:12px;text-transform:uppercase;letter-spacing:.04em}
.stk-footer__links li{margin-bottom:8px}
.stk-footer__links a{font-size:14px;color:#9aa3b8;transition:color .15s}
.stk-footer__links a:hover,.stk-footer__links a.is-active{color:#fff}
.stk-footer__social{display:flex;flex-wrap:wrap;align-items:center;gap:12px}
.stk-footer__social li{margin-bottom:0}
.stk-footer__social a{display:flex;align-items:center;line-height:0}
.stk-footer__social img{max-height:26px;width:auto;opacity:.9}
.stk-footer__social a:hover img{opacity:1}
.stk-footer__payments{border-top:1px solid #2a3142;padding-top:24px;margin-bottom:24px}
.stk-footer__payments-title{text-align:center;font-size:15px;font-weight:600;color:#fff;margin-bottom:14px}
.stk-footer__pay-row{display:flex;flex-wrap:wrap;justify-content:center;gap:8px}
.stk-footer__pay-chip{
  background:#fff;border-radius:8px;padding:8px 12px;display:flex;align-items:center;justify-content:center;
}
.stk-footer__pay-chip img{height:22px;width:auto;object-fit:contain}
.stk-footer__bottom{text-align:center;padding-top:20px;border-top:1px solid #2a3142;font-size:12px;color:#7a849c}
.stk-footer__safe{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-bottom:16px}
.stk-footer__safe img{max-height:36px;width:auto;opacity:.85}
.stk-footer__cta-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.stk-footer__cta-row .stk-btn{font-size:13px;padding:8px 14px}

/* Mobile dock */
.stk-dock{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:190;
  background:var(--stk-surface);border-top:1px solid var(--stk-line);
  padding:8px 12px calc(8px + env(safe-area-inset-bottom,0));
  box-shadow:0 -4px 20px rgba(18,21,28,.08);
}
.stk-dock__inner{display:flex;align-items:center;gap:8px;max-width:1280px;margin:0 auto}
.stk-dock .stk-btn{flex:1;padding:11px 8px;font-size:13px}

/* Info pages - privacy, terms, contact */
.stk-info{margin-bottom:36px}
.stk-info-hero{
  position:relative;overflow:hidden;border-radius:var(--stk-radius);
  background:var(--stk-surface);box-shadow:var(--stk-shadow);margin-bottom:20px;
}
.stk-info-hero::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--stk-blue),#6b7fff 50%,var(--stk-green));
}
.stk-info-hero__glow{
  position:absolute;border-radius:50%;filter:blur(60px);opacity:.28;pointer-events:none;
}
.stk-info-hero__glow--a{width:200px;height:200px;background:var(--stk-blue);top:-40px;left:-30px}
.stk-info-hero__glow--b{width:160px;height:160px;background:var(--stk-green);bottom:-30px;right:-20px}
.stk-info-hero__inner{
  position:relative;z-index:1;display:flex;align-items:center;gap:20px;
  padding:28px 22px;
}
.stk-info-hero__visual{flex:0 0 88px;width:88px;height:88px}
.stk-info-hero__icon{width:100%;height:100%;display:block}
.stk-info-hero__text{flex:1;min-width:0}
.stk-info-hero__badge{
  display:inline-block;margin-bottom:8px;padding:4px 10px;border-radius:999px;
  font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;
  background:rgba(61,90,254,.1);color:var(--stk-blue);
}
.stk-info-hero__title{
  font-size:clamp(1.35rem,4vw,1.75rem);font-weight:800;line-height:1.25;
  color:var(--stk-ink);margin:0 0 8px;
}
.stk-info-hero__lead{font-size:15px;line-height:1.55;color:var(--stk-muted);margin:0}
.stk-contact-cards{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;margin-bottom:20px;
}
.stk-contact-card{
  display:flex;flex-direction:column;align-items:flex-start;gap:8px;
  padding:20px 18px;border-radius:var(--stk-radius);background:var(--stk-surface);
  border:1px solid var(--stk-line);box-shadow:var(--stk-shadow);
  transition:transform .15s,box-shadow .15s,border-color .15s;
}
a.stk-contact-card:hover{
  transform:translateY(-3px);box-shadow:0 10px 32px rgba(18,21,28,.1);
  border-color:rgba(61,90,254,.35);
}
.stk-contact-card__icon{
  width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(61,90,254,.12),rgba(92,205,60,.12));
}
.stk-contact-card__icon svg{width:22px;height:22px;fill:var(--stk-blue)}
.stk-contact-card--chat .stk-contact-card__icon svg{fill:var(--stk-green-dark)}
.stk-contact-card__label{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--stk-muted)}
.stk-contact-card__value{font-size:15px;font-weight:600;color:var(--stk-ink);line-height:1.4}
a.stk-contact-card__value{color:var(--stk-blue);text-decoration:none}
.stk-info__layout{display:grid;gap:20px;align-items:start}
.stk-info-toc{
  background:var(--stk-surface);border-radius:var(--stk-radius-sm);
  border:1px solid var(--stk-line);padding:16px 14px;box-shadow:0 2px 12px rgba(18,21,28,.04);
}
.stk-info-toc__title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--stk-muted);margin-bottom:10px}
.stk-info-toc__list{counter-reset:toc;padding:0;margin:0;list-style:none}
.stk-info-toc__list li{margin:0}
.stk-info-toc__list a{
  display:block;padding:8px 10px;border-radius:8px;font-size:13px;font-weight:500;
  color:var(--stk-ink-soft);line-height:1.35;transition:background .15s,color .15s;
}
.stk-info-toc__list a:hover{background:#eef1f8;color:var(--stk-blue)}
.stk-article--info{margin-top:0}
.stk-article--info h2{
  display:flex;align-items:flex-start;gap:12px;scroll-margin-top:calc(var(--stk-top-h) + var(--stk-nav-h) + 16px);
  padding-top:4px;
}
.stk-article--info h2::before{
  content:'';width:4px;min-height:1.1em;margin-top:.15em;border-radius:4px;flex-shrink:0;
  background:linear-gradient(180deg,var(--stk-blue),var(--stk-green));
}
.stk-article--info h3{
  font-size:15px;font-weight:700;color:var(--stk-blue);margin:20px 0 8px;
}
.stk-article--info .list-container ul li{
  position:relative;padding-left:4px;
}
.stk-article--info .list-container ul li::marker{color:var(--stk-blue)}
@media(min-width:993px){
  .stk-info__layout{grid-template-columns:minmax(200px,240px) 1fr}
  .stk-info-toc{position:sticky;top:calc(var(--stk-top-h) + var(--stk-nav-h) + 12px)}
  .stk-info-hero__inner{padding:32px 36px}
  .stk-info-hero__visual{flex:0 0 100px;width:100px;height:100px}
}
@media(max-width:640px){
  .stk-info-hero__inner{flex-direction:column;text-align:center;padding:24px 18px}
  .stk-info-hero__visual{flex:0 0 72px;width:72px;height:72px}
}

/* Status pages - 404, restricted */
.stk-page--status{
  display:flex;flex-direction:column;min-height:100vh;
  background:linear-gradient(165deg,#f0f2f7 0%,#e6ebfa 42%,#f0f2f7 100%);
}
.stk-status-standalone{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:28px 16px 40px;
}
.stk-status-standalone__brand{margin-bottom:24px}
.stk-status-standalone__brand a{display:flex;align-items:center;justify-content:center}
.stk-status-standalone__brand img{height:40px;width:auto;object-fit:contain}
.stk-status-standalone__brand .stk-brand-text{font-size:1.5rem;font-weight:800;letter-spacing:-.02em}
.stk-status-standalone .stk-status{min-height:auto;padding:0 0 8px;flex:0 0 auto}
.stk-status{
  position:relative;display:flex;justify-content:center;align-items:center;
  padding:8px 0 40px;min-height:min(68vh,560px);width:100%;
}
.stk-status__glow{
  position:absolute;border-radius:50%;filter:blur(70px);opacity:.32;pointer-events:none;
}
.stk-status__glow--a{width:220px;height:220px;background:var(--stk-blue);top:0;left:0;animation:stk-status-float 9s ease-in-out infinite}
.stk-status__glow--b{width:180px;height:180px;background:var(--stk-green);bottom:5%;right:0;animation:stk-status-float 11s ease-in-out infinite reverse}
.stk-status__glow--c{width:140px;height:140px;background:#8b9dff;top:40%;right:18%;animation:stk-status-float 7s ease-in-out infinite .5s}
.stk-status__card{
  position:relative;z-index:1;width:100%;max-width:520px;
  background:var(--stk-surface);border-radius:var(--stk-radius);
  box-shadow:0 8px 40px rgba(18,21,28,.1),0 1px 0 rgba(255,255,255,.8) inset;
  padding:36px 28px 32px;text-align:center;overflow:hidden;
}
.stk-status__card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--stk-blue),#6b7fff 50%,var(--stk-green));
}
.stk-status--restricted .stk-status__card::before{
  background:linear-gradient(90deg,#e85d4a,var(--stk-blue) 55%,var(--stk-green));
}
.stk-status__visual{
  width:104px;height:104px;margin:0 auto 18px;
  display:flex;align-items:center;justify-content:center;
}
.stk-status__icon{width:100%;height:100%;display:block}
.stk-status__code{
  font-size:clamp(3.5rem,11vw,5rem);font-weight:800;line-height:1;letter-spacing:-.05em;
  margin:0 0 6px;
  background:linear-gradient(135deg,var(--stk-blue) 0%,#6b7fff 45%,var(--stk-green) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.stk-status--restricted .stk-status__code{
  background:linear-gradient(135deg,#e85d4a 0%,var(--stk-blue) 50%,var(--stk-green) 100%);
  -webkit-background-clip:text;background-clip:text;
}
.stk-status__title{
  font-size:clamp(1.15rem,3.5vw,1.45rem);font-weight:700;color:var(--stk-ink);
  line-height:1.35;margin:0 0 12px;
}
.stk-status__desc{
  font-size:15px;line-height:1.55;color:var(--stk-muted);margin:0 auto;max-width:400px;
}
.stk-status__actions{
  display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:28px;
}
.stk-status__actions .stk-btn{min-width:148px}
.stk-status__hint{
  margin-top:20px;padding-top:18px;border-top:1px solid var(--stk-line);
  font-size:12px;color:var(--stk-muted);line-height:1.45;
}
@keyframes stk-status-float{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(8px,-14px) scale(1.05)}
}
@media(prefers-reduced-motion:reduce){
  .stk-status__glow{animation:none}
}
@media(max-width:480px){
  .stk-status__card{padding:28px 20px 26px}
  .stk-status__actions{flex-direction:column}
  .stk-status__actions .stk-btn{width:100%}
}

/* Desktop */
@media(min-width:993px){
  .stk-nav-toggle,.stk-backdrop,.stk-drawer,.stk-dock{display:none!important}
  .stk-primary-nav{display:block}
  body.stk-page{padding-bottom:0}
}
@media(max-width:992px){
  .stk-topbar{padding:9px 10px;gap:8px;min-height:64px;align-items:center}
  .stk-brand{flex:0 1 auto;min-width:0;max-width:38%}
  .stk-brand img{height:30px}
  .stk-topbar__actions{
    display:flex;flex:1 1 auto;justify-content:flex-end;
    gap:9px;margin-left:0;margin-right:5px;min-width:0;
  }
  .stk-topbar__actions .stk-btn{
    display:inline-flex;padding:9px 15px;font-size:15px;line-height:1.2;
    flex-shrink:0;font-weight:600;
  }
  .stk-topbar__actions .stk-btn--login{animation:stk-pulse-login 2s ease-in-out infinite}
  .stk-topbar__actions .stk-btn--signup{animation:stk-pulse-signup 2s ease-in-out infinite}
  .stk-nav-toggle{display:flex;flex-shrink:0}
  .stk-primary-nav{display:none}
  .stk-dock{display:none}
  body.stk-page{padding-bottom:0}
  .stk-main{padding:12px 12px 24px}
}

@media(max-width:992px) and (prefers-reduced-motion:reduce){
  .stk-topbar__actions .stk-btn--login,
  .stk-topbar__actions .stk-btn--signup{animation:none}
}

@media(max-width:380px){
  .stk-topbar__actions .stk-btn{padding:8px 12px;font-size:13px}
  .stk-topbar__actions{gap:6px}
  .stk-brand{max-width:32%}
}

@media(max-width:480px){
  .stk-game{flex:0 0 120px}
  .stk-article{padding:16px 14px}
  .stk-article h1{font-size:22px}
}
