

.albums-container {
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    /*box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);*/
    padding: 40px;
    /*backdrop-filter: blur(15px);*/
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.album-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

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

.album-card:hover .album-image {
    transform: scale(1.05);
}

.album-info {
    text-align: center;
    margin-bottom: 25px;
}

.album-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.album-artist {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 5px;
}

.album-year {
    font-size: 0.9rem;
    color: #808080;
}

.streaming-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.streaming-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    filter: grayscale(100%);
}

.streaming-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.streaming-link i {
    font-size: 24px;
    color: white;
    position: relative;
    z-index: 2;
    
}

.streaming-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: grayscale(0%);
}

/* Streaming Platform Colors */
.spotify { background: #1db954; }
.apple-music { background: #a7a7a7; }
.youtube { background: #ff0000; }
.amazon { background: #ff9900; }
.deezer { background: #feaa2d; }
.tidal { background: #000000; }
.soundcloud { background: #ff5500; }
.bandcamp { background: #629aa0; }

.description-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .albums-container {
        padding: 25px;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .album-title {
        font-size: 1.4rem;
    }
    
    .streaming-links {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .streaming-link {
        width: 50px;
        height: 50px;
    }
    
    .streaming-link i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    
    .albums-container {
        padding: 20px;
    }
    
    .streaming-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .streaming-link {
        width: 45px;
        height: 45px;
    }
    
    .streaming-link i {
        font-size: 18px;
    }
}