#pfwc-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#pfwc-popup {
    background: #f3f4f6;
    width: 90%;
    max-width: 700px;
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px dashed #22c55e;
    text-align: center;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    animation: pfwcIn .3s ease;
}

@keyframes pfwcIn {
    from { opacity: 0; transform: scale(.92); }
    to   { opacity: 1; transform: scale(1); }
}

#pfwc-close {
    position: absolute;
    top: -15px; right: -15px;
    background: #14532d;
    color: #fff;
    font-size: 20px;
    width: 35px; height: 35px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

#pfwc-title {
    font-size: 26px;
    font-weight: bold;
    color: #dc2626;
}

#pfwc-divider {
    height: 1px;
    background: #d1d5db;
    margin: 15px 0;
}

#pfwc-text {
    font-size: 18px;
    color: #dc2626;
    line-height: 1.6;
}

#pfwc-note {
    font-size: 18px;
    color: #111827;
    margin-top: 10px;
    font-weight: 500;
}

#pfwc-timer-bar {
    height: 4px;
    background: #d1d5db;
    border-radius: 4px;
    margin-top: 18px;
    overflow: hidden;
}

#pfwc-timer-fill {
    display: block;
    height: 100%;
    width: 100%;
    background: #22c55e;
    transform-origin: left;
}
