.floating-support-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: black;
  color: white;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  user-select: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-support-button:hover {
  text-decoration: none; /* Remove underline */
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
