.lyric-hide {
    display: none;
}

.lyric-line.current {
    display: block;
}

.lyric-line.next {
    display: block;
}
.name-music{
    color: #fff !important;
    font-weight: bold !important;
}
.name-musics{
    color: #fff !important;
    font-weight: bold !important;
}

.container-action{
    display: flex;
    justify-content: space-between;
}
.container-action span{
    color: #fff !important;
    font-size: 15px !important;
}
.processing {
    width: 100%;
    --seek-before-width: 0%;
}

/* RESET */
#timeline-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    cursor: pointer;
}

/* TRACK (nền xám) */
#timeline-range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        #D21F3C 0%,
        #D21F3C var(--seek-before-width),
        #343434 var(--seek-before-width),
        #343434 100%
    );
}

/* THUMB (nút tròn) */
#timeline-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D21F3C;
    margin-top: -4px; /* canh giữa track */
    border: none;
}

/* ❌ KHÔNG đổi màu khi active / focus */
#timeline-range:active::-webkit-slider-thumb,
#timeline-range:focus::-webkit-slider-thumb {
    background: #D21F3C;
}

/* FIREFOX */
#timeline-range::-moz-range-track {
    height: 6px;
    background: #343434;
    border-radius: 999px;
}

#timeline-range::-moz-range-progress {
    background: #D21F3C;
    height: 6px;
}

#timeline-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D21F3C;
    border: none;
}
.play-list__mini--left{
    padding-top: 5px;
}
.play-pause img{
    width: 3rem !important;
    height: 3rem !important;
    margin-right: 20px;
}
.play-list__mini--info .name{
    color: #000 !important;
    font-weight: 550 !important;
}
.play-list__mini--info .tone{
    color:  #747474 !important;
    margin-top: 5px;
    font-size: 15px !important;
}
.play-list__mini--info{
    padding-left: 15px !important;
}
.countdown-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* mờ nhẹ cho dễ đọc */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.countdown-content {
    text-align: center;
}

/* vòng tròn = ẢNH */
.countdown-circle {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

/* ảnh tròn */
.countdown-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* số đè lên ảnh */
.countdown-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 32px;
    font-weight: 700;


    backdrop-filter: blur(1px);
}
.countdown-popup.show {
    display: flex;
}
#popup-share {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999999;
}

#popup-share .share-popup {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 16px 16px 0 0;

    animation: slideUp 0.25s ease;
}

/* Header */
#popup-share .popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFCCD4;
    padding: 10px 12px;
    border-radius: 15px 15px 0 0;
}

#popup-share .popup-header .avatar {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 50%;
}

#popup-share .popup-header .name {
    font-weight: 600;
    font-size: 15px;
}

/* Content */
#popup-share .popup-content {
    margin-top: 14px;
    padding: 0px 10px 10px 10px;
}

#popup-share .popup-content .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-left: 5px;
}

/* Share list */
#popup-share .share-list {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-left: -10px;
    padding-bottom: 20px;
}

#popup-share .share-item {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

#popup-share .share-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}


#popup-share .share-item span {
    font-size: 12px;
    color: #000;
    font-weight: 550;
}
.overlays.show {
    display: flex !important; /* khi mở */
}


.toast {
    position: fixed;
    bottom: 15px;
    right: 0px;
    width: 100%;
    z-index: 99999999999;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.toast.show {
    opacity: 1;
    pointer-events: auto;
}

#toast-content {
    width: 200px;
    background: #1D1D1D;
    border: 1px solid #8E8E8E;
    color: white;
    text-align: center;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 14px;
    margin: 0 auto;
}
/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
.author{
    color: #fff !important;
}
@media (min-width: 900px) and (max-width: 1220px) {
    .hrfl1{
        width: 12% !important;
    }
}
.myself-img {
    animation-play-state: paused;
}
@media (max-width: 800px) {
    #popup-share .popup-header .avatar{
        width: 5rem !important;
        height: 5rem !important;
    }
}


.play-wrap img {
    transition: margin .15s ease;
}

/* pause + mini */
.play-wrap.is-pause img {
    margin-left: 2px;
}

/* play */
.play-wrap.is-play img {
    margin-left: 6px;
}

.merge-processing-modal {
    position: fixed;
    top: 16px;
    right: 16px;
    display: none;
    z-index: 999999;
}

.merge-processing-modal.show {
    display: block;
}

.merge-processing-box {
    background: #1d1d1d;
    padding: 16px 20px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.merge-processing-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ff5f7a;
    border-radius: 50%;
    animation: merge-spin 0.8s linear infinite;
    flex-shrink: 0;
}

.merge-processing-modal.done .merge-processing-spinner,
.merge-processing-modal.error .merge-processing-spinner {
    display: none;
}

.merge-processing-modal.done .merge-processing-box {
    background: #16a34a;
}

.merge-processing-modal.error .merge-processing-box {
    background: #b91c1c;
}

@keyframes merge-spin {
    to {
        transform: rotate(360deg);
    }
}
.action-play{
    display: none;
}


/* Overlay full màn */
#voiceModal.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.54);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999999999999999999999999999999999999999999;
}

/* Container giữa */
#voiceModal .modal-container {
    text-align: center;
}

/* Card giữa */
#voiceModal .modal-card {
    background: rgba(0, 0, 0,1);
    padding: 40px 40px;
    border-radius: 20px;
    color: white;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    width: 330px;
}

/* Icon */
#voiceModal .icon-headphone {
    margin-bottom: 20px;
    width: 25%;
    margin-left: auto;
    margin-right: auto;
}

/* Text */
#voiceModal .modal-text {
    font-size: 15px;
    line-height: 1.6;
}

/* Button */
#voiceModal .btn-start {
    background: #D21F3C;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#voiceModal .btn-start:hover {
    background: #ff5c78;
}
.start-voice{
    display: flex;
    justify-content: center;
    align-items: start;
}
.start-voice img{
    margin-left: 15px;
}
.end-voice{
    display: flex;
    justify-content: center;
    align-items: end;
}

.end-voice img{
    margin-right: 10px;
    margin-top: 2px;
}
.thulai img{
    margin-right: 5px !important;
}
.play-action a p{
    font-size: 17px;
    color: #fff;
}
/* ===== OVERLAY ===== */
#modalMusic{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999999999999;
}

/* ===== MODAL ===== */
#modalMusic .modal-container {
    width: 340px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 40px 30px 30px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ===== SLIDER GROUP ===== */
#modalMusic .slider-group {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

#modalMusic .slider-group span {
    width: 90px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

/* ===== SLIDER ===== */
#modalMusic input[type="range"].slider {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 10px;
    flex: 1;
    height: 5px;
    cursor: pointer;
    position: relative;

}

/* track */


/* thumb */
#modalMusic input[type="range"].slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #ff2d6f, #d91b4c);
    border-radius: 50%;
    margin-top: -6.5px;
}

/* FIREFOX */
#modalMusic input[type="range"].slider::-moz-range-track {
    height: 5px;
    background: #cfcfcf;
    border-radius: 999px;
}

#modalMusic input[type="range"].slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #D21F3C;
    border-radius: 50%;
    border: none;
}

/* ===== BUTTON ===== */
#modalMusic .btn-done {
    display: block;
    margin: 35px auto 0;
    padding: 10px 40px;
    border-radius: 30px;
    border: none;
    background: #D21F3C;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

#modalMusic .btn-done:hover {
    transform: translateY(-1px);
}


#modalMusic input[type="range"].slider {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 5px;
    background: transparent;
    cursor: pointer;
}

/* track */
#modalMusic input[type="range"].slider::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 999px;

    background: linear-gradient(
        to right,
        #F80164 0%,
        #F80164 var(--progress, 50%),
        #cfcfcf var(--progress, 50%),
        #cfcfcf 100%
    );
}



.effect-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);

    justify-content: center;
    align-items: center;

    z-index: 9999999999999999;
}

.effect-modal {
    width: 450px;
    background: #f3f3f3;
    border-radius: 25px;
    padding: 20px 25px 30px 25px;
    text-align: center;
}

.effect-modal h3 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: start;
    margin-top: 0 !important;
}

/* list */
.effect-list {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 35px;
}

.effect-item {
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.effect-item img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    transition: 0.2s;
}

/* active */
.effect-item.active img {
    box-shadow: 0 0 0 3px #FFD700;
}

.effect-item span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

/* button */
.btn-done {
    padding: 10px 40px;
    border-radius: 30px;
    border: none;
    background: #D21F3C;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

#popupReplay.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999999999999999;
}



#popupReplay .popup-box {
    width: 350px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    animation: popupFade 0.25s ease;
}

@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#popupReplay .icon-mic img {
    width: 15%;
    margin: auto;
}

#popupReplay .popup-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

#popupReplay .popup-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 30px 0 10px 0;
}

#popupReplay .btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

/* nút xám */
#popupReplay .btn-secondary {
    background: #fff;
    color: #000;
    box-shadow: inset 0 0 0 1px #242424;
    padding: 0 30px;
}

/* nút đỏ */
#popupReplay .btn-primary {
    background:#D21F3C;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 0, 60, 0.3);
   padding-left: 30px;
    padding-right: 30px;
}
#popupEnd.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999999999999999999999;
}



#popupEnd .popup-box {
    width: 350px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    animation: popupFade 0.25s ease;
}

@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#popupEnd .icon-mic img {
    width: 15%;
    margin: auto;
}

#popupEnd .popup-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #000;
}
#popupEnd .sub_title{
    margin-top:5px!important;
}

#popupEnd .popup-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 30px 0 10px 0;
}

#popupEnd .btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

/* nút xám */
#popupEnd .btn-secondary {
    background: #fff;
    color: #000;
    box-shadow: inset 0 0 0 1px #242424;
    padding: 0 30px;
}

/* nút đỏ */
#popupEnd .btn-primary {
    background:#D21F3C;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 0, 60, 0.3);
    padding-left: 30px;
    padding-right: 30px;
}

.btn:hover {
    transform: translateY(-1px);
}



#popupEndMusic{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999999999999;
}

/* ===== MODAL ===== */
#popupEndMusic .modal-container {
    width: 450px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 10px 30px 30px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    position: relative;
}
#popupEndMusic .modal-container h3{
    font-size: 19px;
    font-weight: bold;
    color: #000;
}
#popupEndMusic .modal-container .title-effect{
    margin-top: 30px;
}
/* ===== SLIDER GROUP ===== */
#popupEndMusic .slider-group {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

#popupEndMusic .slider-group span {
    width: 90px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

/* ===== SLIDER ===== */
#popupEndMusic input[type="range"].slider {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 10px;
    flex: 1;
    height: 5px;
    cursor: pointer;
    position: relative;

}

/* track */


/* thumb */
#popupEndMusic input[type="range"].slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #ff2d6f, #d91b4c);
    border-radius: 50%;
    margin-top: -6.5px;
}

#popupEndMusic input[type="range"].slider::-moz-range-track {
    height: 5px;
    background: #cfcfcf;
    border-radius: 999px;
}

#popupEndMusic input[type="range"].slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #D21F3C;
    border-radius: 50%;
    border: none;
}

/* ===== BUTTON ===== */
#popupEndMusic .btn-done {
    display: block;
    margin: 35px auto 0;
    padding: 10px 40px;
    border-radius: 30px;
    border: none;
    background: #D21F3C;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

#popupEndMusic .btn-done:hover {
    transform: translateY(-1px);
}


#popupEndMusic input[type="range"].slider {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 5px;
    background: transparent;
    cursor: pointer;
}

/* track */
#popupEndMusic input[type="range"].slider::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 999px;

    background: linear-gradient(
        to right,
        #F80164 0%,
        #F80164 var(--progress, 50%),
        #cfcfcf var(--progress, 50%),
        #cfcfcf 100%
    );
}


#popupEndMusic .btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}
#popupEndMusic .btn-secondary {
    background: #fff;
    color: #000;
    box-shadow: inset 0 0 0 1px #242424;
    padding: 0 30px;
}

/* nút đỏ */
#popupEndMusic .btn-primary {
    background:#D21F3C;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 0, 60, 0.3);
    padding-left: 20px;
    padding-right: 20px;
}
#popupEndMusic .popup-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 30px 0 10px 0;
}


#popupEndMusic .modal-close {
    position: absolute;
    top: 12px;
    right: -15px;
    cursor: pointer;
}
#popupEndMusic .modal-close img{
    width: 35%;
}
#popupMusicMobile{
    display: none;
}
#popupeffectMobile{
    display: none;
}
#popupeRelayMobile{
    display: none;
}
#popupeEndMobile{
    display: none;
}
#popupeEndMusicMobile{
    display: none;
}

@media (max-width: 768px) {
    .play-action .play-pause-action {
        margin-bottom: 25px !important;
    }
    .popup {
        position: fixed;
        inset: 0;
        z-index: 9999999999999999999999;
        display: none;

    }

    /* nền mờ */
    .popup-bg {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.66);
    }

    /* text */
   .popup-text {
        position: absolute;
        bottom: 220px;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    /* panel */
    .popup-content {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: #fff;
        border-radius: 25px 25px 0 0;
        padding: 30px 20px;
    }

    #popupMusicMobile .slider-group {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    #popupMusicMobile .slider-group span {
        width: 90px;
        font-size: 15px;
        color: #000;
        font-weight: 600;
    }

    /* ===== SLIDER ===== */
    #popupMusicMobile input[type="range"].slider {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 10px;
        flex: 1;
        height: 5px;
        cursor: pointer;
        position: relative;

    }

    #popupMusicMobile input[type="range"].slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 14px;
        height: 14px;
        background: linear-gradient(135deg, #ff2d6f, #d91b4c);
        border-radius: 50%;
        margin-top: -6.5px !important;
    }

    /* FIREFOX */
    #popupMusicMobile input[type="range"].slider::-moz-range-track {
        height: 5px;
        background: #cfcfcf;
        border-radius: 999px;
    }

    #popupMusicMobile input[type="range"].slider::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #D21F3C;
        border-radius: 50%;
        border: none;
    }
    #popupMusicMobile input[type="range"].slider {
        -webkit-appearance: none;
        appearance: none;
        flex: 1;
        height: 5px;
        background: transparent;
        cursor: pointer;
    }

    /* track */
    #popupMusicMobile input[type="range"].slider::-webkit-slider-runnable-track {
        height: 5px;
        border-radius: 999px;

        background: linear-gradient(
            to right,
            #F80164 0%,
            #F80164 var(--progress, 50%),
            #cfcfcf var(--progress, 50%),
            #cfcfcf 100%
        );
    }

    /* thumb */

    .effect-item span{
        font-size: 12px !important;
        font-weight: 400 !important;
        margin-top: 15px !important;
    }
    .effect-item.active img{
        box-shadow: 0 0 0 3px #D21F3C;
    }
    .effect-list{
        margin-bottom:  5px !important;
    }
    #popupeffectMobile .popup-content h3{
        font-size: 18px;
        text-align: center;
        margin-bottom: 25px;
        margin-top: 15px !important;
    }
    #popupeffectMobile .popup-content{
        padding: 10px 20px 30px 20px !important;
    }
    #popupeffectMobile .popup-text{
        bottom: 280px !important;
    }
    #popupeRelayMobile .icon-mic img {
        width: 10%;
        margin: auto;
    }
    #popupeRelayMobile .popup-content{
        padding: 20px !important;
    }
    #popupeRelayMobile .popup-text{
        bottom: 280px !important;
    }
    #popupeRelayMobile .popup-title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0px;
        color: #000;
        text-align: center;
    }
    #popupeRelayMobile .sub_title{
        margin-top:5px!important;
    }

    #popupeRelayMobile .popup-actions {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin: 30px 0 10px 0;
    }

    #popupeRelayMobile .btn {
        padding: 10px 18px;
        border-radius: 999px;
        border: none;
        font-size: 14px;
        cursor: pointer;
        transition: 0.2s;
    }

    /* nút xám */
    #popupeRelayMobile .btn-secondary {
        background: #fff;
        color: #000;
        box-shadow: inset 0 0 0 1px #242424;
        padding: 12px 40px;
    }

    /* nút đỏ */
    #popupeRelayMobile .btn-primary {
        background:#D21F3C;
        color: #fff;
        box-shadow: 0 4px 10px rgba(255, 0, 60, 0.3);
        padding: 12px 40px !important;
    }
    #popupeEndMobile .icon-mic img {
        width: 10%;
        margin: auto;
    }
    #popupeEndMobile .popup-content{
        padding: 20px !important;
    }
    #popupeEndMobile .popup-text{
        bottom: 280px !important;
    }
    #popupeEndMobile .popup-title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0px;
        color: #000;
        text-align: center;
    }
    #popupeEndMobile .sub_title{
        margin-top:5px!important;
    }

    #popupeEndMobile .popup-actions {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin: 30px 0 10px 0;
    }

    #popupeEndMobile .btn {
        padding: 10px 18px;
        border-radius: 999px;
        border: none;
        font-size: 14px;
        cursor: pointer;
        transition: 0.2s;
    }

    /* nút xám */
    #popupeEndMobile .btn-secondary {
        background: #fff;
        color: #000;
        box-shadow: inset 0 0 0 1px #242424;
        padding: 12px 40px;
    }

    /* nút đỏ */
    #popupeEndMobile .btn-primary {
        background:#D21F3C;
        color: #fff;
        box-shadow: 0 4px 10px rgba(255, 0, 60, 0.3);
        padding: 12px 40px !important;
    }
    #popupeEndMusicMobile .slider-group {
        display: flex;
        align-items: center;
        margin-bottom: 22px;
    }

    #popupeEndMusicMobile .slider-group span {
        width: 90px;
        font-size: 15px;
        color: #000;
        font-weight: 600;
    }

    /* ===== SLIDER ===== */
    #popupeEndMusicMobile input[type="range"].slider {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 10px;
        flex: 1;
        height: 5px;
        cursor: pointer;
        position: relative;

    }

    /* track */


    /* thumb */
    #popupeEndMusicMobile input[type="range"].slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;

        width: 14px;
        height: 14px;
        background: linear-gradient(135deg, #ff2d6f, #d91b4c);
        border-radius: 50%;
        margin-top: -6.5px;
    }

    #popupeEndMusicMobile input[type="range"].slider::-moz-range-track {
        height: 5px;
        background: #cfcfcf;
        border-radius: 999px;
    }

    #popupeEndMusicMobile input[type="range"].slider::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #D21F3C;
        border-radius: 50%;
        border: none;
    }

    /* ===== BUTTON ===== */
    #popupeEndMusicMobile .btn-done {
        display: block;
        margin: 35px auto 0;
        padding: 10px 40px;
        border-radius: 30px;
        border: none;
        background: #D21F3C;
        color: white;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: 0.2s;
    }

    #popupeEndMusicMobile .btn-done:hover {
        transform: translateY(-1px);
    }


    #popupeEndMusicMobile input[type="range"].slider {
        -webkit-appearance: none;
        appearance: none;
        flex: 1;
        height: 5px;
        background: transparent;
        cursor: pointer;
    }

    /* track */
    #popupeEndMusicMobile input[type="range"].slider::-webkit-slider-runnable-track {
        height: 5px;
        border-radius: 999px;

        background: linear-gradient(
            to right,
            #F80164 0%,
            #F80164 var(--progress, 50%),
            #cfcfcf var(--progress, 50%),
            #cfcfcf 100%
        );
    }

    /* thumb */

    #popupeEndMusicMobile .btn {
        padding: 10px 18px;
        border-radius: 999px;
        border: none;
        font-size: 14px;
        cursor: pointer;
        transition: 0.2s;
    }
    #popupeEndMusicMobile .btn-secondary {
        background: #fff;
        color: #000;
        box-shadow: inset 0 0 0 1px #242424;
        padding: 12px 40px;
    }

    /* nút đỏ */
    #popupeEndMusicMobile .btn-primary {
        background:#D21F3C;
        color: #fff;
        box-shadow: 0 4px 10px rgba(255, 0, 60, 0.3);
        padding: 12px 25px !important;
    }
    #popupeEndMusicMobile .popup-actions {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin: 30px 0 10px 0;
    }


    #popupeEndMusicMobile .modal-close {
        position: absolute;
        top: 12px;
        right: -15px;
        cursor: pointer;
    }
    #popupeEndMusicMobile .modal-close img{
        width: 35%;
    }
    #popupeEndMusicMobile h3{
        font-size: 18px ;
        margin-top: 0;
    }
    #popupeEndMusicMobile .title-effect{
        margin-top: 30px !important;
    }
    #popupeEndMusicMobile .popup-text{
        bottom: 490px !important;
    }

}
