/* Animations style Deezer */
.deezer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #121216 0%, #18181D 100%);
}

.deezer-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.deezer-wave {
  position: absolute;
  background: linear-gradient(90deg, #EF5466, #FF6B7A);
  border-radius: 50%;
  opacity: 0.2;
  transform-origin: center;
  animation: wave-animation 15s infinite alternate ease-in-out;
}

.wave-1 {
  top: 10%;
  left: 10%;
  width: 60vw;
  height: 60vw;
  animation-delay: 0s;
}

.wave-2 {
  bottom: 5%;
  right: 15%;
  width: 40vw;
  height: 40vw;
  animation-delay: -5s;
}

.wave-3 {
  top: 40%;
  right: 30%;
  width: 30vw;
  height: 30vw;
  animation-delay: -10s;
}

@keyframes wave-animation {
  0% {
    transform: scale(1) translate(0, 0);
    border-radius: 50%;
  }
  50% {
    transform: scale(1.1) translate(2%, -2%);
    border-radius: 45%;
  }
  100% {
    transform: scale(0.9) translate(-2%, 2%);
    border-radius: 40%;
  }
}

/* Effet de glassmorphisme */
.glassmorphism {
  background: rgba(24, 24, 29, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(239, 84, 102, 0.2);
}

/* Effet de survol pour les boutons */
.hover-effect {
  transition: all 0.3s ease;
}

.hover-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 84, 102, 0.3);
}

/* Style des boutons Deezer */
.deezer-button {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.deezer-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.deezer-button:hover::after {
  left: 100%;
}
