/* =========================================================
   ScanToWin V8 — GAME APP UI
   Final mobile-first visual layer. Loaded LAST.
   Does not alter backend/data behavior.
   ========================================================= */
:root{
  --g-navy:#061827;
  --g-navy-2:#0b2d50;
  --g-yellow:#ffb800;
  --g-yellow-2:#ffd25a;
  --g-blue:#2f80ed;
  --g-green:#19aa67;
  --g-purple:#7c3aed;
  --g-orange:#ff7a1a;
  --g-bg:#f4f7fb;
  --g-card:#ffffff;
  --g-line:#e3e9f1;
  --g-muted:#69778c;
  --g-shadow:0 14px 34px rgba(6,24,39,.08);
  --g-shadow-lg:0 24px 58px rgba(6,24,39,.13);
  --g-radius:22px;
  --g-nav-h:82px;
}
html,body{max-width:100%;overflow-x:hidden}
body.stw-v8{margin:0!important;background:linear-gradient(180deg,#f7faff 0,#f1f5fa 100%)!important;color:var(--g-navy)!important;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif!important}
body.stw-v8 *{box-sizing:border-box}
body.stw-v8 a{text-decoration:none}
body.stw-v8 .container{width:min(1120px,100%)!important;max-width:1120px!important;margin-inline:auto!important;padding-inline:18px!important}
body.stw-v8 .btn{min-height:50px!important;border-radius:15px!important;font-weight:900!important;letter-spacing:-.01em!important;box-shadow:none!important}
body.stw-v8 .btn-yellow{background:linear-gradient(180deg,var(--g-yellow-2),var(--g-yellow))!important;color:var(--g-navy)!important;border-color:#ffc62c!important;box-shadow:0 11px 23px rgba(255,184,0,.20)!important}
body.stw-v8 .btn-dark{background:linear-gradient(180deg,#0c355f,var(--g-navy))!important;color:#fff!important;border-color:transparent!important}
body.stw-v8 .btn-outline,body.stw-v8 .btn-glass{background:#fff!important;color:var(--g-navy)!important;border:1px solid var(--g-line)!important;box-shadow:none!important}
body.stw-v8 .eyebrow{color:#e6a000!important;font-size:11px!important;font-weight:1000!important;letter-spacing:.09em!important;text-transform:uppercase!important}

/* ---------- UNIQUE GAME NAV: no legacy .mobile-bottom conflicts ---------- */
.stw-game-nav{display:none}
@media(max-width:760px){
  body.stw-v8{padding-bottom:calc(var(--g-nav-h) + 18px + env(safe-area-inset-bottom))!important}
  .stw-game-nav{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr) 74px minmax(0,1fr) minmax(0,1fr)!important;
    align-items:end!important;
    position:fixed!important;
    inset:auto 10px calc(8px + env(safe-area-inset-bottom)) 10px!important;
    width:auto!important;max-width:none!important;height:76px!important;
    margin:0!important;padding:7px 7px 8px!important;
    transform:none!important;translate:none!important;
    overflow:visible!important;contain:none!important;
    z-index:2147483000!important;
    background:rgba(255,255,255,.97)!important;
    border:1px solid rgba(6,24,39,.08)!important;border-radius:25px!important;
    box-shadow:0 18px 45px rgba(6,24,39,.16)!important;
    backdrop-filter:blur(20px)!important;-webkit-backdrop-filter:blur(20px)!important;
  }
  .stw-game-nav-item{
    min-width:0!important;height:60px!important;padding:8px 2px 6px!important;
    display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:5px!important;
    color:var(--g-navy)!important;border-radius:17px!important;font-size:9.5px!important;font-weight:950!important;line-height:1!important;
    overflow:hidden!important;
  }
  .stw-game-nav-item .svg-icon{width:22px!important;height:22px!important;color:var(--g-navy)!important;flex:0 0 auto!important}
  .stw-game-nav-item span{display:block!important;width:100%!important;max-width:68px!important;text-align:center!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
  .stw-game-nav-item.is-active{background:#eff3f8!important}
  .stw-game-nav-action{
    width:72px!important;height:72px!important;place-self:end center!important;margin:0 0 10px!important;
    display:grid!important;place-items:center!important;position:relative!important;border-radius:25px!important;
    background:linear-gradient(180deg,#fff,#fff5cc)!important;border:5px solid #fff!important;
    box-shadow:0 13px 31px rgba(255,184,0,.34),0 5px 14px rgba(6,24,39,.10)!important;
    transform:none!important;
  }
  .stw-game-nav-action:before{content:"";position:absolute;inset:-7px;border:2px solid rgba(255,184,0,.30);border-radius:29px;pointer-events:none}
  .stw-game-nav-action-core{width:54px;height:54px;border-radius:19px;display:grid;place-items:center;background:linear-gradient(180deg,#ffca34,#ffb800)}
  .stw-game-nav-action img{display:block!important;width:43px!important;height:43px!important;object-fit:contain!important}
  .mobile-bottom.stw-mobile-nav{display:none!important}
}

/* ---------- TOP BAR ---------- */
body.stw-v8 .nav.v6-nav,body.stw-v8>.nav,body.stw-v8 .nav{
  height:auto!important;min-height:72px!important;position:sticky!important;top:0!important;left:auto!important;right:auto!important;
  z-index:1900!important;background:rgba(255,255,255,.96)!important;border:0!important;border-bottom:1px solid var(--g-line)!important;
  box-shadow:0 7px 22px rgba(6,24,39,.045)!important;backdrop-filter:blur(18px)!important;-webkit-backdrop-filter:blur(18px)!important;border-radius:0!important;
}
body.stw-v8 .nav-inner{min-height:72px!important;padding-top:9px!important;padding-bottom:9px!important;display:flex!important;align-items:center!important;gap:14px!important}
body.stw-v8 .logo{display:flex!important;align-items:center!important;gap:10px!important;color:var(--g-navy)!important;font-size:15px!important;line-height:.9!important;font-weight:1000!important}
body.stw-v8 .logo-mark{width:48px!important;height:48px!important;border-radius:16px!important;border:2px solid var(--g-navy)!important;background:#fff!important;box-shadow:none!important;display:grid!important;place-items:center!important}
body.stw-v8 .logo-mark img{width:33px!important;height:33px!important}
body.stw-v8 .logo span{color:var(--g-yellow)!important}
body.stw-v8 .lang-wrap{height:46px!important;min-width:64px!important;border:1px solid var(--g-line)!important;border-radius:15px!important;background:#fff!important;box-shadow:none!important;padding-inline:9px!important}
body.stw-v8 .lang-select{font-size:14px!important;font-weight:950!important;color:var(--g-navy)!important}
@media(max-width:760px){
  body.stw-v8.is-user>.nav{display:none!important}
  body.stw-v8.is-public .nav{min-height:70px!important}
  body.stw-v8.is-public .nav-inner{padding-inline:14px!important;min-height:70px!important}
  body.stw-v8.is-public .nav-links{display:none!important}
  body.stw-v8.is-public .nav-actions{margin-left:auto!important;display:flex!important;width:auto!important}
  body.stw-v8.is-public .nav-actions>a.btn{display:none!important}
  body.stw-v8.is-public .logo-mark{width:45px!important;height:45px!important}
  body.stw-v8.is-public .logo{font-size:14px!important}
  body.stw-v8 .footer{display:none!important}
  body.stw-v8 .stw-install-card,body.stw-v8 .stw-install-modal{display:none!important}
}

/* ---------- PUBLIC HOME: looks like game entry, not brochure ---------- */
body.stw-v8 .v6-public-home{padding:18px 0 105px!important;min-height:calc(100vh - 72px)!important;background:linear-gradient(145deg,#f0f8ff 0,#fbfdff 54%,#fff8e5 100%)!important}
body.stw-v8 .v6-public-hero{min-height:570px!important;gap:24px!important}
body.stw-v8 .v6-public-copy h1{color:var(--g-navy)!important;font-size:clamp(48px,5.2vw,68px)!important;line-height:.93!important;letter-spacing:-.055em!important}
body.stw-v8 .v6-public-copy p{color:var(--g-muted)!important}
body.stw-v8 .v6-public-kicker{box-shadow:none!important;border-color:var(--g-line)!important}
body.stw-v8 .v6-public-mascot-card{border:1px solid var(--g-line)!important;border-radius:30px!important;box-shadow:var(--g-shadow-lg)!important;background:linear-gradient(180deg,#fff,#f4f9ff)!important}
body.stw-v8 .v6-info-card{border-color:var(--g-line)!important;border-radius:21px!important;box-shadow:var(--g-shadow)!important}
@media(max-width:760px){
  body.stw-v8 .v6-public-home{padding:10px 0 96px!important}
  body.stw-v8 .v6-public-hero{display:flex!important;flex-direction:column-reverse!important;gap:12px!important;min-height:auto!important}
  body.stw-v8 .v6-public-mascot-card{width:100%!important;min-height:285px!important;border-radius:24px!important;padding:14px!important}
  body.stw-v8 .v6-public-mascot-card img{width:210px!important;max-height:230px!important}
  body.stw-v8 .v6-mascot-progress{left:14px!important;right:14px!important;bottom:12px!important;border-radius:14px!important;padding:10px 12px!important}
  body.stw-v8 .v6-public-copy{padding:4px 0 0!important}
  body.stw-v8 .v6-public-copy h1{font-size:38px!important;line-height:.96!important;margin:12px 0!important}
  body.stw-v8 .v6-public-copy p{font-size:14px!important;line-height:1.45!important;margin-bottom:16px!important}
  body.stw-v8 .v6-public-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important}
  body.stw-v8 .v6-public-actions .btn{height:50px!important;min-width:0!important;font-size:13px!important}
  body.stw-v8 .v6-game-links{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:7px!important;margin-top:10px!important}
  body.stw-v8 .v6-game-links a{min-width:0!important;min-height:68px!important;padding:9px 4px!important;flex-direction:column!important;justify-content:center!important;border-radius:17px!important;text-align:center!important;font-size:9px!important;box-shadow:none!important}
  body.stw-v8 .v6-game-links .svg-icon{width:20px!important;height:20px!important}
  body.stw-v8 .v6-public-info{display:none!important}
}

/* ---------- DASHBOARD: target screen 2 ---------- */
body.stw-v8.stw-v6-dashboard{background:linear-gradient(180deg,#f7faff,#f2f6fb)!important}
body.stw-v8 .v6-dashboard-shell{width:min(720px,100%)!important;margin:0 auto!important;padding:14px 16px 108px!important}
body.stw-v8 .v6-player-bar{border:1px solid var(--g-line)!important;border-radius:22px!important;padding:12px!important;box-shadow:var(--g-shadow)!important;background:#fff!important;margin-bottom:10px!important}
body.stw-v8 .v6-player-avatar{width:52px!important;height:52px!important;border-radius:17px!important;background:linear-gradient(180deg,#ffd35b,#ffb800)!important}
body.stw-v8 .v6-player-main b{font-size:17px!important;color:var(--g-navy)!important}
body.stw-v8 .v6-player-main small{color:var(--g-muted)!important}
body.stw-v8 .v6-level-track{height:5px!important;background:#e9eef4!important}
body.stw-v8 .v6-level-track i{background:linear-gradient(90deg,var(--g-yellow),var(--g-blue))!important}
body.stw-v8 .v6-player-actions{display:flex!important;gap:7px!important;align-items:center!important}
body.stw-v8 .v6-player-actions .round-btn{width:44px!important;height:44px!important;border:1px solid var(--g-line)!important;border-radius:14px!important;background:#fff!important;display:grid!important;place-items:center!important}
body.stw-v8 .v6-dashboard-stats{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important;margin-bottom:8px!important}
body.stw-v8 .v6-stat-card{min-height:92px!important;border:1px solid var(--g-line)!important;border-radius:19px!important;background:#fff!important;padding:13px!important;box-shadow:0 8px 20px rgba(6,24,39,.05)!important}
body.stw-v8 .v6-stat-card.coin{background:linear-gradient(180deg,#fffaf0,#fff)!important;border-color:#f5df9f!important}
body.stw-v8 .v6-stat-card small{font-size:10px!important;color:var(--g-muted)!important;font-weight:900!important;text-transform:uppercase!important}
body.stw-v8 .v6-stat-card strong{font-size:30px!important;color:var(--g-navy)!important}
body.stw-v8 .v6-stat-card.coin strong{color:#e8a500!important}
body.stw-v8 .v6-mission-card{border:1px solid var(--g-line)!important;border-radius:19px!important;background:#fff!important;padding:13px!important;box-shadow:none!important;margin-bottom:9px!important}
body.stw-v8 .v6-mission-progress{height:7px!important;background:#edf1f5!important}
body.stw-v8 .v6-mission-progress span{background:linear-gradient(90deg,var(--g-yellow),#ffcf43)!important}
body.stw-v8 .v6-play-card{grid-template-columns:76px minmax(0,1fr)!important;gap:13px!important;border:1px solid var(--g-line)!important;border-radius:21px!important;background:#fff!important;padding:12px!important;box-shadow:var(--g-shadow)!important;margin-bottom:9px!important}
body.stw-v8 .v6-play-thumb{width:76px!important;height:76px!important;border-radius:18px!important;background:linear-gradient(145deg,#fff3c6,#ffbf20)!important}
body.stw-v8 .v6-play-thumb img{width:58px!important;height:58px!important}
body.stw-v8 .v6-play-card h2{font-size:18px!important;margin:3px 0!important;color:var(--g-navy)!important}
body.stw-v8 .v6-play-card p{font-size:10.5px!important;color:var(--g-muted)!important;line-height:1.3!important;margin:0 0 8px!important;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
body.stw-v8 .v6-play-card .btn{height:43px!important;min-height:43px!important;font-size:12px!important;width:100%!important}
body.stw-v8 .v6-shortcuts{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:7px!important;margin:0 0 9px!important}
body.stw-v8 .v6-shortcut{min-height:72px!important;border:1px solid var(--g-line)!important;border-radius:18px!important;background:#fff!important;box-shadow:none!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:5px!important;padding:8px 3px!important}
body.stw-v8 .v6-shortcut .svg-icon{width:21px!important;height:21px!important;color:#e5a000!important}
body.stw-v8 .v6-shortcut b{font-size:9px!important;text-align:center!important;line-height:1.05!important}
body.stw-v8 .v6-section-card{border:1px solid var(--g-line)!important;border-radius:20px!important;background:#fff!important;box-shadow:var(--g-shadow)!important;padding:13px!important;margin-bottom:9px!important}
body.stw-v8 .v6-section-head h2{font-size:16px!important;margin:0!important;color:var(--g-navy)!important}
body.stw-v8 .v6-section-head a{font-size:10px!important;color:var(--g-blue)!important;font-weight:900!important}
body.stw-v8 .v6-rank-preview a{border-color:var(--g-line)!important;border-radius:14px!important;padding:9px!important}
body.stw-v8 .v6-rank-preview a.me{background:#fff8dc!important;border-color:#f5d475!important}
body.stw-v8 .v6-activity-item{padding:9px 0!important;border-bottom:1px solid #edf1f5!important}
body.stw-v8 .v6-activity-icon{width:36px!important;height:36px!important;border-radius:12px!important;background:var(--g-navy)!important;color:var(--g-yellow)!important}
body.stw-v8 .v6-code-card{background:linear-gradient(145deg,#071b2b,#0d3b5d)!important;border-radius:21px!important;padding:18px!important;box-shadow:var(--g-shadow)!important;margin-bottom:0!important}
body.stw-v8 .v6-code-card strong{font-size:36px!important;letter-spacing:.15em!important}
@media(max-width:760px){
  body.stw-v8 .v6-dashboard-shell{padding:10px 12px 102px!important}
  body.stw-v8 .v6-player-actions .lang-wrap{width:48px!important;min-width:48px!important;height:43px!important;padding:0 5px!important}
  body.stw-v8 .v6-player-actions .round-btn{width:43px!important;height:43px!important}
  body.stw-v8 .v6-section-card.v6-rank-preview{display:none!important}
}

/* ---------- APP PAGE SHELLS ---------- */
body.stw-v8 .v6-ranking-page,body.stw-v8 .v6-profile-page,body.stw-v8 .v6-store-page,body.stw-v8 .v6-hof-page,body.stw-v8 .v6-how-page,
body.stw-v8 .user-content-v242{min-height:100vh!important;background:linear-gradient(180deg,#f7faff,#f2f6fb)!important;padding:18px 0 108px!important}
body.stw-v8 .v6-ranking-shell,body.stw-v8 .v6-profile-shell,body.stw-v8 .v6-store-shell,body.stw-v8 .v6-hof-shell,body.stw-v8 .v6-how-shell,body.stw-v8 .user-page-container-v242{width:min(720px,100%)!important;margin:0 auto!important}

/* ranking */
body.stw-v8 .v6-ranking-header{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:22px!important;padding:18px!important;box-shadow:var(--g-shadow)!important;margin-bottom:12px!important}
body.stw-v8 .v6-ranking-header h1{font-size:28px!important;line-height:1!important;margin:5px 0 8px!important;color:var(--g-navy)!important}
body.stw-v8 .v6-ranking-header p{font-size:11px!important;line-height:1.4!important;color:var(--g-muted)!important;margin:0 0 12px!important}
body.stw-v8 .v6-rewards-line{display:flex!important;gap:6px!important;overflow:auto!important;padding-bottom:2px!important;scrollbar-width:none!important}
body.stw-v8 .v6-rewards-line::-webkit-scrollbar{display:none!important}
body.stw-v8 .v6-rewards-line span{flex:0 0 auto!important;background:#fff8df!important;border:1px solid #f2d783!important;border-radius:999px!important;padding:7px 10px!important;font-size:9px!important;color:var(--g-navy)!important}
body.stw-v8 .v6-podium{display:grid!important;grid-template-columns:1fr 1.15fr 1fr!important;gap:7px!important;align-items:end!important;margin:0 0 12px!important}
body.stw-v8 .v6-podium-card{min-height:145px!important;background:#fff!important;border:1px solid var(--g-line)!important;border-radius:19px!important;padding:12px 6px!important;box-shadow:none!important;text-align:center!important}
body.stw-v8 .v6-podium-card.first{min-height:170px!important;background:linear-gradient(180deg,#fff8d9,#fff)!important;border-color:#f2d16c!important;box-shadow:0 13px 28px rgba(255,184,0,.13)!important}
body.stw-v8 .v6-podium-medal{width:42px!important;height:42px!important;border-radius:13px!important;background:#f2f5f9!important;color:var(--g-navy)!important;margin:0 auto 8px!important}
body.stw-v8 .v6-podium-card.first .v6-podium-medal{background:linear-gradient(180deg,#ffd45e,#ffb800)!important}
body.stw-v8 .v6-podium-card h3{font-size:12px!important;margin:3px 0!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
body.stw-v8 .v6-podium-card strong{font-size:16px!important;color:var(--g-navy)!important}
body.stw-v8 .v6-podium-card small{font-size:8.5px!important;color:var(--g-muted)!important}
body.stw-v8 .v6-leader-list{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:21px!important;padding:8px!important;box-shadow:var(--g-shadow)!important}
body.stw-v8 .v6-leader-row{grid-template-columns:36px 36px minmax(0,1fr) auto!important;gap:7px!important;padding:8px!important;border:0!important;border-bottom:1px solid #edf1f5!important;border-radius:0!important;background:#fff!important}
body.stw-v8 .v6-leader-row:last-child{border-bottom:0!important}
body.stw-v8 .v6-place,body.stw-v8 .v6-user-avatar{width:34px!important;height:34px!important;border-radius:11px!important;display:grid!important;place-items:center!important;font-size:10px!important;font-weight:1000!important}
body.stw-v8 .v6-place{background:#f1f4f8!important}body.stw-v8 .v6-user-avatar{background:#fff1bd!important}
body.stw-v8 .v6-leader-copy b{font-size:11px!important}body.stw-v8 .v6-leader-copy small{font-size:8.5px!important;color:var(--g-muted)!important}
body.stw-v8 .v6-leader-points b{font-size:12px!important}body.stw-v8 .v6-leader-points small{font-size:8px!important;color:var(--g-muted)!important}

/* profile */
body.stw-v8 .v6-profile-head{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:22px!important;padding:14px!important;box-shadow:var(--g-shadow)!important;margin-bottom:8px!important;display:flex!important;align-items:center!important;gap:11px!important}
body.stw-v8 .v6-profile-head .avatar{width:54px!important;height:54px!important;border-radius:17px!important;background:linear-gradient(180deg,#ffd35b,#ffb800)!important;color:var(--g-navy)!important;font-size:20px!important}
body.stw-v8 .v6-profile-head h1{font-size:19px!important;margin:0 0 5px!important}
body.stw-v8 .v6-profile-stats{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:7px!important;margin-bottom:8px!important}
body.stw-v8 .v6-profile-stat{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:17px!important;padding:11px 5px!important;box-shadow:none!important;text-align:center!important}
body.stw-v8 .v6-profile-stat small{font-size:8.5px!important;color:var(--g-muted)!important;text-transform:uppercase!important;font-weight:900!important}
body.stw-v8 .v6-profile-stat strong{font-size:20px!important;color:var(--g-navy)!important}
body.stw-v8 .v6-profile-menu{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:21px!important;padding:5px 14px!important;box-shadow:var(--g-shadow)!important;margin-bottom:9px!important}
body.stw-v8 .v6-profile-menu a{min-height:48px!important;border-bottom:1px solid #edf1f5!important;display:grid!important;grid-template-columns:25px 1fr auto!important;gap:8px!important;align-items:center!important;color:var(--g-navy)!important;font-size:11px!important;font-weight:900!important}
body.stw-v8 .v6-profile-menu a:last-child{border-bottom:0!important}
body.stw-v8 .v6-profile-menu .svg-icon{width:17px!important;height:17px!important;color:#607086!important}
body.stw-v8 .v6-profile-account{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:21px!important;padding:15px!important;box-shadow:var(--g-shadow)!important;margin-bottom:9px!important}
body.stw-v8 .v6-profile-account h2{font-size:17px!important;margin:0 0 6px!important}
body.stw-v8 .v6-profile-account p{font-size:10px!important;color:var(--g-muted)!important}
body.stw-v8 .v6-profile-account label{font-size:10px!important;font-weight:900!important}
body.stw-v8 .v6-profile-account .input{min-height:46px!important;border-radius:14px!important;font-size:12px!important}
body.stw-v8 .v6-wallet-mini{border-radius:17px!important;background:linear-gradient(180deg,#fffaf0,#fff)!important;border:1px solid #f1dda3!important;padding:12px!important}

/* store */
body.stw-v8 .v6-store-head{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:22px!important;padding:16px!important;box-shadow:var(--g-shadow)!important;margin-bottom:9px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important}
body.stw-v8 .v6-store-head h1{font-size:24px!important;margin:3px 0!important}
body.stw-v8 .v6-store-balance{background:#fff8df!important;border:1px solid #f0d47b!important;border-radius:16px!important;padding:10px 13px!important;text-align:center!important}
body.stw-v8 .v6-store-balance small{font-size:8px!important;color:#826113!important}body.stw-v8 .v6-store-balance strong{font-size:21px!important;color:var(--g-navy)!important}
body.stw-v8 .v6-store-list{display:grid!important;gap:7px!important}
body.stw-v8 .v6-reward-item{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:19px!important;box-shadow:none!important;padding:11px!important}
body.stw-v8 .v6-reward-row{display:grid!important;grid-template-columns:50px minmax(0,1fr) auto!important;gap:9px!important;align-items:center!important}
body.stw-v8 .v6-reward-media{width:48px!important;height:48px!important;border-radius:13px!important;overflow:hidden!important}
body.stw-v8 .v6-reward-copy h2{font-size:12px!important;margin:0!important}body.stw-v8 .v6-reward-copy p{font-size:8.5px!important;color:var(--g-muted)!important;margin:2px 0!important}
body.stw-v8 .v6-reward-price{font-size:10px!important;font-weight:1000!important;white-space:nowrap!important}
body.stw-v8 .v6-reward-item .btn{height:42px!important;min-height:42px!important;font-size:10px!important;margin-top:8px!important;width:100%!important}
body.stw-v8 .v6-store-history{grid-template-columns:1fr!important;gap:8px!important}
body.stw-v8 .v6-history-card{border-radius:19px!important;border:1px solid var(--g-line)!important;box-shadow:none!important;padding:13px!important}

/* hall of fame / how / history */
body.stw-v8 .v6-hof-hero,body.stw-v8 .v6-how-hero{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:22px!important;box-shadow:var(--g-shadow)!important;padding:16px!important;margin-bottom:9px!important}
body.stw-v8 .v6-hof-hero h1,body.stw-v8 .v6-how-hero h1{font-size:25px!important;margin:4px 0!important;color:var(--g-navy)!important}
body.stw-v8 .v6-hof-hero p,body.stw-v8 .v6-how-hero p{font-size:10px!important;color:var(--g-muted)!important}
body.stw-v8 .v6-winner-month{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:20px!important;padding:13px!important;box-shadow:var(--g-shadow)!important;margin-bottom:8px!important}
body.stw-v8 .v6-winner-item{padding:9px 0!important;border-bottom:1px solid #edf1f5!important}
body.stw-v8 .v6-how-step,body.stw-v8 .v6-how-note{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:18px!important;box-shadow:none!important;padding:12px!important}
body.stw-v8 .v6-how-step .num{background:linear-gradient(180deg,#ffd35b,#ffb800)!important;color:var(--g-navy)!important}
body.stw-v8 .v6-activity-list .v6-activity-item{background:#fff!important}

/* ---------- COLLECTION: make legacy complex screen look like game collection ---------- */
body.stw-v8 .collection-page-v196{padding-top:0!important}
body.stw-v8 .collection-hero-v196{background:linear-gradient(145deg,#fff,#f6faff)!important;border:1px solid var(--g-line)!important;border-radius:22px!important;padding:16px!important;box-shadow:var(--g-shadow)!important;margin-bottom:8px!important}
body.stw-v8 .collection-hero-v196 h1{font-size:25px!important;margin:5px 0!important}
body.stw-v8 .collection-ring-v178{width:88px!important;height:88px!important}
body.stw-v8 .collection-overview-v196,body.stw-v8 .territory-wrap-v196,body.stw-v8 .special-collections-v196,body.stw-v8 .collection-library-v196{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:20px!important;box-shadow:var(--g-shadow)!important;padding:13px!important;margin-bottom:8px!important}
body.stw-v8 .rarity-progress-grid-v178{display:flex!important;gap:6px!important;overflow-x:auto!important;scrollbar-width:none!important}
body.stw-v8 .rarity-progress-chip{flex:0 0 112px!important;border-radius:16px!important;padding:10px!important;box-shadow:none!important}
body.stw-v8 .territory-grid-v196{display:grid!important;grid-template-columns:1fr 1fr!important;gap:7px!important}
body.stw-v8 .territory-card-v196{border-radius:17px!important;padding:10px!important}
body.stw-v8 .collection-tools-v196{display:grid!important;gap:7px!important}
body.stw-v8 .collection-search-v178{border-radius:15px!important}
body.stw-v8 .collection-filters-v196{display:flex!important;gap:5px!important;overflow:auto!important;scrollbar-width:none!important}
body.stw-v8 .collection-filters-v196 button{flex:0 0 auto!important;border-radius:999px!important;font-size:9px!important;padding:7px 10px!important}
body.stw-v8 .collection-grid-v196{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important}
body.stw-v8 .collection-card-v196,body.stw-v8 .collection-grid-v196>article{border-radius:17px!important;overflow:hidden!important;box-shadow:none!important}

/* ---------- MAP: target screen 3, compact game HUD ---------- */
body.map-body.stw-v8{padding-bottom:calc(var(--g-nav-h) + 14px + env(safe-area-inset-bottom))!important;background:linear-gradient(180deg,#f6f9fd,#eef3f8)!important}
body.map-body.stw-v8>.nav{display:flex!important}
body.map-body.stw-v8 .v8-map-hud{display:none}
body.map-body.stw-v8 .map-page{padding:12px 0 100px!important;height:auto!important;min-height:100vh!important;overflow:visible!important}
body.map-body.stw-v8 .map-hero{display:none!important}
body.map-body.stw-v8 .map-shell{display:block!important;height:auto!important;overflow:visible!important;padding-top:0!important;padding-bottom:0!important}
body.map-body.stw-v8 .map-toolbar-pro{display:grid!important;gap:8px!important;margin-bottom:8px!important;background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important}
body.map-body.stw-v8 .rarity-filters{display:flex!important;gap:6px!important;overflow:auto!important;scrollbar-width:none!important;padding:0 0 2px!important}
body.map-body.stw-v8 .rarity-filters::-webkit-scrollbar{display:none!important}
body.map-body.stw-v8 .rarity-filter{flex:0 0 auto!important;min-height:34px!important;border:1px solid var(--g-line)!important;border-radius:999px!important;background:#fff!important;padding:7px 10px!important;font-size:9px!important;font-weight:950!important;box-shadow:none!important;color:var(--g-navy)!important}
body.map-body.stw-v8 .rarity-filter.active{background:var(--g-navy)!important;color:#fff!important;border-color:var(--g-navy)!important}
body.map-body.stw-v8 .map-actions{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:6px!important}
body.map-body.stw-v8 .map-actions .btn{height:46px!important;min-height:46px!important;min-width:0!important;padding:4px 5px!important;border-radius:15px!important;font-size:9px!important;white-space:normal!important;line-height:1.05!important;gap:4px!important;box-shadow:none!important}
body.map-body.stw-v8 .map-actions .btn .svg-icon{width:17px!important;height:17px!important;flex:0 0 auto!important}
body.map-body.stw-v8 .map-action-secondary{display:none!important}
body.map-body.stw-v8 .map-actions.show-secondary .map-action-secondary{display:inline-flex!important}
body.map-body.stw-v8 .map-actions.show-secondary{grid-template-columns:repeat(3,minmax(0,1fr))!important}
body.map-body.stw-v8 .map-actions .map-more-btn{grid-column:auto!important}
body.map-body.stw-v8 .stw-map-stage{position:relative!important;height:58vh!important;min-height:390px!important;border:5px solid #fff!important;border-radius:25px!important;overflow:hidden!important;box-shadow:var(--g-shadow-lg)!important;background:#d9eef6!important}
body.map-body.stw-v8 #stwMap{width:100%!important;height:100%!important;min-height:100%!important;border:0!important;border-radius:20px!important;box-shadow:none!important;background:#d9eef6!important}
body.map-body.stw-v8 .map-live-status{position:absolute!important;z-index:700!important;top:10px!important;left:10px!important;right:auto!important;max-width:calc(100% - 20px)!important;margin:0!important;border:1px solid #f1dd9e!important;border-radius:999px!important;background:rgba(255,255,255,.96)!important;padding:8px 11px!important;font-size:9px!important;color:var(--g-navy)!important;box-shadow:0 8px 20px rgba(6,24,39,.08)!important}
body.map-body.stw-v8 .map-area-reload{top:50px!important;font-size:9px!important;padding:8px 11px!important;border-radius:999px!important}
body.map-body.stw-v8 .map-mobile-scan-cta{display:block!important;position:relative!important;left:auto!important;right:auto!important;bottom:auto!important;margin:-68px 14px 13px!important;padding:0!important;z-index:880!important;background:transparent!important;border:0!important;box-shadow:none!important}
body.map-body.stw-v8 #mapPrimaryScanBtn{width:100%!important;height:60px!important;min-height:60px!important;border-radius:19px!important;padding:7px 14px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;box-shadow:0 16px 30px rgba(255,184,0,.30)!important}
body.map-body.stw-v8 .scan-cta-icon{width:42px!important;height:42px!important;flex:0 0 42px!important;border-radius:14px!important;background:var(--g-navy)!important;color:var(--g-yellow)!important;display:grid!important;place-items:center!important}
body.map-body.stw-v8 .scan-cta-icon .svg-icon{width:21px!important;height:21px!important}
body.map-body.stw-v8 .scan-cta-copy{min-width:0!important;flex:1!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important;text-align:left!important}
body.map-body.stw-v8 .scan-cta-copy b{font-size:16px!important;color:var(--g-navy)!important;line-height:1!important}
body.map-body.stw-v8 .scan-cta-copy small{display:block!important;font-size:8.5px!important;color:#6d531b!important;margin-top:4px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;max-width:100%!important}
body.map-body.stw-v8 .scan-cta-arrow{font-size:25px!important;color:var(--g-navy)!important}
body.map-body.stw-v8 .map-list{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:21px!important;padding:13px!important;box-shadow:var(--g-shadow)!important;margin-top:0!important}
body.map-body.stw-v8 .map-point-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important}
body.map-body.stw-v8 .map-point-card{border:1px solid var(--g-line)!important;border-radius:16px!important;padding:9px!important;display:grid!important;grid-template-columns:40px 1fr!important;gap:8px!important;box-shadow:none!important;background:#fff!important}
body.map-body.stw-v8 .point-badge{width:38px!important;height:38px!important;border-radius:12px!important;background:#f2f6fb!important}
body.map-body.stw-v8 .map-point-card strong{font-size:10px!important}body.map-body.stw-v8 .map-point-card small{font-size:7.5px!important;color:var(--g-muted)!important}
body.map-body.stw-v8 .map-point-sheet,body.map-body.stw-v8 .map-scan-dock{left:8px!important;right:8px!important;bottom:calc(88px + env(safe-area-inset-bottom))!important;width:auto!important;border-radius:25px!important;max-height:72vh!important;box-shadow:0 -20px 50px rgba(6,24,39,.18)!important}
body.map-body.stw-v8 .sheet-cover{height:150px!important;border-radius:21px 21px 0 0!important}
body.map-body.stw-v8 .sheet-body{padding:13px!important}body.map-body.stw-v8 .sheet-body h2{font-size:20px!important}
body.map-body.stw-v8 .sheet-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:7px!important}body.map-body.stw-v8 .sheet-actions .btn{min-height:46px!important;height:46px!important;font-size:10px!important}
body.map-body.stw-v8 #sheetDirections{grid-column:span 2!important}
body.map-body.stw-v8 .leaflet-control-attribution{font-size:7px!important}
@media(max-width:760px){
  body.map-body.stw-v8>.nav{display:none!important}
  body.map-body.stw-v8 .map-page{padding:9px 0 98px!important}
  body.map-body.stw-v8 .map-shell{padding-inline:10px!important}
  body.map-body.stw-v8 .v8-map-hud{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:8px!important;margin-bottom:8px!important}
  .v8-map-brand{display:flex!important;align-items:center!important;gap:7px!important;color:var(--g-navy)!important;font-size:11px!important;font-weight:1000!important;line-height:.95!important}
  .v8-map-brand img{width:39px!important;height:39px!important;padding:5px!important;border-radius:13px!important;background:#fff!important;border:1px solid var(--g-line)!important}
  .v8-map-brand b{display:block!important;color:var(--g-yellow)!important}
  .v8-map-hud-right{display:flex!important;align-items:center!important;gap:6px!important}
  .v8-map-wallet{height:40px!important;display:flex!important;align-items:center!important;gap:5px!important;padding:4px 8px!important;border-radius:13px!important;background:#fff!important;border:1px solid var(--g-line)!important;color:var(--g-navy)!important;font-size:11px!important;font-weight:1000!important}
  .v8-map-wallet img{width:27px!important;height:27px!important;object-fit:contain!important}
  .v8-map-hud .lang-wrap{height:40px!important;min-width:49px!important;width:49px!important;padding:0 5px!important;border-radius:13px!important}
  body.map-body.stw-v8 .stw-map-stage{height:54vh!important;min-height:350px!important}
  body.map-body.stw-v8 .map-list{display:none!important}
  body.map-body.stw-v8 .map-actions{grid-template-columns:repeat(4,minmax(0,1fr))!important}
  body.map-body.stw-v8 .map-actions .btn{font-size:8px!important;height:44px!important;min-height:44px!important}
  body.map-body.stw-v8 .sheet-actions{grid-template-columns:1fr!important}body.map-body.stw-v8 #sheetDirections{grid-column:auto!important;order:3!important}
}

/* ---------- CHECK-IN ---------- */
body.stw-v8.stw-v6-checkin{background:linear-gradient(180deg,#f7faff,#f1f5fa)!important}
body.stw-v8 .scan-page{min-height:100vh!important;padding:13px 14px 105px!important}
body.stw-v8 .scan-language-floating{max-width:640px!important;margin:0 auto 7px!important;position:static!important;display:flex!important;justify-content:flex-end!important}
body.stw-v8 .scan-app-card{max-width:640px!important;min-height:0!important;margin:0 auto!important;padding:18px!important;border:1px solid var(--g-line)!important;border-radius:23px!important;background:#fff!important;box-shadow:var(--g-shadow-lg)!important;display:block!important;text-align:center!important}
body.stw-v8 .scan-orb{width:66px!important;height:66px!important;border-radius:20px!important;background:linear-gradient(180deg,#ffd35b,#ffb800)!important;margin:10px auto!important}
body.stw-v8 .scan-app-card h1{font-size:24px!important;margin:9px 0 6px!important}body.stw-v8 .scan-app-card>p{font-size:11px!important;color:var(--g-muted)!important;line-height:1.4!important}
body.stw-v8 .scan-main-btn{width:100%!important;height:52px!important;min-height:52px!important}
body.stw-v8 #result{margin-top:10px!important}
body.stw-v8 .scan-place-card{border:1px solid var(--g-line)!important;border-radius:17px!important;box-shadow:none!important;padding:9px!important;text-align:left!important}
body.stw-v8 .discovery-card,body.stw-v8 .riddle-card{border:1px solid var(--g-line)!important;border-radius:20px!important;box-shadow:var(--g-shadow)!important}

/* ---------- SECONDARY USER PAGES ---------- */
body.stw-v8 .phone-dashboard,body.stw-v8 .messages-phone,body.stw-v8 .daily-page-phone,body.stw-v8 .referrals-phone{width:100%!important;max-width:720px!important;margin:0 auto!important;padding:0!important;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;overflow:visible!important}
body.stw-v8 .messages-hero,body.stw-v8 .daily-hero-card,body.stw-v8 .referral-hero,body.stw-v8 .property-info-banner{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:21px!important;padding:14px!important;box-shadow:var(--g-shadow)!important;margin-bottom:8px!important}
body.stw-v8 .chat-window,body.stw-v8 .chat-compose,body.stw-v8 .referral-list,body.stw-v8 .property-stats,body.stw-v8 .property-card{border-color:var(--g-line)!important;border-radius:19px!important;box-shadow:var(--g-shadow)!important}

/* ---------- BUSINESS ---------- */
body.stw-v8 .business-hero{background:linear-gradient(145deg,#eef7ff,#fff8e5)!important;color:var(--g-navy)!important}
body.stw-v8 .business-hero-grid{min-height:420px!important}
body.stw-v8 .business-hero h1{color:var(--g-navy)!important;font-size:48px!important;letter-spacing:-.05em!important}
body.stw-v8 .business-hero p{color:var(--g-muted)!important}
body.stw-v8 .business-demo-card,body.stw-v8 .benefit-card,body.stw-v8 .pricing-card{border:1px solid var(--g-line)!important;border-radius:22px!important;box-shadow:var(--g-shadow)!important;background:#fff!important}
body.stw-v8.stw-v6-business .business-main-v200{padding-bottom:105px!important}
@media(max-width:760px){
  body.stw-v8 .business-hero{padding:15px 0!important}.business-hero-grid{grid-template-columns:1fr!important;min-height:0!important}.business-hero h1{font-size:34px!important}.business-demo-card{padding:15px!important}.business-pricing-grid-v200{grid-template-columns:1fr!important}.benefit-grid{grid-template-columns:1fr 1fr!important;gap:8px!important}.benefit-card{padding:13px!important}.benefit-card h3{font-size:13px!important}.benefit-card p{font-size:9px!important}
}

/* ---------- AUTH ---------- */
body.stw-v8 .premium-auth-page{padding:20px 0 105px!important;background:linear-gradient(145deg,#eef7ff,#fff9e8)!important}
body.stw-v8 .premium-auth-card{background:#fff!important;border:1px solid var(--g-line)!important;border-radius:23px!important;box-shadow:var(--g-shadow-lg)!important;padding:20px!important}
body.stw-v8 .premium-input-wrap{border:1px solid var(--g-line)!important;border-radius:14px!important;background:#fff!important}
body.stw-v8 .premium-submit{height:50px!important}

/* ---------- SMALL MOBILE FINE TUNING ---------- */
@media(max-width:390px){
  :root{--g-nav-h:78px}
  .stw-game-nav{grid-template-columns:minmax(0,1fr) minmax(0,1fr) 66px minmax(0,1fr) minmax(0,1fr)!important;inset:auto 7px calc(7px + env(safe-area-inset-bottom)) 7px!important;height:72px!important;padding-inline:5px!important}
  .stw-game-nav-action{width:64px!important;height:64px!important;border-radius:22px!important;margin-bottom:10px!important}.stw-game-nav-action-core{width:48px!important;height:48px!important;border-radius:17px!important}.stw-game-nav-action img{width:39px!important;height:39px!important}
  .stw-game-nav-item{font-size:8.5px!important;padding-inline:1px!important}.stw-game-nav-item .svg-icon{width:20px!important;height:20px!important}.stw-game-nav-item span{max-width:55px!important}
  body.stw-v8 .v6-dashboard-shell{padding-inline:9px!important}
  body.stw-v8 .v6-play-card{grid-template-columns:66px 1fr!important}.v6-play-thumb{width:66px!important;height:66px!important}
  body.map-body.stw-v8 .map-shell{padding-inline:8px!important}.v8-map-brand span{font-size:10px!important}.v8-map-wallet{padding-inline:6px!important}
  body.map-body.stw-v8 .map-actions .btn{font-size:7.5px!important;padding-inline:2px!important}
  body.stw-v8 .v6-podium-card{min-height:135px!important}.v6-podium-card.first{min-height:157px!important}
}

/* mascot avatar */
body.stw-v8 .v8-mascot-avatar{overflow:hidden!important;background:linear-gradient(180deg,#fff5cf,#ffbf22)!important;padding:0!important}
body.stw-v8 .v8-mascot-avatar img{width:58px!important;height:58px!important;object-fit:cover!important;object-position:50% 45%!important;transform:scale(1.15)!important}


/* =========================================================
   V9 mobile polish — nav, profile scale and map hierarchy
   ========================================================= */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%}
body.stw-v8{-webkit-text-size-adjust:100%!important;text-size-adjust:100%!important}

@media(max-width:760px){
  :root{--g-nav-h:86px}
  body.stw-v8{padding-bottom:calc(96px + env(safe-area-inset-bottom))!important}

  /* Bottom game navigation: larger icons, no selected square. */
  .stw-game-nav{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr) 82px minmax(0,1fr) minmax(0,1fr)!important;
    left:10px!important;right:10px!important;bottom:calc(9px + env(safe-area-inset-bottom))!important;
    width:auto!important;height:82px!important;padding:8px 6px 9px!important;
    align-items:end!important;border-radius:27px!important;
    background:rgba(255,255,255,.97)!important;
    box-shadow:0 18px 46px rgba(6,24,39,.16)!important;
    overflow:visible!important;
  }
  .stw-game-nav-item{
    position:relative!important;height:64px!important;min-width:0!important;
    padding:8px 2px 7px!important;gap:6px!important;border-radius:0!important;
    background:transparent!important;font-size:10.5px!important;font-weight:950!important;
    overflow:visible!important;transition:color .18s ease,transform .18s ease!important;
  }
  .stw-game-nav-item .svg-icon{width:28px!important;height:28px!important;color:var(--g-navy)!important}
  .stw-game-nav-item span{max-width:76px!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
  .stw-game-nav-item.is-active{background:transparent!important;color:var(--g-navy)!important}
  .stw-game-nav-item.is-active .svg-icon{color:var(--g-yellow)!important;transform:translateY(-1px)!important}
  .stw-game-nav-item.is-active:after{
    content:""!important;position:absolute!important;left:50%!important;bottom:1px!important;
    width:22px!important;height:3px!important;border-radius:999px!important;background:var(--g-yellow)!important;
    transform:translateX(-50%)!important;
  }
  .stw-game-nav-action{
    width:80px!important;height:80px!important;margin:0 0 12px!important;border-radius:27px!important;
    background:#fff!important;border:4px solid #fff!important;
    box-shadow:0 16px 36px rgba(255,184,0,.30),0 5px 16px rgba(6,24,39,.10)!important;
  }
  .stw-game-nav-action:before{inset:-6px!important;border:3px solid rgba(255,184,0,.48)!important;border-radius:31px!important}
  .stw-game-nav-action-core{width:62px!important;height:62px!important;border-radius:21px!important;background:linear-gradient(180deg,#fff,#fff8df)!important;border:2px solid #ffc928!important}
  .stw-game-nav-action img{width:50px!important;height:50px!important}
  .stw-game-nav-action.is-active:after{
    content:"";position:absolute;left:50%;bottom:-8px;width:26px;height:3px;border-radius:999px;background:var(--g-yellow);transform:translateX(-50%);
  }

  /* Profile: keep the whole screen at app scale and prevent legacy giant coin rules. */
  body.stw-v8 .v6-profile-page{padding:10px 0 102px!important}
  body.stw-v8 .v6-profile-shell{width:100%!important;max-width:600px!important;padding-inline:12px!important}
  body.stw-v8 .v6-profile-head{padding:12px!important;border-radius:20px!important;margin-bottom:7px!important}
  body.stw-v8 .v6-profile-head .avatar{width:50px!important;height:50px!important;border-radius:16px!important;font-size:18px!important}
  body.stw-v8 .v6-profile-head h1{font-size:18px!important}
  body.stw-v8 .v6-profile-level span{font-size:9px!important}
  body.stw-v8 .v6-profile-stats{gap:6px!important;margin-bottom:7px!important}
  body.stw-v8 .v6-profile-stat{padding:9px 4px!important;border-radius:16px!important}
  body.stw-v8 .v6-profile-stat small{font-size:8px!important}
  body.stw-v8 .v6-profile-stat strong{font-size:18px!important}
  body.stw-v8 .v6-profile-menu{padding:4px 12px!important;border-radius:19px!important;margin-bottom:7px!important}
  body.stw-v8 .v6-profile-menu a{min-height:45px!important;font-size:10.5px!important;grid-template-columns:24px 1fr auto!important}
  body.stw-v8 .v6-profile-menu .svg-icon{width:16px!important;height:16px!important}
  body.stw-v8 .v6-profile-account{padding:13px!important;border-radius:19px!important;margin-bottom:7px!important;overflow:hidden!important}
  body.stw-v8 .v6-profile-account h2{font-size:16px!important}
  body.stw-v8 .v6-profile-account p{font-size:9.5px!important;margin-bottom:10px!important}
  body.stw-v8 .v6-profile-account .input{min-height:43px!important;height:43px!important;font-size:12px!important}
  body.stw-v8 .v6-wallet-mini{padding:11px 12px!important;border-radius:16px!important;min-height:72px!important;overflow:hidden!important}
  body.stw-v8 .v6-wallet-mini strong{font-size:24px!important}
  body.stw-v8 .v6-wallet-mini img,
  body.stw-v8 .v6-profile-page img.scan-coin-badge,
  body.stw-v8 .v6-profile-page img.v9-profile-coin{width:52px!important;height:52px!important;max-width:52px!important;max-height:52px!important;position:static!important;transform:none!important;object-fit:contain!important}
  body.stw-v8 .v6-wallet-actions{gap:7px!important;margin-top:7px!important;grid-template-columns:1fr 1fr!important}
  body.stw-v8 .v6-wallet-actions .btn{height:44px!important;min-height:44px!important;font-size:10px!important}

  /* Map: fewer controls before the map, larger map, secondary tools in Options. */
  body.map-body.stw-v8 .map-page{padding:8px 0 100px!important}
  body.map-body.stw-v8 .map-shell{padding:0 10px!important;gap:8px!important}
  body.map-body.stw-v8 .v8-map-hud{margin-bottom:8px!important}
  body.map-body.stw-v8 .rarity-filters{gap:7px!important;padding:1px 0 7px!important}
  body.map-body.stw-v8 .rarity-filter{height:38px!important;min-height:38px!important;padding:0 12px!important;font-size:10px!important;border-radius:999px!important}
  body.map-body.stw-v8 .map-actions{
    display:grid!important;grid-template-columns:1.12fr 1fr .78fr!important;gap:7px!important;margin-bottom:2px!important;
  }
  body.map-body.stw-v8 .map-actions .btn{height:48px!important;min-height:48px!important;border-radius:17px!important;font-size:9.5px!important;padding:0 8px!important;line-height:1.05!important}
  body.map-body.stw-v8 .map-actions .btn .svg-icon{width:18px!important;height:18px!important}
  body.map-body.stw-v8 #locateBtn{grid-column:1!important}
  body.map-body.stw-v8 #locateScanBtn{grid-column:2!important}
  body.map-body.stw-v8 #mapMoreBtn{display:inline-flex!important;grid-column:3!important}
  body.map-body.stw-v8 .map-action-secondary,
  body.map-body.stw-v8 #scanStatusBtn{display:none!important}
  body.map-body.stw-v8 .map-actions.show-secondary{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  body.map-body.stw-v8 .map-actions.show-secondary #locateBtn,
  body.map-body.stw-v8 .map-actions.show-secondary #locateScanBtn{grid-column:auto!important}
  body.map-body.stw-v8 .map-actions.show-secondary #mapMoreBtn{grid-column:1/-1!important;order:10!important}
  body.map-body.stw-v8 .map-actions.show-secondary .map-action-secondary,
  body.map-body.stw-v8 .map-actions.show-secondary #scanStatusBtn{display:inline-flex!important}
  body.map-body.stw-v8 .stw-map-stage{height:60vh!important;min-height:430px!important;max-height:650px!important;border-radius:27px!important}
  body.map-body.stw-v8 #stwMap{height:100%!important;min-height:100%!important;border-radius:27px!important;border-width:5px!important}
  body.map-body.stw-v8 .map-live-status{left:10px!important;right:10px!important;top:10px!important;width:auto!important;max-width:none!important;font-size:9.5px!important}
  body.map-body.stw-v8 .map-mobile-scan-cta{position:relative!important;margin:-76px 13px 10px!important;z-index:900!important}
  body.map-body.stw-v8 #mapPrimaryScanBtn{height:64px!important;min-height:64px!important;border-radius:21px!important;padding:0 15px!important}
  body.map-body.stw-v8 .scan-cta-icon{width:45px!important;height:45px!important;flex:0 0 45px!important;border-radius:16px!important}
  body.map-body.stw-v8 .scan-cta-copy b{font-size:16px!important}
  body.map-body.stw-v8 .scan-cta-copy small{font-size:9px!important}
  body.map-body.stw-v8 .scan-cta-arrow{font-size:24px!important}
  body.map-body.stw-v8 .map-point-sheet,body.map-body.stw-v8 .map-scan-dock{bottom:calc(96px + env(safe-area-inset-bottom))!important}
}

@media(max-width:390px){
  .stw-game-nav{grid-template-columns:minmax(0,1fr) minmax(0,1fr) 76px minmax(0,1fr) minmax(0,1fr)!important;height:78px!important;left:7px!important;right:7px!important;padding-inline:3px!important}
  .stw-game-nav-item{font-size:9.5px!important;padding-inline:0!important}.stw-game-nav-item .svg-icon{width:25px!important;height:25px!important}.stw-game-nav-item span{max-width:62px!important}
  .stw-game-nav-action{width:74px!important;height:74px!important;margin-bottom:10px!important}.stw-game-nav-action-core{width:56px!important;height:56px!important}.stw-game-nav-action img{width:45px!important;height:45px!important}
  body.map-body.stw-v8 .map-actions .btn{font-size:8.5px!important;padding-inline:4px!important}
  body.map-body.stw-v8 .stw-map-stage{min-height:390px!important}
}

/* =========================================================
   V10 final mobile comfort polish
   Larger app navigation, readable store/profile, visible map check-in.
   ========================================================= */
@media(max-width:760px){
  :root{--g-nav-h:96px}
  body.stw-v8{padding-bottom:calc(112px + env(safe-area-inset-bottom))!important}

  /* APP BOTTOM BAR — proper native-app proportions */
  .stw-game-nav{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr) 88px minmax(0,1fr) minmax(0,1fr)!important;
    left:12px!important;right:12px!important;bottom:calc(10px + env(safe-area-inset-bottom))!important;
    width:auto!important;height:94px!important;
    padding:9px 8px 10px!important;
    align-items:center!important;
    border-radius:30px!important;
    background:rgba(255,255,255,.985)!important;
    border:1px solid rgba(6,24,39,.075)!important;
    box-shadow:0 18px 48px rgba(6,24,39,.18)!important;
    overflow:visible!important;
  }
  .stw-game-nav-item{
    height:74px!important;min-width:0!important;
    padding:7px 2px 6px!important;gap:7px!important;
    display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;
    overflow:visible!important;background:transparent!important;border-radius:20px!important;
    color:var(--g-navy)!important;font-size:12px!important;font-weight:950!important;line-height:1!important;
  }
  .stw-game-nav-item .svg-icon{
    display:flex!important;width:30px!important;height:30px!important;min-width:30px!important;min-height:30px!important;
    color:var(--g-navy)!important;flex:0 0 30px!important;
  }
  .stw-game-nav-item .svg-icon svg{width:30px!important;height:30px!important;display:block!important}
  .stw-game-nav-item span{
    display:block!important;width:100%!important;max-width:84px!important;
    text-align:center!important;font-size:12px!important;line-height:1!important;
    white-space:nowrap!important;overflow:visible!important;text-overflow:clip!important;
  }
  .stw-game-nav-item.is-active{background:transparent!important;color:var(--g-navy)!important}
  .stw-game-nav-item.is-active .svg-icon{color:var(--g-yellow)!important;transform:none!important}
  .stw-game-nav-item.is-active:after{
    bottom:2px!important;width:25px!important;height:4px!important;border-radius:999px!important;background:var(--g-yellow)!important;
  }
  .stw-game-nav-action{
    width:84px!important;height:84px!important;margin:0 0 6px!important;place-self:center!important;
    border-radius:29px!important;background:#fff!important;border:5px solid #fff!important;
    box-shadow:0 17px 38px rgba(255,184,0,.32),0 7px 18px rgba(6,24,39,.11)!important;
  }
  .stw-game-nav-action:before{inset:-6px!important;border:3px solid rgba(255,184,0,.43)!important;border-radius:33px!important}
  .stw-game-nav-action-core{width:66px!important;height:66px!important;border-radius:23px!important;background:linear-gradient(180deg,#fff,#fff8df)!important;border:2px solid #ffc928!important}
  .stw-game-nav-action img{width:53px!important;height:53px!important;display:block!important}
  .stw-game-nav-action.is-active:after{bottom:-8px!important;width:28px!important;height:4px!important}

  /* STORE — larger, easier to scan and tap */
  body.stw-v8 .v6-store-page{padding:14px 0 120px!important}
  body.stw-v8 .v6-store-shell{width:100%!important;max-width:650px!important;padding-inline:14px!important}
  body.stw-v8 .v6-store-head{
    padding:22px!important;border-radius:26px!important;margin-bottom:14px!important;gap:16px!important;
    align-items:center!important;
  }
  body.stw-v8 .v6-store-head h1{font-size:32px!important;line-height:1.02!important;margin:5px 0 8px!important;letter-spacing:-.035em!important}
  body.stw-v8 .v6-store-head p{font-size:14px!important;line-height:1.35!important;color:var(--g-muted)!important}
  body.stw-v8 .v6-store-balance{min-width:100px!important;padding:14px 16px!important;border-radius:20px!important}
  body.stw-v8 .v6-store-balance small{font-size:10.5px!important;line-height:1.1!important}
  body.stw-v8 .v6-store-balance strong{font-size:30px!important;line-height:1.05!important;margin-top:4px!important}
  body.stw-v8 .v6-store-list{gap:14px!important}
  body.stw-v8 .v6-reward-item{padding:17px!important;border-radius:24px!important;box-shadow:0 12px 28px rgba(6,24,39,.055)!important}
  body.stw-v8 .v6-reward-row{grid-template-columns:68px minmax(0,1fr) auto!important;gap:14px!important;align-items:center!important}
  body.stw-v8 .v6-reward-media{width:66px!important;height:66px!important;border-radius:18px!important;display:grid!important;place-items:center!important;background:#f7f9fc!important}
  body.stw-v8 .v6-reward-media img{max-width:58px!important;max-height:58px!important;object-fit:contain!important}
  body.stw-v8 .v6-reward-copy h2{font-size:17px!important;line-height:1.15!important;margin:0 0 5px!important;letter-spacing:-.015em!important}
  body.stw-v8 .v6-reward-copy p{font-size:13px!important;line-height:1.35!important;margin:0!important;color:var(--g-muted)!important}
  body.stw-v8 .v6-reward-price{font-size:15px!important;font-weight:1000!important;color:#d99a00!important}
  body.stw-v8 .v6-reward-item details{margin-top:12px!important}
  body.stw-v8 .v6-reward-item details>summary.btn{height:54px!important;min-height:54px!important;border-radius:18px!important;font-size:14px!important;margin-top:0!important;padding:0 14px!important}
  body.stw-v8 .v6-store-history{gap:12px!important;margin-top:15px!important}
  body.stw-v8 .v6-history-card{padding:17px!important;border-radius:22px!important}
  body.stw-v8 .v6-history-card h2{font-size:20px!important;margin:0 0 10px!important}
  body.stw-v8 .v6-history-card .row{padding:11px 0!important}
  body.stw-v8 .v6-history-card .row b{font-size:13px!important}.v6-history-card .row small{font-size:11px!important}

  /* PROFILE — comfortable tap targets like the dashboard */
  body.stw-v8 .v6-profile-page{padding:14px 0 120px!important}
  body.stw-v8 .v6-profile-shell{max-width:650px!important;padding-inline:14px!important}
  body.stw-v8 .v6-profile-head{padding:18px!important;border-radius:25px!important;margin-bottom:12px!important;gap:14px!important}
  body.stw-v8 .v6-profile-head .avatar{width:66px!important;height:66px!important;border-radius:20px!important;font-size:24px!important;flex:0 0 66px!important}
  body.stw-v8 .v6-profile-head h1{font-size:25px!important;line-height:1.05!important;margin:0 0 8px!important}
  body.stw-v8 .v6-profile-level{gap:8px!important}.v6-profile-level span{font-size:11px!important;font-weight:900!important}
  body.stw-v8 .v6-profile-stats{gap:10px!important;margin-bottom:12px!important}
  body.stw-v8 .v6-profile-stat{min-height:96px!important;padding:14px 7px!important;border-radius:21px!important;display:flex!important;flex-direction:column!important;justify-content:center!important}
  body.stw-v8 .v6-profile-stat small{font-size:10.5px!important;line-height:1.15!important}
  body.stw-v8 .v6-profile-stat strong{font-size:28px!important;line-height:1.05!important;margin-top:7px!important}
  body.stw-v8 .v6-profile-menu{padding:4px 18px!important;border-radius:25px!important;margin-bottom:12px!important}
  body.stw-v8 .v6-profile-menu a{min-height:66px!important;font-size:15px!important;grid-template-columns:30px 1fr auto!important;gap:13px!important}
  body.stw-v8 .v6-profile-menu .svg-icon{width:22px!important;height:22px!important;color:#607086!important}
  body.stw-v8 .v6-profile-menu .svg-icon svg{width:22px!important;height:22px!important}
  body.stw-v8 .v6-profile-menu a>b{font-size:24px!important;color:#9aa7b7!important}
  body.stw-v8 .v6-profile-account{padding:19px!important;border-radius:24px!important;margin-bottom:12px!important}
  body.stw-v8 .v6-profile-account h2{font-size:22px!important;margin:0 0 8px!important}
  body.stw-v8 .v6-profile-account p{font-size:13px!important;line-height:1.4!important;margin:0 0 13px!important}
  body.stw-v8 .v6-profile-account label{font-size:13px!important}
  body.stw-v8 .v6-profile-account .input{height:54px!important;min-height:54px!important;border-radius:17px!important;font-size:15px!important;padding-inline:16px!important}
  body.stw-v8 .v6-profile-account .btn{height:52px!important;min-height:52px!important;font-size:14px!important}
  body.stw-v8 .v6-wallet-mini{min-height:92px!important;padding:15px 16px!important;border-radius:20px!important;align-items:center!important}
  body.stw-v8 .v6-wallet-mini span{font-size:12px!important;font-weight:900!important;color:var(--g-muted)!important}
  body.stw-v8 .v6-wallet-mini strong{font-size:31px!important;margin-top:3px!important}
  body.stw-v8 .v6-wallet-mini img,body.stw-v8 .v6-profile-page img.scan-coin-badge,body.stw-v8 .v6-profile-page img.v9-profile-coin{width:62px!important;height:62px!important;max-width:62px!important;max-height:62px!important}
  body.stw-v8 .v6-wallet-actions{gap:10px!important;margin-top:10px!important}.v6-wallet-actions .btn{font-size:13px!important}

  /* MAP — make Check-in impossible to miss and keep it above the bottom bar */
  body.map-body.stw-v8{padding-bottom:calc(112px + env(safe-area-inset-bottom))!important}
  body.map-body.stw-v8 .map-page{padding:8px 0 118px!important}
  body.map-body.stw-v8 .map-shell{padding:0 10px!important;gap:9px!important}
  body.map-body.stw-v8 .map-actions .btn{height:50px!important;min-height:50px!important;font-size:10px!important;border-radius:18px!important}
  body.map-body.stw-v8 .stw-map-stage{height:62vh!important;min-height:465px!important;max-height:690px!important;border-radius:29px!important;overflow:hidden!important}
  body.map-body.stw-v8 #stwMap{height:100%!important;min-height:100%!important;border-radius:29px!important}
  body.map-body.stw-v8 .map-live-status{top:11px!important;left:12px!important;right:12px!important;font-size:10.5px!important;padding:11px 13px!important}
  body.map-body.stw-v8 .map-mobile-scan-cta{
    position:relative!important;left:auto!important;right:auto!important;bottom:auto!important;
    margin:-138px 15px 34px!important;padding:0!important;z-index:1800!important;
    pointer-events:auto!important;
  }
  body.map-body.stw-v8 #mapPrimaryScanBtn{
    height:74px!important;min-height:74px!important;border-radius:24px!important;padding:0 18px!important;
    box-shadow:0 20px 38px rgba(255,184,0,.40),0 9px 18px rgba(6,24,39,.13)!important;
    border:1px solid rgba(196,135,0,.16)!important;
  }
  body.map-body.stw-v8 .scan-cta-icon{width:52px!important;height:52px!important;flex:0 0 52px!important;border-radius:18px!important}
  body.map-body.stw-v8 .scan-cta-icon .svg-icon{width:26px!important;height:26px!important}.scan-cta-icon .svg-icon svg{width:26px!important;height:26px!important}
  body.map-body.stw-v8 .scan-cta-copy b{font-size:19px!important;line-height:1.05!important}
  body.map-body.stw-v8 .scan-cta-copy small{font-size:11px!important;margin-top:5px!important}
  body.map-body.stw-v8 .scan-cta-arrow{font-size:28px!important}
  body.map-body.stw-v8 .map-point-sheet,body.map-body.stw-v8 .map-scan-dock{bottom:calc(112px + env(safe-area-inset-bottom))!important}
}

@media(max-width:390px){
  .stw-game-nav{grid-template-columns:minmax(0,1fr) minmax(0,1fr) 82px minmax(0,1fr) minmax(0,1fr)!important;left:7px!important;right:7px!important;height:90px!important;padding-inline:4px!important}
  .stw-game-nav-item{height:70px!important;font-size:11px!important;gap:6px!important}.stw-game-nav-item .svg-icon,.stw-game-nav-item .svg-icon svg{width:28px!important;height:28px!important}.stw-game-nav-item span{font-size:11px!important;max-width:70px!important}
  .stw-game-nav-action{width:80px!important;height:80px!important;margin-bottom:5px!important}.stw-game-nav-action-core{width:62px!important;height:62px!important}.stw-game-nav-action img{width:50px!important;height:50px!important}
  body.stw-v8 .v6-store-head{padding:18px!important}.v6-store-head h1{font-size:29px!important}.v6-store-balance{min-width:88px!important;padding:12px!important}
  body.stw-v8 .v6-reward-row{grid-template-columns:58px minmax(0,1fr) auto!important;gap:10px!important}.v6-reward-media{width:56px!important;height:56px!important}.v6-reward-copy h2{font-size:15.5px!important}.v6-reward-copy p{font-size:11.5px!important}.v6-reward-price{font-size:13px!important}
  body.stw-v8 .v6-profile-head .avatar{width:60px!important;height:60px!important;flex-basis:60px!important}.v6-profile-head h1{font-size:22px!important}.v6-profile-menu a{min-height:62px!important;font-size:14px!important}
  body.map-body.stw-v8 .stw-map-stage{min-height:445px!important}.map-mobile-scan-cta{margin:-132px 12px 31px!important}
}

/* =============================================================
   ScanToWin V12 — desktop map cleanup
   Keep the mobile game HUD untouched; desktop gets a clean control deck.
   ============================================================= */
@media(min-width:761px){
  body.map-body.stw-v8{background:linear-gradient(180deg,#f2f7fb 0%,#edf3f8 100%)!important}
  body.map-body.stw-v8 .map-page{padding:22px 0 70px!important}
  body.map-body.stw-v8 .map-shell{
    width:min(1180px,calc(100% - 64px))!important;
    max-width:1180px!important;
    margin:0 auto!important;
    padding:0!important;
  }
  body.map-body.stw-v8 .map-toolbar-pro{
    display:grid!important;
    gap:13px!important;
    margin:0 0 16px!important;
    padding:15px!important;
    border:1px solid #dfe7ef!important;
    border-radius:24px!important;
    background:rgba(255,255,255,.94)!important;
    box-shadow:0 14px 38px rgba(6,24,39,.07)!important;
  }
  body.map-body.stw-v8 .rarity-filters{
    display:flex!important;
    flex-wrap:wrap!important;
    gap:8px!important;
    overflow:visible!important;
    padding:0!important;
  }
  body.map-body.stw-v8 .rarity-filter{
    min-height:40px!important;
    height:40px!important;
    padding:0 14px!important;
    border-radius:999px!important;
    font-size:12px!important;
    line-height:1!important;
    box-shadow:none!important;
  }
  body.map-body.stw-v8 .rarity-filter .rf-dot{width:18px!important;height:18px!important}

  body.map-body.stw-v8 .map-actions{
    display:grid!important;
    grid-template-columns:1.15fr 1fr .82fr!important;
    gap:10px!important;
    margin:0!important;
  }
  body.map-body.stw-v8 .map-actions .btn{
    height:52px!important;
    min-height:52px!important;
    padding:0 16px!important;
    border-radius:17px!important;
    font-size:13px!important;
    line-height:1.1!important;
    white-space:nowrap!important;
    box-shadow:none!important;
  }
  body.map-body.stw-v8 .map-actions .btn .svg-icon{width:19px!important;height:19px!important}
  body.map-body.stw-v8 #locateBtn{display:inline-flex!important;grid-column:1!important;order:1!important}
  body.map-body.stw-v8 #locateScanBtn{display:inline-flex!important;grid-column:2!important;order:2!important}
  body.map-body.stw-v8 #mapMoreBtn{display:inline-flex!important;grid-column:3!important;order:3!important}
  body.map-body.stw-v8 #scanStatusBtn,
  body.map-body.stw-v8 #mapScanBtn,
  body.map-body.stw-v8 #nearbyNotifyBtn,
  body.map-body.stw-v8 #toggleTodayDone{display:none!important}

  body.map-body.stw-v8 .map-actions.show-secondary{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
  }
  body.map-body.stw-v8 .map-actions.show-secondary #locateBtn{grid-column:1/3!important;order:1!important}
  body.map-body.stw-v8 .map-actions.show-secondary #locateScanBtn{grid-column:3!important;order:2!important}
  body.map-body.stw-v8 .map-actions.show-secondary #mapMoreBtn{grid-column:4!important;order:3!important}
  body.map-body.stw-v8 .map-actions.show-secondary #scanStatusBtn{display:inline-flex!important;grid-column:1!important;order:4!important}
  body.map-body.stw-v8 .map-actions.show-secondary #mapScanBtn{display:inline-flex!important;grid-column:2!important;order:5!important}
  body.map-body.stw-v8 .map-actions.show-secondary #nearbyNotifyBtn{display:inline-flex!important;grid-column:3!important;order:6!important}
  body.map-body.stw-v8 .map-actions.show-secondary #toggleTodayDone{display:inline-flex!important;grid-column:4!important;order:7!important}
  body.map-body.stw-v8 .map-actions.show-secondary #mapMoreBtn.active{background:#061827!important;color:#fff!important;border-color:#061827!important}

  body.map-body.stw-v8 .stw-map-stage{
    height:620px!important;
    min-height:620px!important;
    max-height:620px!important;
    border:6px solid #fff!important;
    border-radius:30px!important;
    box-shadow:0 22px 60px rgba(6,24,39,.13)!important;
  }
  body.map-body.stw-v8 #stwMap{height:100%!important;min-height:100%!important;border-radius:24px!important}
  body.map-body.stw-v8 .map-live-status{
    top:14px!important;left:14px!important;right:auto!important;
    width:auto!important;max-width:430px!important;
    padding:10px 14px!important;
    border-radius:999px!important;
    font-size:12px!important;
    box-shadow:0 10px 26px rgba(6,24,39,.10)!important;
  }
  body.map-body.stw-v8 .map-area-reload{top:58px!important;font-size:12px!important}
  body.map-body.stw-v8 .map-mobile-scan-cta{
    position:relative!important;
    margin:-88px 18px 18px!important;
    z-index:900!important;
  }
  body.map-body.stw-v8 #mapPrimaryScanBtn{
    height:70px!important;min-height:70px!important;
    padding:0 18px!important;border-radius:22px!important;
  }
  body.map-body.stw-v8 .scan-cta-icon{width:50px!important;height:50px!important;flex:0 0 50px!important;border-radius:16px!important}
  body.map-body.stw-v8 .scan-cta-copy b{font-size:19px!important}
  body.map-body.stw-v8 .scan-cta-copy small{font-size:11px!important}
  body.map-body.stw-v8 .scan-cta-arrow{font-size:28px!important}
  body.map-body.stw-v8 .map-list{
    margin-top:10px!important;padding:20px!important;border-radius:25px!important;
  }
  body.map-body.stw-v8 .map-list-head h2{font-size:25px!important}
  body.map-body.stw-v8 .map-list-head p{font-size:13px!important}
  body.map-body.stw-v8 .map-point-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:10px!important}
  body.map-body.stw-v8 .map-point-card{grid-template-columns:48px 1fr!important;padding:12px!important;gap:10px!important;border-radius:18px!important}
  body.map-body.stw-v8 .point-badge{width:46px!important;height:46px!important}
  body.map-body.stw-v8 .map-point-card strong{font-size:13px!important}
  body.map-body.stw-v8 .map-point-card small{font-size:10px!important}
}
