/* Estilos celebratorios para el lanzamiento del Club */

.club-logo-celebrate {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  padding: 14px;
  border-radius: 50%;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(255, 255, 255, 0.6);
  animation: club-float 4s ease-in-out infinite;
}

.club-logo-celebrate::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ffd54f,
    #ff6d00,
    #00c853,
    #00bcd4,
    #ffd54f
  );
  filter: saturate(1.05);
  z-index: -1;
  animation: club-spin 12s linear infinite;
}

.club-logo-celebrate::after {
  content: "¡Lanzamiento!";
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ff4081;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(255, 64, 129, 0.35);
  animation: club-pop 1.6s ease-in-out infinite alternate;
}

@keyframes club-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes club-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes club-pop {
  from {
    transform: scale(0.96);
  }
  to {
    transform: scale(1.05);
  }
}
