#mpp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.mpp-popup-content {
    background: #ffffff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
}

#mpp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
}

.mpp-progress-container {
    width: 100%;
    height: 15px;
    border-radius: 8px;
    background: #eee;
    margin: 15px 0;
    overflow: hidden;
}

.mpp-progress-bar {
    height: 15px;
    width: 0;
    background: linear-gradient(90deg, #ff0033, #ff6600);
    border-radius: 8px;
    transition: width 1.2s ease-in-out;
}

.mpp-button {
    display: inline-block;
    padding: 12px 20px;
    background: #ff0033;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
