.new-releases {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.artist-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    aspect-ratio: 1;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-image-wrapper:hover .artist-image {
    transform: scale(1.05);
}

.default-artist-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--bs-primary) 0%, var(--bs-info) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.new-release-content {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.release-header .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.release-title {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.artist-name {
    font-size: 1rem;
    color: #6c757d;
}

.platform-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.platform-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.platform-link.spotify {
    background-color: #1DB954;
}

.platform-link.apple {
    background-color: #A2AAAD;
}

.platform-link.amazon {
    background-color: #FF9900;
}

.platform-link.youtube {
    background-color: #FF0000;
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    color: white;
}

.platform-link i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .artist-image-wrapper {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .new-release-content {
        padding: 1rem;
        text-align: center;
    }
    
    .platform-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .release-title {
        font-size: 1.2rem;
    }
    
    .artist-name {
        font-size: 0.9rem;
    }
    
    .platform-link {
        width: 35px;
        height: 35px;
    }
}
