.floating-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  /* Dug-dik Animation */
  animation: dugdik 3s ease-in-out infinite;
}

.floating-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  
  /* Gold Gradient - Premium Look */
  background: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #b8860b 100%);
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.2) 1px, transparent 0);
  background-size: 8px 8px;
  
  border-radius: 50px;
  
  /* Gold Glow Effect */
  box-shadow: 
    0 10px 25px rgba(212, 175, 55, 0.4),
    0 0 15px rgba(212, 175, 55, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
    
  position: relative;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.floating-button a::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #d4af37, #f1c40f);
  border-radius: 50px;
  z-index: -1;
  opacity: 0.5;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.1, 1.3); opacity: 0; }
  100% { transform: scale(1.1, 1.3); opacity: 0; }
}

@keyframes dugdik {
  0% { transform: translateY(0) rotate(0); }
  10% { transform: translateY(-8px) rotate(-3deg); }
  20% { transform: translateY(0) rotate(3deg); }
  30% { transform: translateY(-5px) rotate(-2deg); }
  40% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(0) rotate(0); }
}

.floating-button a svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.floating-text {
  color: #0046ad;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: opacity 0.5s ease;
}

.floating-button:hover {
  animation-play-state: paused;
}

.floating-button:hover a {
  transform: scale(1.05) translateY(-5px);
  background: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%);
  box-shadow: 
    0 20px 40px rgba(212, 175, 55, 0.6),
    0 0 25px rgba(212, 175, 55, 0.5);
  padding: 12px 35px;
}
