#avp-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}
#avp-popup {
    background: #f1ece9; /* requested background color */
    padding: 22px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    overflow: hidden;
}
#avp-logo {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
    object-fit: contain;
}
#avp-header {
    font-size: 20px;
    margin: 6px 0 10px;
    color: #222;
    font-weight: 600;
}
#avp-question {
    font-size: 16px;
    margin-bottom: 16px;
    color: #333;
}
#avp-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.avp-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    min-width: 150px;
}
#avp-yes { background: #c62828; color: #fff; }
#avp-no { background: #222; color: #fff; }
@media (max-width:480px){
    .avp-btn{ min-width: 120px; padding: 10px 12px; font-size:14px; }
    #avp-popup{ padding:18px; }
}