body{

    background:#070b1b;

}

.pmp-player {

    background: linear-gradient(135deg,#0b1023,#111936);
    border-radius: 30px;
    padding: 40px;
    max-width: 1100px;
    margin: 50px auto;
    color: #fff;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);

}

/* TOP AREA */

.pmp-cover-wrap {

    text-align: center;
    margin-bottom: 25px;

}

#track-cover {

    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 0 40px rgba(255,0,128,0.25);

}

#track-title {

    text-align: center;
    font-size: 38px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;

}

/* WAVEFORM */

#waveform {

    margin-top: 40px;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 20px;

}

/* CONTROLS */

.pmp-controls {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;

}

.pmp-controls button {

    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg,#ff2ea6,#c400ff);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255,0,140,0.4);

}

.pmp-controls button:hover {

    transform: scale(1.08);

}

/* DOWNLOAD BUTTON */

.pmp-download {

    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    margin-right:  20px;

    width: 200px;
    height: 60px;

    border-radius: 18px;

    background: linear-gradient(135deg,#ff2ea6,#c400ff);

    color: #fff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: 0.35s;

    box-shadow:
        0 0 10px rgba(255,0,140,0.4),
        0 0 25px rgba(255,0,140,0.3);

}

.pmp-download i {
    font-size: 20px;
    color: #fff;

}

.pmp-download:hover {

    transform: translateY(-4px);

    box-shadow:
        0 0 20px rgba(255,0,140,0.7),
        0 0 40px rgba(255,0,140,0.5);

}
.pmp-download:hover,
.pmp-download:hover span,
.pmp-download:hover i {

    color: #fff;

} 


/* PLAYLIST */

.pmp-playlist {

    margin-top: 60px;

}

.pmp-track {

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 18px 25px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;

}

.pmp-track:hover {

    background: rgba(255,255,255,0.08);

}

.pmp-track.active {

    background: linear-gradient(135deg,#ff2ea6,#c400ff);
    box-shadow: 0 0 25px rgba(255,0,128,0.3);

}

/* SCROLLBAR */

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-thumb {

    background: #ff2ea6;
    border-radius: 20px;

}

/* MOBILE */

@media(max-width:768px){

    .pmp-player{

        padding:20px;

    }

    #track-cover{

        width:100%;
        height:auto;

    }

    #track-title{

        font-size:28px;

    }

    .pmp-controls{

        flex-wrap:wrap;

    }

}



.pmp-time {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    margin-top: 15px;

    color: rgba(255,255,255,0.7);

    font-size: 15px;

}

.pmp-track-info {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.pmp-track-duration {

    color: rgba(255,255,255,0.65);
    font-size: 14px;

}


.pmp-volume-wrap {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    margin-top: 30px;

}

.pmp-volume-wrap i {

    color: #ff2ea6;
    font-size: 22px;

}

#volume-slider {

    width: 220px;
    accent-color: #ff2ea6;
    cursor: pointer;

}


.pmp-bottom-bar {

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    margin-top: 30px;

    flex-wrap: wrap;

}

.pmp-time {

    margin: 0;

}

.pmp-volume-wrap {

    margin: 0;

}

.pmp-controls {

    margin: 0;

}


#waveform {

    cursor: pointer;
    transition: 0.3s;

}

#waveform:hover {

    transform: scale(1.01);

}


.pmp-hero {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 40px;

    flex-wrap: wrap;

}

.pmp-hero-info {

    flex: 1;

}

.pmp-badge {

    display: inline-block;

    background: rgba(255,255,255,0.08);

    color: #fff;

    padding: 10px 18px;

    border-radius: 14px;

    margin-bottom: 20px;

    font-size: 14px;

}

#track-title {

    font-size: 52px;

    margin-bottom: 12px;

    color: white;

    font-weight: 800;
    
    text-align: right;

}

#track-artist {

    font-size: 28px;

    color: rgba(255,255,255,0.7);

    margin-bottom: 30px;

}

.pmp-meta {

    display: flex;
    align-items: center;
    gap: 30px;

    flex-wrap: wrap;

}

.pmp-meta-item {

    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255,255,255,0.7);

    font-size: 15px;

}

.pmp-meta-item i {

    color: #ff2ea6;

}

.pmp-track {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 28px;

    border-radius: 22px;

    margin-top: 18px;

    background: rgba(255,255,255,0.03);

    transition: 0.35s;

}

.pmp-track:hover {

    background: rgba(255,255,255,0.06);

    transform: translateY(-3px);

}

.pmp-track-left {

    display: flex;
    align-items: center;

}

.pmp-track-meta {

    display: flex;
    align-items: center;
    gap: 28px;

    flex-wrap: wrap;

}

.pmp-track-meta span {

    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;

}

.pmp-track-meta i {

    color: #ff2ea6;

}

.pmp-track-right {

    display: flex;
    align-items: center;
    gap: 50px;

}

.pmp-track-right img {

    width: 72px;
    height: 72px;
    border-radius: 10px !important;
    object-fit: cover;

}

.pmp-track-text {

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 50px;


}

.pmp-track-title {

    color: white;

    font-size: 18px;
    font-weight: 700;

}

.pmp-track-artist {

    color: rgba(255,255,255,0.65);

    margin-top: 6px;

    font-size: 14px;

}



.pmp-track {

    display: flex;
    align-items: center;
    justify-content: flex-start;

    direction: rtl;

    gap: 45px;

    padding: 24px 35px;

    border-radius: 24px;

    margin-top: 22px;

    background: rgba(255,255,255,0.03);

    transition: 0.35s;

}

.pmp-track-right {

    display: flex;
    align-items: center;

    gap: 24px;

    min-width: 270px;

}

.pmp-track-meta {

    display: flex;
    align-items: center;

    gap: 55px;

    flex-wrap: wrap;

}

.pmp-track-text {

    display: flex;
    flex-direction: column;

    gap: 8px;

    min-width: 180px;

}

.pmp-track-left {

    margin-left: 40px;

}

.pmp-track-right img {

    width: 78px;
    height: 78px;

    border-radius: 18px;

    object-fit: cover;

    flex-shrink: 0;

}


@media (max-width: 768px) {

    .pmp-track {

        display: flex;
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 18px;

        padding: 20px;

    }

    .pmp-track-right {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 15px;

        min-width: auto;

        width: 100%;

    }

    .pmp-track-right img {

        width: 90px;

        height: 90px;

        border-radius: 20px;

    }

    .pmp-track-text {

        align-items: center;

        text-align: center;

    }

    .pmp-track-meta {

        display: flex;

        justify-content: center;

        gap: 12px;

        flex-wrap: wrap;

        width: 100%;

    }

    .pmp-track-meta span {

        font-size: 13px;

    }

}