@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ============ RESET ============ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;background:none;border:none}
svg{flex-shrink:0}

/* ============ TOKENS ============ */
:root{
  --sg4-bg:#F4F7FC;
  --sg4-surface:#FFFFFF;
  --sg4-surface-2:#EAF1FB;
  --sg4-ink:#122043;
  --sg4-muted:#5B6B84;
  --sg4-primary:#1B4FBF;
  --sg4-primary-2:#0E3186;
  --sg4-primary-dim:rgba(27,79,191,.08);
  --sg4-accent:#FF6B4A;
  --sg4-accent-2:#E85332;
  --sg4-accent-dim:rgba(255,107,74,.12);
  --sg4-sun:#FFB648;
  --sg4-sun-dim:rgba(255,182,72,.15);
  --sg4-border:rgba(18,32,67,.10);
  --sg4-radius:16px;
  --sg4-radius-sm:10px;
  --sg4-radius-lg:28px;
  --sg4-shadow:0 8px 30px rgba(18,32,67,.08);
  --sg4-shadow-lg:0 24px 60px rgba(18,32,67,.16);
  --sg4-max:1180px;
  --sg4-font:'Inter',sans-serif;
  --sg4-font-display:'Poppins',sans-serif;
}

body{
  font-family:var(--sg4-font);
  background:var(--sg4-bg);
  color:var(--sg4-ink);
  line-height:1.7;
  min-height:100vh;
  overflow-x:hidden;
  font-size:15px;
}

.sg4-wrap{max-width:var(--sg4-max);margin:0 auto;padding:0 24px}

h1,h2,h3,h4{font-family:var(--sg4-font-display);color:var(--sg4-ink);line-height:1.25}

.sg4-h2{font-size:clamp(24px,3vw,32px);font-weight:700;margin-bottom:10px}
.sg4-lead{color:var(--sg4-muted);font-size:15px;max-width:680px;margin-bottom:28px}
.sg4-tag{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--sg4-primary-dim);color:var(--sg4-primary);
  font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  padding:6px 14px;border-radius:999px;margin-bottom:14px;
}
.sg4-prose p{color:var(--sg4-muted);font-size:14.5px;line-height:1.8;margin-bottom:16px}
.sg4-prose p:last-child{margin-bottom:0}

/* ============ BUTTONS ============ */
.sg4-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 26px;border-radius:999px;font-weight:700;font-size:14px;
  font-family:var(--sg4-font-display);transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
  white-space:nowrap;
}
.sg4-btn--primary{background:var(--sg4-accent);color:#fff;box-shadow:0 10px 26px rgba(255,107,74,.35)}
.sg4-btn--primary:hover{background:var(--sg4-accent-2);transform:translateY(-2px)}
.sg4-btn--navy{background:var(--sg4-primary);color:#fff;box-shadow:0 10px 26px rgba(27,79,191,.28)}
.sg4-btn--navy:hover{background:var(--sg4-primary-2);transform:translateY(-2px)}
.sg4-btn--ghost{background:var(--sg4-surface);color:var(--sg4-ink);border:1.5px solid var(--sg4-border)}
.sg4-btn--ghost:hover{border-color:var(--sg4-primary);color:var(--sg4-primary)}
.sg4-btn--outline{background:transparent;color:var(--sg4-primary);border:1.5px solid var(--sg4-primary)}
.sg4-btn--outline:hover{background:var(--sg4-primary-dim)}
.sg4-btn--sm{padding:9px 18px;font-size:13px}
.sg4-btn--lg{padding:16px 32px;font-size:15px}
.sg4-btn--full{width:100%}

/* ============ HEADER ============ */
.sg4-header{
  position:sticky;top:0;z-index:100;background:rgba(244,247,252,.9);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--sg4-border);
}
.sg4-header__bar{
  position:relative;
  max-width:var(--sg4-max);margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.sg4-header__left{display:flex;align-items:center;gap:16px}
.sg4-logo{
  display:flex;align-items:center;background:var(--sg4-ink);
  border-radius:12px;padding:8px 14px;
}
.sg4-logo img{height:22px;width:auto}
.sg4-nav{
  display:flex;align-items:center;gap:4px;
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
}
.sg4-nav a{
  padding:9px 16px;border-radius:999px;font-weight:600;font-size:14px;color:var(--sg4-muted);
  transition:background .15s ease,color .15s ease;
}
.sg4-nav a:hover,.sg4-nav a.active{background:var(--sg4-surface-2);color:var(--sg4-primary)}
.sg4-header__actions{display:flex;align-items:center;gap:10px}
.sg4-burger{
  display:none;flex-direction:column;gap:5px;padding:6px;
}
.sg4-burger span{width:22px;height:2px;background:var(--sg4-ink);border-radius:2px}

/* Mobile panel */
.sg4-overlay{position:fixed;inset:0;background:rgba(18,32,67,.5);opacity:0;visibility:hidden;transition:opacity .2s ease;z-index:150}
.sg4-overlay.is-open{opacity:1;visibility:visible}
.sg4-panel{
  position:fixed;top:0;right:0;bottom:0;width:82%;max-width:340px;background:var(--sg4-surface);
  z-index:200;transform:translateX(100%);transition:transform .25s ease;
  display:flex;flex-direction:column;padding:20px;box-shadow:var(--sg4-shadow-lg);
}
.sg4-panel.is-open{transform:translateX(0)}
.sg4-panel__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.sg4-panel__close{font-size:20px;color:var(--sg4-muted)}
.sg4-panel__nav{display:flex;flex-direction:column;gap:4px;flex:1}
.sg4-panel__nav a{display:flex;align-items:center;gap:12px;padding:13px 14px;border-radius:12px;font-weight:600;color:var(--sg4-ink)}
.sg4-panel__nav a.active,.sg4-panel__nav a:hover{background:var(--sg4-surface-2);color:var(--sg4-primary)}
.sg4-panel__foot{display:flex;flex-direction:column;gap:10px;padding-top:16px;border-top:1px solid var(--sg4-border)}

/* ============ HERO (split layout) ============ */
.sg4-hero{padding:56px 0 96px}
.sg4-hero__grid{display:flex;flex-wrap:wrap;align-items:center;gap:48px}
.sg4-hero__content{flex:1 1 440px;min-width:300px}
.sg4-hero__badge{
  display:inline-flex;align-items:center;gap:8px;background:var(--sg4-sun-dim);color:#946000;
  font-size:12px;font-weight:700;padding:7px 14px;border-radius:999px;margin-bottom:18px;
}
.sg4-hero__title{font-size:clamp(30px,4.2vw,46px);font-weight:800;margin-bottom:18px}
.sg4-hero__title em{color:var(--sg4-primary);font-style:normal}
.sg4-hero__text{color:var(--sg4-muted);font-size:15.5px;margin-bottom:28px;max-width:520px}
.sg4-hero__cta{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:16px}
.sg4-hero__note{font-size:12px;color:var(--sg4-muted)}

.sg4-hero__media{flex:1 1 420px;min-width:300px;position:relative}
.sg4-hero__media picture{
  display:block;border-radius:var(--sg4-radius-lg);overflow:hidden;box-shadow:var(--sg4-shadow-lg);
}
.sg4-hero__media img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}

.sg4-hero__stats{
  display:flex;flex-wrap:wrap;gap:0;background:var(--sg4-surface);border-radius:var(--sg4-radius);
  box-shadow:var(--sg4-shadow-lg);position:relative;z-index:2;
  padding:18px 8px;
}
.sg4-hero__stat{flex:1 1 25%;min-width:90px;text-align:center;padding:8px 6px;border-right:1px solid var(--sg4-border)}
.sg4-hero__stat:last-child{border-right:none}
.sg4-hero__stat-value{display:block;font-family:var(--sg4-font-display);font-weight:800;font-size:19px;color:var(--sg4-primary)}
.sg4-hero__stat-label{display:block;font-size:10.5px;color:var(--sg4-muted);margin-top:2px;text-transform:uppercase;letter-spacing:.02em}

/* ============ TRUST STRIP ============ */
.sg4-strip{background:var(--sg4-ink)}
.sg4-strip__inner{display:flex;flex-wrap:wrap;gap:14px 32px;justify-content:center;padding:16px 0;color:#C9D5EC;font-size:12.5px;font-weight:600}
.sg4-strip__item{display:flex;align-items:center;gap:8px}

/* ============ SECTIONS ============ */
.sg4-section{padding:68px 0}
.sg4-section--alt{background:var(--sg4-surface)}

/* two-column prose+aside */
.sg4-split{display:flex;flex-wrap:wrap;gap:40px;align-items:flex-start}
.sg4-split__main{flex:1 1 520px;min-width:280px}
.sg4-split__aside{flex:1 1 320px;min-width:260px;background:var(--sg4-surface);border-radius:var(--sg4-radius);padding:26px;box-shadow:var(--sg4-shadow)}
.sg4-split__aside-title{font-family:var(--sg4-font-display);font-weight:700;font-size:15px;margin-bottom:14px;color:var(--sg4-primary)}
.sg4-checklist li{display:flex;gap:10px;font-size:13.5px;color:var(--sg4-muted);margin-bottom:12px;align-items:flex-start}
.sg4-checklist li svg{flex-shrink:0;margin-top:2px;color:var(--sg4-accent)}

/* pro/con columns */
.sg4-pc{display:flex;flex-wrap:wrap;gap:24px}
.sg4-pc__col{flex:1 1 300px;min-width:260px;background:var(--sg4-surface);border-radius:var(--sg4-radius);padding:24px;box-shadow:var(--sg4-shadow)}
.sg4-pc__col--warn{border-top:4px solid var(--sg4-sun)}
.sg4-pc__col--good{border-top:4px solid var(--sg4-primary)}
.sg4-pc__col h3{font-size:16px;margin-bottom:14px}
.sg4-pc__col p{color:var(--sg4-muted);font-size:14px;line-height:1.75}

/* numbered steps */
.sg4-steps{display:flex;flex-wrap:wrap;gap:20px;margin-top:24px}
.sg4-step{flex:1 1 220px;min-width:200px;background:var(--sg4-surface);border-radius:var(--sg4-radius);padding:22px;box-shadow:var(--sg4-shadow);position:relative}
.sg4-step__num{
  width:34px;height:34px;border-radius:50%;background:var(--sg4-primary);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-family:var(--sg4-font-display);
  margin-bottom:14px;font-size:14px;
}
.sg4-step h4{font-size:14.5px;margin-bottom:8px}
.sg4-step p{font-size:13px;color:var(--sg4-muted);line-height:1.7}

/* ============ BONUS TIMELINE (stage cards, horizontal) ============ */
.sg4-timeline{display:flex;justify-content:space-between;align-items:center;margin:0 0 32px;padding:0 8px}
.sg4-timeline__dot{
  width:38px;height:38px;border-radius:50%;background:var(--sg4-surface);border:2px solid var(--sg4-primary);
  color:var(--sg4-primary);display:flex;align-items:center;justify-content:center;font-weight:800;
  font-family:var(--sg4-font-display);font-size:14px;flex-shrink:0;
}
.sg4-timeline__dot--gold{border-color:var(--sg4-sun);color:#946000;background:var(--sg4-sun-dim)}
.sg4-timeline__line{flex:1;height:2px;background:var(--sg4-border);margin:0 6px}

.sg4-stage-list{display:flex;flex-direction:column;gap:22px}
.sg4-stage{
  display:flex;flex-wrap:wrap;gap:24px;background:var(--sg4-surface);border-radius:var(--sg4-radius);
  box-shadow:var(--sg4-shadow);padding:22px;align-items:stretch;
}
.sg4-stage__media{flex:0 0 200px;display:flex;flex-direction:column;gap:12px}
.sg4-stage__media img{border-radius:var(--sg4-radius-sm);width:100%;height:130px;object-fit:cover}
.sg4-stage__badge{
  display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:13px;color:var(--sg4-primary);
}
.sg4-stage__body{flex:1 1 320px;min-width:260px}
.sg4-stage__label{font-size:11px;text-transform:uppercase;letter-spacing:.04em;color:var(--sg4-muted);font-weight:700;margin-bottom:4px}
.sg4-stage__headline{font-family:var(--sg4-font-display);font-weight:700;font-size:17px;margin-bottom:8px}
.sg4-stage__desc{font-size:13.5px;color:var(--sg4-muted);line-height:1.75;margin-bottom:14px}
.sg4-stage__stats{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}
.sg4-stage__stats li{
  background:var(--sg4-surface-2);border-radius:8px;padding:7px 10px;font-size:11.5px;
  display:flex;flex-direction:column;gap:2px;min-width:88px;
}
.sg4-stage__stats li span:first-child{color:var(--sg4-muted);font-size:10px;text-transform:uppercase}
.sg4-stage__stats li span:last-child{font-weight:700;color:var(--sg4-ink)}
.sg4-stage__terms{font-size:11px;color:var(--sg4-muted);margin-bottom:14px;line-height:1.6}
.sg4-stage__cta{flex:0 0 160px;display:flex;align-items:center}

/* ============ GAMES STRIP ============ */
.sg4-games{display:flex;gap:16px;overflow-x:auto;padding:6px 2px 16px;scroll-snap-type:x mandatory}
.sg4-games::-webkit-scrollbar{height:6px}
.sg4-games::-webkit-scrollbar-thumb{background:var(--sg4-border);border-radius:6px}
.sg4-game-card{
  flex:0 0 150px;scroll-snap-align:start;background:var(--sg4-surface);border-radius:var(--sg4-radius);
  overflow:hidden;box-shadow:var(--sg4-shadow);
}
.sg4-game-card img{width:100%;height:150px;object-fit:cover}
.sg4-game-card__name{padding:10px 12px;font-size:12.5px;font-weight:700;text-align:center}

/* ============ PROVIDERS ============ */
.sg4-providers{display:flex;flex-wrap:wrap;gap:14px}
.sg4-provider{
  background:var(--sg4-surface);border-radius:var(--sg4-radius-sm);padding:16px 22px;
  display:flex;align-items:center;justify-content:center;box-shadow:var(--sg4-shadow);
  height:56px;flex:1 1 150px;max-width:190px;
}
.sg4-provider img{max-height:26px;width:auto;object-fit:contain}

/* ============ FEATURE ROWS ============ */
.sg4-features{display:flex;flex-wrap:wrap;gap:20px}
.sg4-feature{
  flex:1 1 260px;min-width:240px;display:flex;gap:14px;background:var(--sg4-surface);
  border-radius:var(--sg4-radius);padding:20px;box-shadow:var(--sg4-shadow);
}
.sg4-feature__icon{
  width:44px;height:44px;border-radius:12px;background:var(--sg4-primary-dim);color:var(--sg4-primary);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.sg4-feature h3{font-size:14.5px;margin-bottom:6px}
.sg4-feature p{font-size:13px;color:var(--sg4-muted);line-height:1.7}

/* ============ FAQ ACCORDION ============ */
.sg4-faq{display:flex;flex-direction:column;gap:10px}
.sg4-faq__item{background:var(--sg4-surface);border-radius:var(--sg4-radius);box-shadow:var(--sg4-shadow);overflow:hidden}
.sg4-faq__q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:18px 22px;font-family:var(--sg4-font-display);font-weight:600;font-size:14.5px;text-align:left;
}
.sg4-faq__icon{width:26px;height:26px;border-radius:50%;background:var(--sg4-surface-2);color:var(--sg4-primary);display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;transition:transform .2s ease}
.sg4-faq__a{max-height:0;overflow:hidden;transition:max-height .25s ease;padding:0 22px;font-size:13.5px;color:var(--sg4-muted);line-height:1.75}
.sg4-faq__item.is-open .sg4-faq__a{max-height:260px;padding-bottom:20px}
.sg4-faq__item.is-open .sg4-faq__icon{transform:rotate(45deg);background:var(--sg4-accent);color:#fff}

/* ============ INLINE PROMO (image + text + CTA) ============ */
.sg4-inline-promo{
  display:flex;align-items:center;gap:20px;margin-top:28px;
  background:var(--sg4-surface);border-radius:var(--sg4-radius);padding:18px 22px;
  box-shadow:var(--sg4-shadow);flex-wrap:wrap;
}
.sg4-section--alt .sg4-inline-promo{background:var(--sg4-surface-2);box-shadow:none}
.sg4-inline-promo img{width:64px;height:64px;border-radius:12px;object-fit:cover;flex-shrink:0}
.sg4-inline-promo__text{flex:1 1 220px;font-size:13.5px;color:var(--sg4-muted)}
.sg4-inline-promo__text strong{display:block;color:var(--sg4-ink);font-family:var(--sg4-font-display);font-size:14.5px;margin-bottom:2px}

/* ============ CALLOUT / NOTE ============ */
.sg4-note{
  background:var(--sg4-primary-dim);border-left:4px solid var(--sg4-primary);border-radius:0 var(--sg4-radius-sm) var(--sg4-radius-sm) 0;
  padding:16px 20px;font-size:13.5px;color:var(--sg4-ink);line-height:1.75;margin:18px 0;
}
.sg4-note strong{color:var(--sg4-primary)}

/* ============ CTA BANNER ============ */
.sg4-cta-banner{
  background:linear-gradient(120deg,var(--sg4-primary),var(--sg4-primary-2));
  border-radius:var(--sg4-radius-lg);padding:48px 32px;text-align:center;color:#fff;
  margin:0 24px;
}
.sg4-cta-banner h2{color:#fff;font-size:26px;margin-bottom:10px}
.sg4-cta-banner p{color:rgba(255,255,255,.82);font-size:14px;margin-bottom:22px}

/* ============ FOOTER ============ */
.sg4-footer{background:var(--sg4-ink);color:#B9C4DC;padding:56px 0 0}
.sg4-footer__top{display:flex;flex-wrap:wrap;gap:36px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.08)}
.sg4-footer__brand{flex:1 1 260px;min-width:220px}
.sg4-footer__logo{display:inline-flex;background:#fff;border-radius:12px;padding:8px 14px;margin-bottom:14px}
.sg4-footer__logo img{height:20px}
.sg4-footer__tagline{font-size:13px;color:#8C9BBB;line-height:1.7}
.sg4-footer__col{flex:1 1 150px;min-width:140px}
.sg4-footer__col-title{font-family:var(--sg4-font-display);color:#fff;font-weight:700;font-size:13px;margin-bottom:14px;text-transform:uppercase;letter-spacing:.03em}
.sg4-footer__col ul{display:flex;flex-direction:column;gap:10px}
.sg4-footer__col a{font-size:13.5px;color:#B9C4DC;transition:color .15s ease}
.sg4-footer__col a:hover{color:var(--sg4-accent)}
.sg4-footer__reviews{padding:32px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.sg4-footer__reviews-title{font-size:12px;text-transform:uppercase;letter-spacing:.04em;color:#8C9BBB;margin-bottom:16px;text-align:center}
.sg4-footer__review-logos{display:flex;flex-wrap:wrap;gap:20px;justify-content:center;align-items:center}
.sg4-footer__review-logo{height:22px;filter:grayscale(1) brightness(2.2);opacity:.7;transition:opacity .15s ease}
.sg4-footer__review-logo:hover{opacity:1}
.sg4-footer__bottom{padding:24px 0 28px;display:flex;flex-wrap:wrap;gap:16px;justify-content:space-between;align-items:center}
.sg4-footer__legal{font-size:12px;color:#7A88A8;max-width:760px;line-height:1.7}
.sg4-footer__copy{font-size:12px;color:#7A88A8}
.sg4-footer__links{display:flex;gap:18px;flex-wrap:wrap}
.sg4-footer__links a{font-size:12px;color:#B9C4DC}
.sg4-footer__links a:hover{color:var(--sg4-accent)}

/* ============ PAGE HERO (legal pages) ============ */
.sg4-page-hero{padding:56px 0 36px;background:var(--sg4-surface);border-bottom:1px solid var(--sg4-border)}
.sg4-page-hero__grid{display:flex;flex-wrap:wrap;align-items:center;gap:40px}
.sg4-page-hero__content{flex:1 1 480px;min-width:280px}
.sg4-page-hero__kicker{color:var(--sg4-accent);font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px}
.sg4-page-hero__title{font-size:clamp(26px,4vw,38px);font-weight:800}
.sg4-page-hero__meta{color:var(--sg4-muted);font-size:13px;margin-top:10px}
.sg4-page-hero__media{flex:1 1 360px;min-width:260px}
.sg4-page-hero__media picture{display:block;border-radius:var(--sg4-radius-lg);overflow:hidden;box-shadow:var(--sg4-shadow-lg)}
.sg4-page-hero__media img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}

/* ============ LEGAL LAYOUT ============ */
.sg4-legal-layout{display:flex;gap:40px;align-items:flex-start}
.sg4-legal-toc{flex:0 0 230px;position:sticky;top:90px}
.sg4-legal-toc__inner{background:var(--sg4-surface);border-radius:var(--sg4-radius);padding:20px;box-shadow:var(--sg4-shadow)}
.sg4-legal-toc__title{font-family:var(--sg4-font-display);font-weight:700;font-size:13px;margin-bottom:12px;text-transform:uppercase;color:var(--sg4-muted)}
.sg4-legal-toc__inner ul{display:flex;flex-direction:column;gap:9px}
.sg4-legal-toc__inner a{font-size:13px;color:var(--sg4-muted)}
.sg4-legal-toc__inner a:hover{color:var(--sg4-primary)}
.sg4-legal-main{flex:1;min-width:0}
.sg4-legal-main h2{font-size:19px;margin:32px 0 12px}
.sg4-legal-main h2:first-child{margin-top:0}
.sg4-legal-main h3{font-size:15px;margin:18px 0 8px}
.sg4-legal-main ul{padding-left:20px;margin-bottom:16px}
.sg4-legal-main ul li{list-style:disc;color:var(--sg4-muted);font-size:14px;line-height:1.75;margin-bottom:6px}
.sg4-legal-main a{color:var(--sg4-primary);text-decoration:underline}

/* ============ RESPONSIVE ============ */
@media (max-width:980px){
  .sg4-nav,.sg4-header__actions{display:none}
  .sg4-burger{display:flex}
  .sg4-legal-toc{display:none}
}
@media (max-width:640px){
  .sg4-hero{padding:32px 0 64px}
  .sg4-hero__stats{margin:-28px 8px 0}
  .sg4-hero__stat{flex:1 1 45%;border-right:none;border-bottom:1px solid var(--sg4-border)}
  .sg4-stage{flex-direction:column}
  .sg4-stage__media{flex:0 0 auto}
  .sg4-timeline{display:none}
  .sg4-cta-banner{margin:0 16px;padding:36px 22px}
}
