/* Song Card */
.song-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.song-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.song-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.song-card:hover .song-card-overlay {
    opacity: 1;
}

.play-btn, .like-btn, .more-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-btn:hover, .like-btn:hover, .more-btn:hover {
    transform: scale(1.1);
}

.like-btn.liked {
    background: #ff4757;
}

.song-card-info {
    padding: 12px;
}

.song-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.song-stats {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--text-secondary);
}

.song-stats i {
    margin-right: 4px;
}