* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', sans-serif;
}

body {
    background: linear-gradient(180deg, #8fd3ff 0%, #b8f1ff 40%, #ffffff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.banner {
    height: 420px;
    background: linear-gradient(135deg, #00b4ff, #00d084, #ffd93d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '☁️ ☁️ ☁️';
    position: absolute;
    font-size: 80px;
    opacity: .15;
    width: 100%;
    text-align: center;
    animation: clouds 20s linear infinite;
}


@keyframes clouds {
    from {
        transform: translateX(-200px);
    }

    to {
        transform: translateX(200px);
    }
}

.overlay {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.overlay h1 {
    font-size: 4rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.overlay p {
    font-size: 1.4rem;
    margin-top: 10px;
}

.albums {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
}

#album-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.album-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.album-card h3 {
    padding: 18px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #6a1b9a;
}

.player-bar {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    height: 90px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    z-index: 999;
}

#player-cover {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    object-fit: cover;
    animation: spin 10s linear infinite;
}

.player-info {
    flex: 1;
}

#player-title {
    font-weight: bold;
    font-size: 18px;
    color: #444;
}

#playBtn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #00d084;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.music-cover {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    object-fit: cover;
}

body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: 1s;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .85);
    z-index: -1;
}

.play-album {
    margin-top: 20px;
    background: #00d084;
    border: none;
    padding: 15px 30px;
    border-radius: 999px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 208, 132, .3);
}

.distributions {
    max-width: 1200px;
    margin: 20px auto 50px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .75);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.distributions img {
    width: 75px;
    height: 45px;
    object-fit: contain;
    transition: .25s;
    filter: grayscale(15%);
}

.distributions img:hover {
    transform: scale(1.15);
    filter: grayscale(0);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width:768px) {

    .banner {
        height: 220px;
    }

    .banner::before {
        font-size: 50px;
    }

    .overlay h1 {
        font-size: 2rem;
    }

    .overlay p {
        font-size: 1rem;
    }

    .albums {
        padding: 45px;
    }

    #album-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .album-card {
        display: flex;
        align-items: center;
        border-radius: 20px;
        overflow: hidden;
    }

    .album-card img {
        width: 110px;
        height: 110px;
        aspect-ratio: unset;
        flex-shrink: 0;
    }

    .album-card h3 {
        flex: 1;
        text-align: left;
        padding: 20px;
        font-size: 18px;
        line-height: 1.4;
    }

}

@media (max-width:480px) {

    .distributions {
        margin: 10px 20px 40px;
        padding: 20px;
        gap: 18px;
        border-radius: 22px;
    }

    .distributions img {
        width: 55px;
        height: 35px;
    }

    .banner {
        height: 180px;
    }

    .overlay h1 {
        font-size: 1.8rem;
    }

    .overlay p {
        font-size: .95rem;
    }

    .album-card img {
        width: 95px;
        height: 95px;
    }

    .album-card h3 {
        font-size: 16px;
        padding: 16px;
    }

}