*
.songs-container h1 {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.song-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.song-card:hover {transform: translateY(-10px);}
.song-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.song-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /*padding: 25px;*/
    opacity: 0;
    transition: opacity 0.4s ease;
}
.song-overlay > div {padding: 5px;}
.song-card:hover .song-overlay {opacity: 1;}
.song-title {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.song-card:hover .song-title {transform: translateY(0);}
.song-author {
    color: #ddd;
    font-size: 1.1em;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}
.song-card:hover .song-author {transform: translateY(0);}