body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #ffffff;
  margin: 0;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url(../IMG/imagen1.gif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card {
  background-color: #1f1f1f;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  padding: 30px;
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.status {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 18px;
}

#vidas {
  color: #ffd700;
  font-weight: bold;
  transition: transform 0.2s ease, color 0.2s ease;
}

#vidas.perder {
  color: #ff4c4c;
  transform: scale(1.3);
}

.opciones button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #2e8b57;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.opciones button:hover {
  background-color: #3cb371;
}

.btn-secundario {
  background-color: #444;
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  margin-top: 15px;
}

.btn-secundario:hover {
  background-color: #666;
}

/* MODAL Game Over */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: crimson;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #ff4c4c;
}
