/* ============================================
   BASE.CSS - 🔤 FONTE MINECART (Press Start 2P)
   grande e forte em tudo + ícones SVG alinhados
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  /* 🔤 fonte pixel estilo Minecraft */
  font-family: 'Press Start 2P', 'Courier New', monospace;
}

#game {
  position: fixed;
  inset: 0;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.screen-title {
  color: #ffd93b;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 14px;
  margin: 4px 0 6px;
  text-shadow: 2px 2px 0 #000;
}

/* ÍCONES SVG profissionais alinhados */
.ico {
  width: 20px;
  height: 20px;
  display: block;
  flex: none;
  filter: drop-shadow(1px 1px 0 rgba(0,0,0,.55));
}
.ico.big  { width: 24px; height: 24px; }
.ico.mini {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
}

.menu-btn, .hud-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.shop-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pick-sel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.mine-item, .pick-row, .pick-card { align-items: center; }

.shop-list, #pick-list, .menu-panel, .overlay-panel {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}