/* =========================
   BOTON DONAR MEJORADO - MMO/NEON
   ========================= */

.donate-button-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.donate-button-container input {
  width: 120px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid #ffd700;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  background-color: #fff8dc;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.donate-button-container input:focus {
  outline: none;
  border-color: #ffcc00;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.8);
}

/* Botón principal */
.donate-button {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: neonPulse 2s infinite alternate;
}

/* Hover más brillante */
.donate-button:hover {
  background-color: #ffcc00;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Animación de pulso */
@keyframes neonPulse {
  0% {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
  }
}