/* ================================================ */
/* CORRECTION BOUTONS STREAMING - CAROUSEL DISCO   */
/* ================================================ */
/* Version corrigée incluant Apple Music */

/* Conteneur des liens - ESSENTIEL */
.release-card .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0;
}

/* Boutons des plateformes streaming */
.release-card .links a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ================================================ */
/* COULEURS DES PLATEFORMES                        */
/* ================================================ */

/* Spotify */
.release-card .spotify,
.release-card .links .spotify {
    background: #1db954;
}

.release-card .spotify:hover,
.release-card .links .spotify:hover {
    background: #15963f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.5);
}

/* YouTube */
.release-card .youtube,
.release-card .links .youtube {
    background: #ff0000;
}

.release-card .youtube:hover,
.release-card .links .youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5);
}

/* Deezer */
.release-card .deezer,
.release-card .links .deezer {
    background: #7b2cff;
}

.release-card .deezer:hover,
.release-card .links .deezer:hover {
    background: #5a1ec2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 44, 255, 0.5);
}

/* Apple Music - AJOUTÉ */
.release-card .apple,
.release-card .links .apple {
    background: linear-gradient(135deg, #fc3c44 0%, #fa233b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.release-card .apple:hover,
.release-card .links .apple:hover {
    background: linear-gradient(135deg, #fa233b 0%, #d81e32 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 60, 68, 0.5);
}

/* ================================================ */
/* CORRECTION SUPPLÉMENTAIRE - CAROUSEL ITEMS      */
/* ================================================ */

/* Si les boutons sont aussi dans .carousel-item */
.carousel-item .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0;
}

.carousel-item .links a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Couleurs pour .carousel-item */
.carousel-item .spotify {
    background: #1db954;
}

.carousel-item .spotify:hover {
    background: #15963f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.5);
}

.carousel-item .youtube {
    background: #ff0000;
}

.carousel-item .youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5);
}

.carousel-item .deezer {
    background: #7b2cff;
}

.carousel-item .deezer:hover {
    background: #5a1ec2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 44, 255, 0.5);
}

.carousel-item .apple {
    background: linear-gradient(135deg, #fc3c44 0%, #fa233b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-item .apple:hover {
    background: linear-gradient(135deg, #fa233b 0%, #d81e32 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 60, 68, 0.5);
}

/* ================================================ */
/* RESPONSIVE - MOBILE                              */
/* ================================================ */

@media (max-width: 600px) {
    .release-card .links,
    .carousel-item .links {
        gap: 6px;
    }
    
    .release-card .links a,
    .carousel-item .links a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}
