.floating-donation {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  text-align: center;
  font-size: 16px;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
}

.floating-donation:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.8);
  }
}
