body {
  margin: 0;
  overflow: hidden;
  background-color: #020617;
  font-family: "Inter", sans-serif;
  user-select: none;
}

canvas {
  display: block;
  cursor: crosshair;
}

.hp-bar-container {
  width: 280px;
  height: 14px;
  background: rgba(30, 41, 59, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#player-hp-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  transition: width 0.3s ease;
}
