@keyframes glowGold {
  0%, 100% {
    box-shadow:
      0 0 6px rgba(255, 215, 100, 0.4),
      0 0 14px rgba(255, 200, 80, 0.25);
  }
  50% {
    box-shadow:
      0 0 14px rgba(255, 215, 100, 0.8),
      0 0 28px rgba(255, 200, 80, 0.5);
  }
}

.glow-icon {
  width: 72px;
  height: 72px;

  background-color: #ffffff; 
  border-radius: 9999px; 

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px;

  animation: glowGold 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.glow-icon:hover {
  transform: scale(1.12);
}

.glow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
}


.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

