#movePad{
  position: fixed;
  left: 12px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  gap: 10px;
  pointer-events: none;
}

#movePad button{
  pointer-events: auto;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 18px;
  background: rgba(45, 106, 79, 0.72);
  color: #f7fff8;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(20, 50, 30, 0.25);
  backdrop-filter: blur(4px);
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
}

#movePad button:active,
#movePad button.is-held{
  background: rgba(64, 145, 108, 0.92);
  transform: translateY(1px);
}

@media (min-width: 900px){
  #movePad{ opacity: 0.55; }
}

#lives{
  letter-spacing: 1px;
}
