/* ============================================================
   ASTRO CREW — shared styles (landing + game)
   ============================================================ */
:root {
  --bg: #05070f;
  --bg2: #0b1026;
  --panel: #0e1430;
  --line: #1d2a55;
  --text: #eaf0ff;
  --dim: #8b97c4;
  --accent: #7dfcff;       /* cyan */
  --accent2: #d06bff;      /* violet */
  --gold: #ffd23d;
  --danger: #ff5d6a;
  --success: #69e05a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, .btn, .logo-word, .chip { font-family: 'Orbitron', 'Space Grotesk', sans-serif; }
a { color: var(--accent); text-decoration: none; }
.hidden { display: none !important; }
.dim { color: var(--dim); }
.tiny { font-size: 12px; }
.danger { color: var(--danger); }
.success { color: var(--success); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #4ba8ff);
  color: #041018;
  border: none;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 12px 26px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(125, 252, 255, .35); }
.btn.big { display: block; width: 100%; margin: 10px 0; padding: 15px; font-size: 16px; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--accent); box-shadow: none; }
.btn.glow { box-shadow: 0 0 24px rgba(125, 252, 255, .45); }

.chip {
  border: 1px solid var(--line);
  background: rgba(14, 20, 48, .8);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
}

.logo-word { font-size: 42px; font-weight: 900; letter-spacing: 3px; }
.logo-word span { color: var(--accent); }

/* ============================================================
   GAME
   ============================================================ */
.game-body { overflow: hidden; }
#game-canvas { position: fixed; inset: 0; width: 100%; height: 100%; display: block; }

#vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 5;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, .55);
  transition: box-shadow .15s;
}
#vignette.hurt { box-shadow: inset 0 0 160px rgba(255, 40, 60, .75); }

#toast {
  position: fixed; top: 84px; left: 50%; transform: translateX(-50%) translateY(-12px);
  background: rgba(10, 14, 34, .92); border: 1px solid var(--line);
  padding: 10px 22px; border-radius: 10px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: all .25s; z-index: 40;
  max-width: 90vw; text-align: center;
}
#toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* HUD */
#hud { position: fixed; inset: 0; pointer-events: none; z-index: 10; }
.hud-top { display: flex; justify-content: space-between; align-items: flex-start; padding: 16px 20px; }
.hud-planet { font-family: 'Orbitron'; font-weight: 700; letter-spacing: 2px; font-size: 15px; color: var(--accent); text-shadow: 0 0 12px rgba(125,252,255,.6); margin-bottom: 8px; }
.hp-wrap { width: 240px; height: 14px; background: rgba(0,0,0,.55); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.hp-fill { height: 100%; width: 100%; background: linear-gradient(90deg, #ff5d6a, #ffd23d, #69e05a); transition: width .2s; }
.hud-stats { display: flex; gap: 16px; margin-top: 8px; font-size: 14px; }
.hud-stats span { background: rgba(10,14,34,.7); border: 1px solid var(--line); padding: 4px 12px; border-radius: 8px; }
.hud-hint {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(10,14,34,.8); border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 10px; font-size: 13px; color: var(--dim);
  max-width: 92vw; text-align: center;
}
#boss-wrap { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); width: min(560px, 80vw); text-align: center; }
#boss-name { font-family: 'Orbitron'; font-weight: 900; color: var(--accent2); letter-spacing: 3px; margin-bottom: 6px; text-shadow: 0 0 14px rgba(208,107,255,.8); }
.boss-bar-wrap { height: 16px; background: rgba(0,0,0,.6); border: 1px solid var(--accent2); border-radius: 8px; overflow: hidden; }
.boss-bar-fill { height: 100%; width: 100%; background: linear-gradient(90deg, var(--accent2), #ff5d6a); transition: width .2s; }

/* overlays */
.overlay {
  position: fixed; inset: 0; z-index: 30;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 6, 16, .82);
  backdrop-filter: blur(4px);
}
.overlay.transparent { background: transparent; pointer-events: none; align-items: flex-end; backdrop-filter: none; }
.panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 38px 44px; width: min(440px, 92vw); text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.panel h2 { letter-spacing: 2px; margin-bottom: 14px; }
.panel p { margin: 10px 0 18px; line-height: 1.5; }

.load-wrap { height: 10px; background: rgba(0,0,0,.5); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; margin: 26px 0 12px; }
.load-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent2)); transition: width .15s; }

/* character select */
.select-bottom { width: 100%; padding: 0 20px 26px; text-align: center; pointer-events: auto; }
.select-title { letter-spacing: 3px; margin-bottom: 14px; text-shadow: 0 2px 18px rgba(0,0,0,.9); }
.select-cards { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.sel-card {
  --c: var(--accent);
  background: rgba(14, 20, 48, .9); border: 2px solid var(--line); border-radius: 14px;
  padding: 14px 18px; width: 210px; cursor: pointer; text-align: left; transition: all .15s;
}
.sel-card b { display: block; font-family: 'Orbitron'; font-size: 13px; letter-spacing: 1px; color: var(--c); margin-bottom: 5px; }
.sel-card span { font-size: 12px; color: var(--dim); }
.sel-card:hover { transform: translateY(-3px); }
.sel-card.active { border-color: var(--c); box-shadow: 0 0 22px color-mix(in srgb, var(--c) 50%, transparent); }
.select-bottom .btn { width: auto; display: inline-block; }

/* galaxy ui */
#galaxy-ui { position: fixed; inset: 0; z-index: 10; pointer-events: none; }
.galaxy-head { padding: 18px 24px; }
.galaxy-head h2 { letter-spacing: 4px; color: var(--accent); text-shadow: 0 0 14px rgba(125,252,255,.6); }
.galaxy-list {
  position: fixed; right: 14px; top: 90px; bottom: 14px; width: 300px; overflow-y: auto;
  pointer-events: auto; display: flex; flex-direction: column; gap: 8px; padding-right: 4px;
}
.gal-item {
  background: rgba(14,20,48,.88); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; cursor: pointer; transition: all .12s;
}
.gal-item b { display: block; font-family: 'Orbitron'; font-size: 12px; letter-spacing: 1px; }
.gal-item span { font-size: 11px; color: var(--dim); }
.gal-item:hover { border-color: var(--accent); }
.gal-item.locked { opacity: .45; cursor: not-allowed; }
.gal-item.cleared { border-color: rgba(105,224,90,.5); }
.gal-item.cleared b::after { content: ' ✓'; color: var(--success); }

/* ============================================================
   LANDING
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: linear-gradient(rgba(5,7,15,.92), rgba(5,7,15,.65) 80%, transparent);
}
.nav .logo-word { font-size: 20px; }
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-right a.social { color: var(--dim); font-size: 13px; letter-spacing: 1px; }
.nav-right a.social:hover { color: var(--accent); }

.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: flex-end; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 0 6vw 7vh; pointer-events: none;
}
.hero-content > * { pointer-events: auto; }
.hero-title { font-size: clamp(44px, 8vw, 96px); font-weight: 900; letter-spacing: 4px; line-height: .95; text-shadow: 0 4px 40px rgba(0,0,0,.8); }
.hero-title span { color: var(--accent); text-shadow: 0 0 34px rgba(125,252,255,.55); }
.hero-tag { color: var(--dim); font-size: clamp(14px, 2vw, 19px); margin: 16px 0 26px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.countdown { display: flex; gap: 10px; margin-top: 26px; }
.cd-box { background: rgba(14,20,48,.85); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; text-align: center; min-width: 74px; }
.cd-box b { display: block; font-family: 'Orbitron'; font-size: 26px; color: var(--accent); }
.cd-box i { font-style: normal; font-size: 10px; letter-spacing: 2px; color: var(--dim); }

section { padding: 90px 6vw; max-width: 1200px; margin: 0 auto; }
.sec-title { font-size: clamp(26px, 4vw, 40px); letter-spacing: 3px; margin-bottom: 10px; }
.sec-title span { color: var(--accent); }
.sec-sub { color: var(--dim); margin-bottom: 42px; max-width: 640px; }

.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; transition: transform .15s, border-color .15s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card h3 { font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; color: var(--accent); }
.card p { font-size: 14px; color: var(--dim); line-height: 1.55; }
.card .emoji { font-size: 30px; display: block; margin-bottom: 12px; }

.crew-card { text-align: center; }
.crew-card .crew-ava { font-size: 44px; }
.crew-card h3 { margin-top: 10px; }

.planet-strip { display: flex; gap: 10px; flex-wrap: wrap; }
.planet-pill {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  font-size: 13px; color: var(--dim); background: rgba(14,20,48,.6);
}
.planet-pill b { color: var(--text); font-family: 'Orbitron'; font-size: 11px; letter-spacing: 1px; }

.token-box {
  background: linear-gradient(135deg, rgba(125,252,255,.08), rgba(208,107,255,.08));
  border: 1px solid var(--line); border-radius: 20px; padding: 40px; text-align: center;
}
.token-box .ticker { font-family: 'Orbitron'; font-size: clamp(34px, 6vw, 60px); font-weight: 900; color: var(--gold); text-shadow: 0 0 30px rgba(255,210,61,.4); }
.ca-chip {
  display: inline-block; margin: 18px 0; padding: 10px 22px; border-radius: 10px;
  border: 1px dashed var(--line); color: var(--dim); font-family: monospace; font-size: 14px;
  cursor: pointer;
}
.ca-chip:hover { border-color: var(--accent); color: var(--text); }

footer { border-top: 1px solid var(--line); padding: 30px 6vw; text-align: center; color: var(--dim); font-size: 13px; }

@media (max-width: 700px) {
  .galaxy-list { width: 230px; top: 110px; }
  .hp-wrap { width: 170px; }
  .nav-right a.social { display: none; }
}

/* ============================================================
   ASTROPOWER additions
   ============================================================ */
.hud-objective {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(10,14,34,.85); border: 1px solid var(--line);
  padding: 8px 20px; border-radius: 10px;
  font-family: 'Orbitron'; font-size: 13px; letter-spacing: 1px; color: var(--gold);
  max-width: 80vw; text-align: center;
}
#boss-wrap { top: 62px; }

.overlay.dialog { background: rgba(4, 6, 16, .55); }
.gm-panel { width: min(560px, 94vw); text-align: left; }
.gm-head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.gm-ava { font-size: 42px; background: rgba(255,210,61,.12); border: 1px solid rgba(255,210,61,.4); border-radius: 14px; padding: 6px 10px; }
.gm-name { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 4px; }
.gm-story { color: var(--text); line-height: 1.6; font-size: 15px; }
.gm-obj { color: var(--accent); font-family: 'Orbitron'; font-size: 13px; letter-spacing: 1px; }
.gm-shop { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.shop-btn { margin: 0 !important; padding: 10px !important; font-size: 12px !important; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.shop-btn em { font-style: normal; color: var(--gold); }

.travel-ui {
  position: fixed; inset: auto 0 12vh 0; z-index: 20; text-align: center; pointer-events: none;
}
.travel-ui h2 { font-size: clamp(22px, 4vw, 36px); letter-spacing: 3px; color: var(--accent); text-shadow: 0 0 24px rgba(125,252,255,.6); }
.travel-ui p { margin-top: 8px; }

.ending-panel { width: min(560px, 94vw); }
.ending-panel .btn { text-align: center; text-decoration: none; }

@media (max-width: 700px) {
  .gm-shop { grid-template-columns: 1fr; }
  .hud-objective { font-size: 11px; top: 60px; }
  #boss-wrap { top: 100px; }
}

/* cutscene (teaser) */
.cutscene { position: fixed; inset: 0; z-index: 25; pointer-events: none; }
.cut-bar { position: absolute; left: 0; right: 0; height: 11vh; background: #000; }
.cut-bar.top { top: 0; }
.cut-bar.bottom { bottom: 0; }
.cut-text { position: absolute; bottom: 13vh; left: 0; right: 0; text-align: center; }
.cut-text h2 { font-size: clamp(24px, 4.5vw, 42px); letter-spacing: 4px; color: var(--gold); text-shadow: 0 0 26px rgba(255,210,61,.5); }
.cut-text p { margin-top: 8px; font-size: 15px; }
.cut-skip { position: absolute; top: calc(11vh + 14px); right: 18px; pointer-events: auto; padding: 8px 16px; font-size: 12px; }

/* MMO: chat, online chip, leaderboard, name input */
.online-chip { cursor: pointer; color: var(--success); }
.online-chip.off { color: var(--dim); }
.chat-log {
  position: fixed; left: 16px; bottom: 64px; z-index: 12; max-width: 360px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.chat-log.on { opacity: 1; }
.chat-line {
  background: rgba(8,12,30,.82); border: 1px solid var(--line); border-radius: 8px;
  padding: 5px 10px; font-size: 13px; color: var(--text);
}
.chat-line b { color: var(--accent); font-weight: 600; }
.chat-line.mine b { color: var(--gold); }
.chat-wrap { position: fixed; left: 16px; bottom: 18px; z-index: 13; width: min(360px, 80vw); }
#chat-input {
  width: 100%; padding: 10px 14px; border-radius: 10px;
  border: 1px solid var(--accent); background: rgba(8,12,30,.95); color: var(--text);
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; outline: none;
}
.name-input {
  display: block; width: 100%; margin: 6px 0 14px; padding: 12px 14px;
  border-radius: 10px; border: 1px solid var(--line); background: rgba(5,8,20,.9);
  color: var(--text); font-family: 'Orbitron', sans-serif; font-size: 13px;
  letter-spacing: 1px; text-align: center; outline: none;
}
.name-input:focus { border-color: var(--accent); }
.board-list { max-height: 46vh; overflow-y: auto; margin: 14px 0; text-align: left; }
.board-row {
  display: flex; justify-content: space-between; padding: 8px 12px;
  border-bottom: 1px solid var(--line); font-size: 14px;
}
.board-row b { color: var(--gold); }
.board-row:first-child span { color: var(--gold); }

/* ============================================================
   ASTROPOWER WORLD (MMO) — Kintara-style layout
   ============================================================ */
.mmo-topleft { position: fixed; top: 14px; left: 14px; z-index: 12; display: flex; gap: 8px; align-items: center; }
.mmo-topcenter { position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 12; text-align: center; }
.big-chip { font-size: 14px; padding: 8px 18px; }
.zone-banner { margin-top: 6px; font-family: 'Orbitron'; font-size: 13px; letter-spacing: 3px; color: var(--accent); text-shadow: 0 0 12px rgba(125,252,255,.6); }
.mmo-topright { position: fixed; top: 14px; right: 14px; z-index: 12; }
#minimap { border-radius: 50%; border: 2px solid var(--line); background: rgba(7,10,24,.8); }

.mmo-sidebar { position: fixed; right: 14px; top: 186px; z-index: 12; display: flex; flex-direction: column; gap: 8px; }
.round-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(14,20,48,.9); border: 1px solid var(--line); color: var(--text);
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .12s;
}
.round-btn:hover { border-color: var(--accent); transform: scale(1.08); }

.mmo-chat { position: fixed; left: 14px; bottom: 14px; z-index: 12; width: min(330px, 76vw); }
.chat-tabs { display: flex; gap: 4px; margin-bottom: 4px; }
.chat-tab {
  background: rgba(14,20,48,.85); border: 1px solid var(--line); color: var(--dim);
  border-radius: 8px 8px 0 0; padding: 4px 14px; font-size: 12px; cursor: pointer;
  font-family: 'Orbitron';
}
.chat-tab.active { color: var(--accent); border-color: var(--accent); }
.mmo-chat .chat-log {
  position: static; max-width: none; height: 130px; overflow-y: auto;
  background: rgba(8,12,30,.72); border: 1px solid var(--line); border-radius: 0 10px 0 0;
  padding: 6px; margin: 0;
}
.mmo-chat #chat-input { border-radius: 0 0 10px 10px; border-top: none; }

.mmo-bottombar { position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 12; text-align: center; }
.bar-row { display: flex; gap: 10px; align-items: center; justify-content: center; margin-bottom: 5px; }
.hp-wrap.slim { width: 190px; height: 12px; }
.chip.gold { color: var(--gold); }
.xp-wrap { height: 5px; background: rgba(0,0,0,.55); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
#xp-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent2)); transition: width .3s; }
.hotbar { display: flex; gap: 6px; justify-content: center; }
.hb-slot {
  width: 52px; height: 52px; border-radius: 12px; position: relative;
  background: rgba(14,20,48,.9); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  cursor: default;
}
.hb-slot i { position: absolute; top: 2px; left: 6px; font-style: normal; font-size: 10px; color: var(--dim); font-family: 'Orbitron'; }
.hb-slot.active { border-color: var(--gold); box-shadow: 0 0 14px rgba(255,210,61,.4); }
.hb-slot .cd {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(4,6,16,.72); border-radius: 10px; font-style: normal;
  color: var(--accent); font-family: 'Orbitron'; font-size: 16px;
}

.interact-hint {
  position: fixed; bottom: 118px; left: 50%; transform: translateX(-50%); z-index: 12;
  background: rgba(10,14,34,.9); border: 1px solid var(--gold); color: var(--gold);
  border-radius: 10px; padding: 7px 18px; font-family: 'Orbitron'; font-size: 13px; letter-spacing: 1px;
}

.mmo-panel {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 30;
  width: min(560px, 94vw); max-height: 76vh; display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 90px rgba(0,0,0,.7);
}
.mmo-panel-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.mmo-panel-head h3 { font-size: 15px; letter-spacing: 2px; }
.mmo-panel-body { padding: 12px 18px 18px; overflow-y: auto; }
.mmo-panel-body h4 { color: var(--accent); font-size: 12px; letter-spacing: 2px; margin: 14px 0 6px; }
.item-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 8px 4px; border-bottom: 1px solid rgba(29,42,85,.5); font-size: 14px;
}
.item-row i.dim { font-style: normal; font-size: 12px; }
.item-row.locked { opacity: .45; }
.mini-btn {
  background: rgba(125,252,255,.12); border: 1px solid var(--line); color: var(--text);
  border-radius: 8px; padding: 5px 9px; font-size: 12px; cursor: pointer; font-family: 'Orbitron';
  text-decoration: none; display: inline-block;
}
.mini-btn:hover { border-color: var(--accent); }
.mini-btn.wide { padding: 6px 14px; white-space: nowrap; }
.mini-btn.glowb { border-color: var(--gold); color: var(--gold); }
.assign-row { display: inline-flex; gap: 3px; }
.mini-bar { height: 5px; width: 180px; background: rgba(0,0,0,.5); border-radius: 3px; margin-top: 5px; overflow: hidden; }
.mini-bar div { height: 100%; background: var(--accent); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-grid > div { background: rgba(8,12,30,.6); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; }
.stat-grid i { display: block; font-style: normal; font-size: 10px; letter-spacing: 2px; color: var(--dim); font-family: 'Orbitron'; }
.stat-grid b { font-size: 16px; }

@media (max-width: 760px) {
  .mmo-chat { width: 240px; }
  .mmo-chat .chat-log { height: 90px; }
  .hb-slot { width: 42px; height: 42px; font-size: 19px; }
  #minimap { width: 110px; height: 110px; }
}

/* MMO fix: hud container must not swallow clicks, but its widgets must receive them */
#hud { pointer-events: none; }
#hud .mmo-topleft, #hud .mmo-topcenter, #hud .mmo-topright, #hud .mmo-sidebar,
#hud .mmo-chat, #hud .mmo-bottombar, #hud .interact-hint { pointer-events: auto; }

/* hover tooltips on round buttons */
.round-btn { position: relative; }
.round-btn:hover::after {
  content: attr(title);
  position: absolute; right: 110%; top: 50%; transform: translateY(-50%);
  background: rgba(8,12,30,.95); border: 1px solid var(--accent); color: var(--text);
  padding: 5px 12px; border-radius: 8px; font-size: 12px; font-family: 'Space Grotesk';
  white-space: nowrap; z-index: 60; pointer-events: none;
}
.mmo-topleft .round-btn:hover::after { right: auto; left: 110%; }
.hb-slot { pointer-events: auto; cursor: pointer; }

/* nav social icon buttons */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--dim); background: rgba(14,20,48,.6);
  transition: all .12s;
}
.icon-btn:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
@media (max-width: 700px) { .nav-right a.social { display: inline-flex; } }
