body {
    margin: 0;
    background: #ff3c3c;
    font-family: 'Press Start 2P', monospace;
    color: black;
    padding: 20px;

    background-image: url("https://images.pexels.com/photos/1054218/pexels-photo-1054218.jpeg");
    background-size: 100% auto;
}

.container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.status-bars {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.status .label {
  margin-bottom: 4px;
}

.bar {
  width: 150px;
  height: 15px;
  background: black;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.fill {
  height: 100%;
  text-align: center;
  font-size: 100%;
}

.green {
  background: limegreen;
}

.blue {
  background: lightblue;
}

.info {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 20px;
  font-size: 12px;
  padding: 0 20px;
}

.character img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 20px;
}

.button-grid button {
  background: #84f9ff;
  border: none;
  padding: 10px;
  border-radius: 16px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.button-grid button:hover {
  transform: scale(1.05);
}

.button-grid button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

