a.audio-link{
	color:inherit;
	text-decoration:none;
	transition: all 0.6s;
}
	a.audio-link:hover{
		color:yellow;
		text-decoration:none;
		padding-left:0.5rem;
		transition: all 0.6s;
	}
/* Overlay - copre tutta la pagina */
.audio-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
/* Contenitore del player */
.audio-player-container {
    position: relative;
    width: 80%;
    /* max-width: 650px; */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    animation: fadeInScale 0.4s ease-out;
}

/* Immagine di sfondo */
.player-background {
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-image 0.5s ease;
}

/* Overlay scuro per migliorare la leggibilità */
.player-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

/* Contenuti del player sopra lo sfondo */
.player-content {
    position: absolute;
	bottom:10px;
	left:10px;
    z-index: 1;
    text-align: center;
    /* padding: 30px; */
    /* width: 100%; */
    box-sizing: border-box;
}

/* Titolo dell'audio */
.audio-title {
    color: white;
    font-size: 28px;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

/* Info artista */
.audio-info {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Stile per il player audio */
.audio-player {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    box-sizing: border-box;
}

/* Personalizzazione dell'audio player HTML5 */
.audio-player::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Pulsante di chiusura */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-btn:hover {
    background: rgba(255, 0, 0, 0.7);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 0, 0, 0.5);
}

/* Controlli aggiuntivi */
.player-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.player-controls button {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.player-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Animazione */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .player-background {
        height: 350px;
    }
    
    .audio-title {
        font-size: 22px;
    }
    
    .audio-player {
        padding: 8px 15px;
    }
    
    .player-controls button {
        padding: 8px 18px;
        font-size: 12px;
    }
}