/* ============================================
   HUD.CSS - 🔤 fonte Minecraft grande/forte
   ============================================ */
#hud {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  pointer-events: none;
  z-index: 10;
}

#hud.hidden { display: none; }

.hud-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #141414d9;
  border: 3px solid #000;
  box-shadow: inset 3px 3px 0 rgba(255,255,255,.15), inset -3px -3px 0 rgba(0,0,0,.5);
  border-radius: 8px;
  padding: 14px 14px;
  min-height: 58px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;          /* 🔤 pixel font = parece bem maior */
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
}

#ui-money { color: #ffd93b; }
#ui-depth { color: #7ecbff; }

.hud-spacer { flex: 1; }

#btn-shop, #btn-cam, #btn-pause {
  pointer-events: auto;
  cursor: pointer;
  background: #2e7d32;
  box-shadow: inset 3px 3px 0 rgba(255,255,255,.25), inset -3px -3px 0 rgba(0,0,0,.4);
}

#btn-cam   { background: #37474f; min-width: 62px; }
#btn-pause { background: #6a4a8a; min-width: 62px; }
#btn-cam.free { background: #8a6a2a; }
#btn-shop  { flex: 1; font-size: 14px; letter-spacing: 1px; }

#btn-shop:active, #btn-cam:active, #btn-pause:active {
  transform: translateY(2px);
  box-shadow: inset 3px 3px 0 rgba(0,0,0,.4);
}