/* ===== Global Donate Button ===== */
.donate {
  position: fixed;
  bottom: 14px;
  right: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg,#003087,#009cde);
  color: white;
  font-family: Orbitron;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0,156,222,.6);
  z-index: 9999;
  transition: transform .15s ease, box-shadow .15s ease;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0,156,222,.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(0,156,222,1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0,156,222,.6);
  }
}


.donate:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,156,222,.9);
}
