/* SpinEmpire Greece 3 — Minimalistic Editorial Design
   Prefix: sg3- */

/* ─── Reset & Base ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:'Mulish',sans-serif;
  background:#F5F3EE;
  color:#1C1A17;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

/* ─── Google Font ─── */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800&display=swap');

/* ─── CSS Variables ─── */
:root{
  --sg3-bg:#F5F3EE;
  --sg3-surface:#FFFFFF;
  --sg3-surface-2:#EDEAE3;
  --sg3-border:#D9D5CC;
  --sg3-navy:#0E2B5C;
  --sg3-navy-2:#1A4080;
  --sg3-gold:#C49828;
  --sg3-gold-2:#DDB93A;
  --sg3-text:#1C1A17;
  --sg3-muted:#6B6258;
  --sg3-radius:10px;
  --sg3-radius-sm:6px;
  --sg3-radius-lg:18px;
  --sg3-shadow:0 2px 16px rgba(14,43,92,0.08);
  --sg3-shadow-lg:0 6px 32px rgba(14,43,92,0.13);
  --sg3-max:1160px;
}

/* ─── Utilities ─── */
.sg3-wrap{max-width:var(--sg3-max);margin:0 auto;padding:0 24px}
.sg3-section{padding:72px 0}
.sg3-section--alt{background:var(--sg3-surface)}
.sg3-section--navy{background:var(--sg3-navy);color:#fff}
.sg3-tag{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--sg3-gold);background:rgba(196,152,40,.1);border:1px solid rgba(196,152,40,.25);border-radius:4px;padding:4px 10px;margin-bottom:16px}
.sg3-h2{font-size:clamp(22px,3vw,32px);font-weight:800;line-height:1.2;margin-bottom:12px}
.sg3-h2--light{color:#fff}
.sg3-lead{font-size:16px;color:var(--sg3-muted);margin-bottom:32px;max-width:600px}
.sg3-lead--light{color:rgba(255,255,255,.75)}
.sg3-divider{width:48px;height:3px;background:var(--sg3-gold);border-radius:2px;margin:0 0 28px}

/* ─── Buttons ─── */
.sg3-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:inherit;font-size:14px;font-weight:700;letter-spacing:.02em;
  border-radius:var(--sg3-radius-sm);border:none;cursor:pointer;
  text-decoration:none;transition:all .18s ease;line-height:1;
  padding:10px 20px;
}
.sg3-btn--primary{background:var(--sg3-navy);color:#fff}
.sg3-btn--primary:hover{background:var(--sg3-navy-2)}
.sg3-btn--gold{background:var(--sg3-gold);color:#fff}
.sg3-btn--gold:hover{background:var(--sg3-gold-2);transform:translateY(-1px);box-shadow:0 4px 14px rgba(196,152,40,.4)}
.sg3-btn--outline{background:transparent;color:var(--sg3-navy);border:1.5px solid var(--sg3-navy)}
.sg3-btn--outline:hover{background:var(--sg3-navy);color:#fff}
.sg3-btn--ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.35)}
.sg3-btn--ghost:hover{border-color:#fff;background:rgba(255,255,255,.1)}
.sg3-btn--lg{padding:14px 32px;font-size:15px;border-radius:var(--sg3-radius)}
.sg3-btn--sm{padding:7px 14px;font-size:13px}

/* ─── Header ─── */
.sg3-header{
  position:sticky;top:0;z-index:100;
  background:var(--sg3-navy);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.sg3-header__bar{
  max-width:var(--sg3-max);margin:0 auto;
  padding:12px 24px;
  display:flex;align-items:center;gap:24px;
}
.sg3-header__left{display:flex;align-items:center;gap:12px;flex-shrink:0}
.sg3-burger{
  display:none;flex-direction:column;justify-content:center;align-items:center;
  width:38px;height:38px;gap:5px;background:transparent;
  border:1.5px solid rgba(255,255,255,.3);border-radius:6px;cursor:pointer;
}
.sg3-burger span{display:block;width:18px;height:2px;background:#fff;border-radius:1px;transition:.2s}
.sg3-logo img{height:34px;display:block}
.sg3-nav{flex:1;display:flex;align-items:center;justify-content:center;gap:32px}
.sg3-nav a{
  font-size:13px;font-weight:600;color:rgba(255,255,255,.7);
  text-decoration:none;transition:.15s;position:relative;padding:4px 0;
}
.sg3-nav a::after{
  content:'';position:absolute;left:0;bottom:-1px;width:0;height:2px;
  background:var(--sg3-gold);border-radius:1px;transition:width .2s;
}
.sg3-nav a:hover,
.sg3-nav a.active{color:#fff}
.sg3-nav a:hover::after,
.sg3-nav a.active::after{width:100%}
.sg3-header__actions{display:flex;align-items:center;gap:10px;flex-shrink:0}

/* ─── Mobile overlay / panel ─── */
.sg3-overlay{
  display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);
  z-index:200;opacity:0;transition:opacity .25s;pointer-events:none;
}
.sg3-overlay.is-open{opacity:1;pointer-events:auto;}
.sg3-panel{
  position:fixed;top:0;left:0;bottom:0;width:min(300px,88vw);
  background:var(--sg3-navy);z-index:201;
  transform:translateX(-100%);transition:transform .28s ease;
  display:flex;flex-direction:column;
}
.sg3-panel.is-open{transform:translateX(0)}
.sg3-panel__head{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px;border-bottom:1px solid rgba(255,255,255,.1);
}
.sg3-panel__close{
  background:transparent;border:none;color:#fff;font-size:20px;
  cursor:pointer;padding:4px;opacity:.7;line-height:1;
}
.sg3-panel__close:hover{opacity:1}
.sg3-panel__nav{flex:1;padding:20px 0;overflow-y:auto}
.sg3-panel__nav a{
  display:flex;align-items:center;gap:12px;
  padding:12px 24px;font-size:14px;font-weight:600;
  color:rgba(255,255,255,.8);text-decoration:none;transition:.15s;
}
.sg3-panel__nav a:hover,.sg3-panel__nav a.active{color:#fff;background:rgba(255,255,255,.07)}
.sg3-panel__foot{padding:20px;display:flex;flex-direction:column;gap:10px;border-top:1px solid rgba(255,255,255,.1)}
.sg3-panel__foot .sg3-btn{width:100%;justify-content:center}

/* ─── Hero — no preset banner, CSS only ─── */
.sg3-hero{
  background:var(--sg3-navy);
  position:relative;overflow:hidden;
  padding:80px 0 88px;
}
.sg3-hero__bg{
  position:absolute;inset:0;z-index:0;display:block;
}
.sg3-hero__bg img{
  width:100%;height:100%;object-fit:cover;object-position:center;display:block;
}
.sg3-hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,152,40,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(26,64,128,.6) 0%, transparent 60%);
}
.sg3-hero::after{
  content:'';position:absolute;
  top:-60px;right:-60px;width:400px;height:400px;
  border:1px solid rgba(196,152,40,.12);border-radius:50%;
  pointer-events:none;
}
.sg3-hero__inner{
  position:relative;z-index:1;
  display:flex;align-items:center;justify-content:space-between;gap:48px;
}
.sg3-hero__content{flex:1;max-width:580px}
.sg3-hero__badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(196,152,40,.15);border:1px solid rgba(196,152,40,.3);
  border-radius:4px;padding:6px 12px;
  font-size:11px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  color:var(--sg3-gold-2);margin-bottom:20px;
}
.sg3-hero__h1{
  font-size:clamp(28px,4.5vw,50px);font-weight:800;
  color:#fff;line-height:1.1;margin-bottom:16px;
}
.sg3-hero__h1 em{color:var(--sg3-gold-2);font-style:normal}
.sg3-hero__text{font-size:15px;color:rgba(255,255,255,.72);margin-bottom:28px;line-height:1.7}
.sg3-hero__cta{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.sg3-hero__note{font-size:12px;color:rgba(255,255,255,.45);margin-top:14px}
.sg3-hero__stats{
  flex-shrink:0;width:280px;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  border-radius:var(--sg3-radius-lg);padding:28px 24px;
  backdrop-filter:blur(8px);
}
.sg3-hero__stats-title{font-size:11px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--sg3-gold);margin-bottom:16px}
.sg3-hero__stat{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:10px 0;border-bottom:1px solid rgba(255,255,255,.07);
}
.sg3-hero__stat:last-child{border-bottom:none}
.sg3-hero__stat-label{font-size:12px;color:rgba(255,255,255,.55)}
.sg3-hero__stat-value{font-size:18px;font-weight:800;color:#fff}
.sg3-hero__stat-value em{font-size:13px;color:var(--sg3-gold);font-style:normal;margin-left:4px}

/* ─── Intro strip (trust signals) ─── */
.sg3-strip{
  background:var(--sg3-surface);
  border-bottom:1px solid var(--sg3-border);
  padding:18px 0;
}
.sg3-strip__inner{
  display:flex;flex-wrap:wrap;gap:24px;align-items:center;justify-content:space-between;
}
.sg3-strip__item{
  display:flex;align-items:center;gap:10px;
  font-size:13px;font-weight:600;color:var(--sg3-text);
}
.sg3-strip__item svg{flex-shrink:0}

/* ─── About section ─── */
.sg3-about__grid{
  display:flex;gap:48px;align-items:flex-start;
}
.sg3-about__content{flex:1}
.sg3-about__aside{
  flex-shrink:0;width:300px;
  background:var(--sg3-surface);
  border:1px solid var(--sg3-border);
  border-radius:var(--sg3-radius-lg);
  padding:28px 24px;
  box-shadow:var(--sg3-shadow);
}
.sg3-about__aside-title{font-size:13px;font-weight:700;color:var(--sg3-navy);margin-bottom:16px}
.sg3-about__list{list-style:none}
.sg3-about__list li{
  display:flex;align-items:flex-start;gap:10px;
  padding:10px 0;border-bottom:1px solid var(--sg3-border);
  font-size:13px;
}
.sg3-about__list li:last-child{border-bottom:none}
.sg3-about__list-icon{flex-shrink:0;margin-top:1px;color:var(--sg3-gold)}

/* ─── Why section ─── */
.sg3-why__grid{
  display:flex;flex-wrap:wrap;gap:20px;margin-top:40px;
}
.sg3-why__card{
  flex:1 1 260px;
  background:var(--sg3-surface);
  border:1px solid var(--sg3-border);
  border-radius:var(--sg3-radius);
  padding:28px 24px;
  box-shadow:var(--sg3-shadow);
  transition:box-shadow .2s,transform .2s;
}
.sg3-why__card:hover{box-shadow:var(--sg3-shadow-lg);transform:translateY(-2px)}
.sg3-why__icon{
  width:48px;height:48px;border-radius:10px;
  background:rgba(14,43,92,.07);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
  color:var(--sg3-navy);
}
.sg3-why__card h3{font-size:15px;font-weight:700;margin-bottom:8px;color:var(--sg3-navy)}
.sg3-why__card p{font-size:13px;color:var(--sg3-muted);line-height:1.6}

/* ─── Bonus stages ─── */
.sg3-stages{margin-top:40px}
.sg3-stages__total{
  background:var(--sg3-navy);color:#fff;
  border-radius:var(--sg3-radius);padding:20px 24px;
  display:flex;flex-wrap:wrap;gap:20px;align-items:center;
  justify-content:space-between;margin-bottom:28px;
}
.sg3-stages__total-label{font-size:12px;opacity:.7;margin-bottom:4px;font-weight:600;letter-spacing:.05em;text-transform:uppercase}
.sg3-stages__total-value{font-size:22px;font-weight:800}
.sg3-stages__total-value em{color:var(--sg3-gold-2);font-style:normal}
.sg3-stages__grid{
  display:flex;flex-wrap:wrap;gap:20px;
}
.sg3-stage{
  flex:1 1 240px;
  background:var(--sg3-surface);
  border:1px solid var(--sg3-border);
  border-radius:var(--sg3-radius-lg);
  overflow:hidden;
  box-shadow:var(--sg3-shadow);
  display:flex;flex-direction:column;
}
.sg3-stage__header{
  background:var(--sg3-navy);
  padding:16px 20px;
  display:flex;align-items:center;gap:14px;
}
.sg3-stage__num{
  width:36px;height:36px;border-radius:50%;
  background:var(--sg3-gold);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:800;flex-shrink:0;
}
.sg3-stage__header-text{flex:1}
.sg3-stage__label{font-size:10px;text-transform:uppercase;letter-spacing:.07em;color:rgba(255,255,255,.55);font-weight:700}
.sg3-stage__title{font-size:14px;font-weight:700;color:#fff;line-height:1.2;margin-top:2px}
.sg3-stage__img{
  width:100%;height:120px;object-fit:cover;display:block;
  background:var(--sg3-surface-2);
}
.sg3-stage__body{padding:16px 20px;display:flex;flex-direction:column;flex:1}
.sg3-stage__headline{font-size:15px;font-weight:800;color:var(--sg3-navy);margin-bottom:10px}
.sg3-stage__desc{font-size:13px;color:var(--sg3-muted);margin-bottom:14px;line-height:1.55}
.sg3-stage__stats{
  list-style:none;
  border:1px solid var(--sg3-border);border-radius:var(--sg3-radius-sm);overflow:hidden;
  margin-bottom:14px;
}
.sg3-stage__stats li{
  display:flex;justify-content:space-between;align-items:center;
  padding:7px 12px;font-size:12px;
  border-bottom:1px solid var(--sg3-border);
}
.sg3-stage__stats li:last-child{border-bottom:none}
.sg3-stage__stats li:nth-child(odd){background:rgba(0,0,0,.02)}
.sg3-stage__stats li span:first-child{color:var(--sg3-muted)}
.sg3-stage__stats li span:last-child{font-weight:700;color:var(--sg3-navy)}
.sg3-stage__terms{font-size:11px;color:var(--sg3-muted);margin-bottom:14px;line-height:1.5}
.sg3-stage .sg3-btn{width:100%;justify-content:center;margin-top:auto}

/* ─── Games grid ─── */
.sg3-games__nav{
  display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px;
}
.sg3-games__tab{
  display:flex;align-items:center;gap:6px;
  padding:7px 14px;border-radius:var(--sg3-radius-sm);
  font-size:13px;font-weight:600;cursor:pointer;
  border:1px solid var(--sg3-border);background:var(--sg3-surface);
  color:var(--sg3-muted);text-decoration:none;transition:.15s;
}
.sg3-games__tab:hover,.sg3-games__tab.active{background:var(--sg3-navy);color:#fff;border-color:var(--sg3-navy)}
.sg3-games__grid{
  display:flex;flex-wrap:wrap;gap:16px;
}
.sg3-game-card{
  flex:0 0 calc(16.666% - 14px);min-width:100px;
  border-radius:var(--sg3-radius);overflow:hidden;
  box-shadow:var(--sg3-shadow);transition:.2s;
  position:relative;
}
.sg3-game-card:hover{transform:translateY(-3px);box-shadow:var(--sg3-shadow-lg)}
.sg3-game-card img{width:100%;aspect-ratio:1;object-fit:cover;display:block}
.sg3-game-card__name{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(transparent,rgba(14,43,92,.9));
  color:#fff;font-size:10px;font-weight:700;
  padding:20px 8px 8px;
}

/* ─── Providers ─── */
.sg3-providers{
  display:flex;flex-wrap:wrap;gap:12px;margin-top:32px;
}
.sg3-provider{
  flex:1 1 130px;
  background:var(--sg3-surface);
  border:1px solid var(--sg3-border);
  border-radius:var(--sg3-radius);
  padding:18px 14px;
  display:flex;align-items:center;justify-content:center;
  transition:.2s;
}
.sg3-provider:hover{border-color:var(--sg3-navy);box-shadow:var(--sg3-shadow)}
.sg3-provider img{
  max-width:110px;height:36px;object-fit:contain;
  opacity:.7;transition:opacity .15s;filter:grayscale(30%);
}
.sg3-provider:hover img{opacity:1;filter:grayscale(0)}

/* ─── Reviews slider ─── */
.sg3-reviews{overflow:hidden;position:relative}
.sg3-reviews__track{
  display:flex;gap:20px;
  transition:transform .35s ease;
}
.sg3-review{
  flex:0 0 calc(33.333% - 14px);min-width:260px;
  background:var(--sg3-surface);
  border:1px solid var(--sg3-border);
  border-radius:var(--sg3-radius-lg);
  padding:24px 22px;
  box-shadow:var(--sg3-shadow);
}
.sg3-review__header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:12px}
.sg3-review__name{font-size:14px;font-weight:700;color:var(--sg3-navy)}
.sg3-review__location{font-size:12px;color:var(--sg3-muted)}
.sg3-review__stars{color:var(--sg3-gold);font-size:15px;letter-spacing:1px}
.sg3-review__meta{font-size:11px;color:var(--sg3-muted);margin-bottom:10px;font-style:italic}
.sg3-review__text{font-size:13px;color:var(--sg3-text);line-height:1.6}
.sg3-reviews__controls{
  display:flex;align-items:center;justify-content:center;gap:16px;margin-top:24px;
}
.sg3-reviews__btn{
  width:40px;height:40px;border-radius:50%;
  border:1.5px solid var(--sg3-border);background:var(--sg3-surface);
  color:var(--sg3-navy);font-size:16px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;transition:.15s;
}
.sg3-reviews__btn:hover{background:var(--sg3-navy);color:#fff;border-color:var(--sg3-navy)}
.sg3-reviews__dots{display:flex;gap:6px}
.sg3-reviews__dot{
  width:8px;height:8px;border-radius:50%;border:none;
  background:var(--sg3-border);cursor:pointer;transition:.15s;
}
.sg3-reviews__dot.active{background:var(--sg3-navy);width:22px;border-radius:4px}

/* ─── Security / Features ─── */
.sg3-features{
  display:flex;flex-wrap:wrap;gap:20px;margin-top:36px;
}
.sg3-feature{
  flex:1 1 220px;
  display:flex;gap:16px;align-items:flex-start;
  background:var(--sg3-surface);border:1px solid var(--sg3-border);
  border-radius:var(--sg3-radius);padding:22px 20px;
}
.sg3-feature__icon{
  flex-shrink:0;width:44px;height:44px;border-radius:8px;
  background:rgba(14,43,92,.06);
  display:flex;align-items:center;justify-content:center;
  color:var(--sg3-navy);
}
.sg3-feature__body h3{font-size:14px;font-weight:700;color:var(--sg3-navy);margin-bottom:4px}
.sg3-feature__body p{font-size:12px;color:var(--sg3-muted);line-height:1.55}

/* ─── FAQ ─── */
.sg3-faq{margin-top:36px}
.sg3-faq__item{
  border-bottom:1px solid var(--sg3-border);
}
.sg3-faq__q{
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  padding:18px 0;cursor:pointer;
  font-size:14px;font-weight:700;color:var(--sg3-navy);
  list-style:none;transition:.15s;
  background:none;border:none;width:100%;text-align:left;
}
.sg3-faq__q:hover{color:var(--sg3-navy-2)}
.sg3-faq__icon{
  flex-shrink:0;width:22px;height:22px;border-radius:50%;
  border:1.5px solid var(--sg3-border);
  display:flex;align-items:center;justify-content:center;
  font-size:14px;color:var(--sg3-navy);transition:.2s;
}
.sg3-faq__item.is-open .sg3-faq__icon{background:var(--sg3-navy);color:#fff;border-color:var(--sg3-navy);transform:rotate(45deg)}
.sg3-faq__a{
  font-size:13px;color:var(--sg3-muted);line-height:1.65;
  overflow:hidden;max-height:0;transition:max-height .3s ease,padding .3s;
  padding-bottom:0;
}
.sg3-faq__item.is-open .sg3-faq__a{max-height:400px;padding-bottom:18px}

/* ─── CTA Banner ─── */
.sg3-cta-banner{
  background:linear-gradient(135deg,var(--sg3-navy) 0%,var(--sg3-navy-2) 100%);
  border-radius:var(--sg3-radius-lg);
  padding:48px 40px;
  text-align:center;position:relative;overflow:hidden;
  margin:48px 0;
}
.sg3-cta-banner::before{
  content:'';position:absolute;
  top:-40px;right:-60px;width:250px;height:250px;
  border:1px solid rgba(196,152,40,.15);border-radius:50%;
}
.sg3-cta-banner h2{color:#fff;font-size:clamp(20px,2.5vw,28px);margin-bottom:10px}
.sg3-cta-banner p{color:rgba(255,255,255,.7);font-size:14px;margin-bottom:24px}
.sg3-cta-banner .sg3-btn{position:relative}

/* ─── Footer ─── */
.sg3-footer{
  background:var(--sg3-navy);color:rgba(255,255,255,.75);
  padding:56px 0 32px;
}
.sg3-footer__top{
  display:flex;flex-wrap:wrap;gap:40px;margin-bottom:40px;
}
.sg3-footer__brand{flex:1;min-width:200px}
.sg3-footer__logo{display:block;margin-bottom:12px}
.sg3-footer__logo img{height:32px}
.sg3-footer__tagline{font-size:13px;opacity:.65;line-height:1.6;max-width:260px}
.sg3-footer__col{flex:1;min-width:150px}
.sg3-footer__col-title{font-size:12px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#fff;margin-bottom:14px}
.sg3-footer__col ul{list-style:none}
.sg3-footer__col li{margin-bottom:8px}
.sg3-footer__col a{font-size:13px;color:rgba(255,255,255,.6);text-decoration:none;transition:.15s}
.sg3-footer__col a:hover{color:#fff}
.sg3-footer__reviews{border-top:1px solid rgba(255,255,255,.08);padding-top:28px;margin-bottom:28px}
.sg3-footer__reviews-title{font-size:12px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:14px}
.sg3-footer__review-logos{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.sg3-footer__review-logo{
  display:flex;align-items:center;justify-content:center;
  width:64px;height:32px;
  opacity:.5;transition:opacity .15s;filter:brightness(10);
}
.sg3-footer__review-logo:hover{opacity:.85}
.sg3-footer__review-logo img{max-width:60px;max-height:28px;object-fit:contain}
.sg3-footer__bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:24px;
  display:flex;flex-wrap:wrap;gap:16px;justify-content:space-between;align-items:center;
}
.sg3-footer__legal{font-size:11px;opacity:.45;line-height:1.6;max-width:700px}
.sg3-footer__links{display:flex;gap:16px;flex-shrink:0}
.sg3-footer__links a{font-size:12px;color:rgba(255,255,255,.5);text-decoration:none;transition:.15s}
.sg3-footer__links a:hover{color:#fff}

/* ─── Comparison table ─── */
.sg3-table-wrap{overflow-x:auto;margin-top:28px}
.sg3-table{width:100%;border-collapse:collapse;font-size:13px}
.sg3-table th{
  background:var(--sg3-navy);color:#fff;
  padding:12px 16px;text-align:left;font-size:12px;font-weight:700;
  letter-spacing:.04em;text-transform:uppercase;
}
.sg3-table td{padding:12px 16px;border-bottom:1px solid var(--sg3-border)}
.sg3-table tr:last-child td{border-bottom:none}
.sg3-table tr:nth-child(odd) td{background:rgba(0,0,0,.015)}
.sg3-table .sg3-badge-best{
  display:inline-flex;padding:2px 8px;
  background:var(--sg3-gold);color:#fff;border-radius:3px;
  font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  margin-left:6px;
}

/* ─── Step list ─── */
.sg3-steps{display:flex;flex-direction:column;gap:16px;margin-top:28px}
.sg3-step{
  display:flex;gap:18px;align-items:flex-start;
  background:var(--sg3-surface);border:1px solid var(--sg3-border);
  border-radius:var(--sg3-radius);padding:20px 22px;
}
.sg3-step__num{
  flex-shrink:0;width:36px;height:36px;border-radius:50%;
  background:var(--sg3-navy);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:800;
}
.sg3-step__body h3{font-size:14px;font-weight:700;color:var(--sg3-navy);margin-bottom:4px}
.sg3-step__body p{font-size:13px;color:var(--sg3-muted);line-height:1.55}

/* ─── Mobile tip card ─── */
.sg3-tips{display:flex;flex-wrap:wrap;gap:16px;margin-top:28px}
.sg3-tip{
  flex:1 1 200px;
  background:var(--sg3-surface);border:1px solid var(--sg3-border);
  border-radius:var(--sg3-radius);padding:20px 18px;
}
.sg3-tip__icon{margin-bottom:10px;color:var(--sg3-navy)}
.sg3-tip h3{font-size:13px;font-weight:700;color:var(--sg3-navy);margin-bottom:6px}
.sg3-tip p{font-size:12px;color:var(--sg3-muted);line-height:1.55}

/* ─── Phone mockup (App page hero) ─── */
.sg3-phone{
  flex-shrink:0;position:relative;
  width:200px;height:380px;
}
.sg3-phone__shell{
  position:absolute;inset:0;
  border:3px solid rgba(255,255,255,.25);
  border-radius:32px;background:rgba(255,255,255,.07);
  overflow:hidden;
}
.sg3-phone__screen{
  position:absolute;top:8px;left:8px;right:8px;bottom:8px;
  background:var(--sg3-navy-2);border-radius:26px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:10px;
}
.sg3-phone__screen-label{color:rgba(255,255,255,.6);font-size:11px;text-align:center}
.sg3-phone__screen-logo{opacity:.8}
.sg3-phone__notch{
  position:absolute;top:10px;left:50%;transform:translateX(-50%);
  width:60px;height:6px;background:rgba(255,255,255,.15);border-radius:3px;
}

/* ─── Responsive ─── */
@media(max-width:980px){
  .sg3-burger{display:flex}
  .sg3-nav{display:none}
  .sg3-header__actions .sg3-btn:first-child{display:none}
  .sg3-overlay{display:block}
  .sg3-hero__stats{display:none}
  .sg3-hero__inner{flex-direction:column}
  .sg3-about__grid{flex-direction:column}
  .sg3-about__aside{width:100%}
  .sg3-review{flex:0 0 calc(50% - 10px)}
  .sg3-game-card{flex:0 0 calc(25% - 12px)}
  .sg3-phone{display:none}
}
@media(max-width:600px){
  .sg3-section{padding:48px 0}
  .sg3-wrap{padding:0 16px}
  .sg3-hero{padding:52px 0 56px}
  .sg3-review{flex:0 0 100%}
  .sg3-game-card{flex:0 0 calc(33.333% - 11px)}
  .sg3-cta-banner{padding:36px 24px}
  .sg3-footer__top{gap:28px}
  .sg3-stages__grid .sg3-stage{flex:0 0 100%}
  .sg3-why__card{flex:0 0 100%}
}

/* ─── Legal pages ─── */
.sg3-page-hero{
  background:var(--sg3-navy);
  padding:56px 0 48px;
}
.sg3-page-hero__inner{max-width:720px}
.sg3-page-hero__kicker{
  font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--sg3-gold);margin-bottom:12px;
}
.sg3-page-hero__title{
  font-size:clamp(26px,4vw,40px);font-weight:800;color:#fff;margin-bottom:10px;
}
.sg3-page-hero__meta{font-size:13px;color:rgba(255,255,255,.45)}
.sg3-legal-layout{
  display:flex;gap:48px;align-items:flex-start;
}
.sg3-legal-toc{
  flex:0 0 220px;position:sticky;top:24px;
}
.sg3-legal-toc__inner{
  background:#fff;border:1px solid #E5E2DB;border-radius:10px;padding:20px;
}
.sg3-legal-toc__title{
  font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  color:var(--sg3-navy);margin-bottom:12px;
}
.sg3-legal-toc ul{list-style:none;display:flex;flex-direction:column;gap:4px}
.sg3-legal-toc li a{
  font-size:13px;color:var(--sg3-muted);text-decoration:none;line-height:1.4;display:block;
  padding:4px 6px;border-radius:5px;transition:background .15s,color .15s;
}
.sg3-legal-toc li a:hover{background:rgba(14,43,92,.06);color:var(--sg3-navy)}
.sg3-legal-main{flex:1;min-width:0}
.sg3-prose h2{
  font-size:20px;font-weight:800;color:var(--sg3-navy);
  margin:32px 0 10px;padding-top:4px;
}
.sg3-prose h3{
  font-size:15px;font-weight:700;color:var(--sg3-navy);margin:20px 0 8px;
}
.sg3-prose p{
  font-size:14px;color:var(--sg3-muted);line-height:1.75;margin-bottom:14px;
}
.sg3-prose ul{
  margin:0 0 16px 20px;display:flex;flex-direction:column;gap:6px;
}
.sg3-prose ul li{font-size:14px;color:var(--sg3-muted);line-height:1.7}
.sg3-prose a{color:var(--sg3-navy);text-decoration:underline}
.sg3-note{
  background:rgba(14,43,92,.05);border-left:3px solid var(--sg3-navy);
  border-radius:0 8px 8px 0;padding:14px 18px;
  font-size:13px;color:var(--sg3-muted);line-height:1.6;margin-bottom:20px;
}
.sg3-note a{color:var(--sg3-navy)}
@media(max-width:768px){
  .sg3-legal-layout{flex-direction:column}
  .sg3-legal-toc{flex:none;width:100%;position:static}
}
