body {
  background-color: #2c2c2c;
  font-family: "Segoe UI", sans-serif;
}

canvas {
  max-width: 100%;
  height: auto;
  background-color: rgb(69.5, 69.5, 69.5);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

button {
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
button:hover {
  background-color: #a927f5;
  color: #fff;
  box-shadow: 0 0 10px rgba(169, 39, 245, 0.5);
}

.bonus-life {
  color: #ff0062;
  font-weight: bold;
  animation: pulse 1s infinite;
  transition: opacity 0.3s ease;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
#log-output {
  font-size: 0.95rem;
  line-height: 1.4;
  max-height: 200px;
  overflow-y: auto;
  padding: 1rem;
  background-color: rgb(56.75, 56.75, 56.75);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}/*# sourceMappingURL=style.css.map */