.stat-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  pointer-events: none;
  z-index: 50;
  white-space: nowrap;
}

#health-bar {
  bottom: 82px;
  flex-direction: row;
}

#food-bar {
  bottom: 66px;
  flex-direction: row;
}

.stat-icon {
  width: 18px;
  height: 18px;
  image-rendering: pixelated;
}

.stat-icon.half {
  width: 9px;
  overflow: hidden;
}

.stat-icon.half img {
  width: 18px;
  height: 18px;
  max-width: none;
}

#death-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(140, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: monospace;
}

#death-screen h2 {
  font-size: 32px;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 #000;
}

#death-screen button {
  font-size: 18px;
  padding: 8px 24px;
  margin-top: 16px;
  cursor: pointer;
}
