#plpro-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
}

#plpro-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 0;
    overflow: hidden;
    animation: plproFadeIn 0.3s ease-out;
}

@keyframes plproFadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

#plpro-modal-inner {
    padding: 30px;
    text-align: center;
}

.plpro-modal-image {
    margin-bottom: 20px;
}

.plpro-modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

#plpro-modal-title {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 1.3;
}

#plpro-modal-content {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.plpro-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
    border: none;
}

.plpro-btn:hover {
    background: #c0392b;
    color: #fff;
    transform: scale(1.03);
}

body.plpro-modal-active {
    overflow: hidden;
}
