/* ----------------------------------------------------------- */
/* BASE WRAPPER STYLING (SONGS)                                */
/* ----------------------------------------------------------- */

.song-cover {
    position: relative !important;
    margin-bottom: 10px !important;
    border-radius: 8px !important;
    overflow: visible !important;
}

/* ----------------------------------------------------------- */
/* IMAGE STYLING (SONGS)                                       */
/* ----------------------------------------------------------- */

.dubplates-home-cover-img {
    width: 100% !important;
    height: 260px !important; /* mobile size */
    object-fit: contain !important;
    display: block !important;
    border-radius: 8px !important;
    background: #000 !important;
    padding: 6px !important;
    transition: 0.2s ease !important;
}

.dubplates-home-cover-img:hover {
    transform: scale(1.02) !important;
}

/* ----------------------------------------------------------- */
/* GLOW ON WRAPPER (SONGS)                                     */
/* ----------------------------------------------------------- */

.song-cover.dubplates-playing {
    box-shadow: 0 0 20px #00eaff, 0 0 40px #00eaff !important;
    animation: dubplatesHomePulse 1.6s infinite ease-in-out !important;
}

/* ----------------------------------------------------------- */
/* OVERLAY (SONGS)                                              */
/* ----------------------------------------------------------- */

.dubplates-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    color: #00eaff;
    font-size: 26px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.2s ease;
    z-index: 20;
    cursor: pointer;
}

.song-cover:hover .dubplates-play-overlay {
    opacity: 1;
}

/* ----------------------------------------------------------- */
/* GLOW ANIMATION                                               */
/* ----------------------------------------------------------- */

@keyframes dubplatesHomePulse {
    0% { box-shadow: 0 0 10px #00eaff; }
    50% { box-shadow: 0 0 30px #00eaff; }
    100% { box-shadow: 0 0 10px #00eaff; }
}

/* ----------------------------------------------------------- */
/* DESKTOP FIX (SONGS)                                          */
/* ----------------------------------------------------------- */

@media (min-width: 768px) {

    body.home .music-store-song .song-cover {
        width: 150px !important;
        max-width: 150px !important;
        margin: 0 !important;
        border-radius: 8px !important;
        overflow: visible !important;
    }

    body.home .music-store-song .song-cover img.dubplates-home-cover-img {
        width: 100% !important;
        height: 150px !important;
        object-fit: contain !important;
        border-radius: 8px !important;
        padding: 6px !important;
    }

    body.home .music-store-song .song-cover .dubplates-play-overlay {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
    }

    body.home .music-store-song .song-cover.dubplates-playing {
        box-shadow: 0 0 20px #00eaff, 0 0 40px #00eaff !important;
        border-radius: 8px !important;
    }
}

/* ----------------------------------------------------------- */
/* SECTION TITLE                                                */
/* ----------------------------------------------------------- */

.dubplates-section-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin: 20px 0 25px;
    letter-spacing: 0.05em;
}

/* ----------------------------------------------------------- */
/* SHUFFLE BLOCK — COLLECTION SUPPORT                          */
/* ----------------------------------------------------------- */

.dubplates-shuffle-wrapper .music-store-collection {
    background: #0a0a0a;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    box-shadow: 0 0 25px #00eaff33;
    transition: 0.25s ease;
    margin-bottom: 20px;
}

.dubplates-shuffle-wrapper .music-store-collection:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px #00eaff88;
}

.dubplates-shuffle-wrapper .music-store-collection .collection-cover img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px #00eaff55;
}
