#pfp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
}

.pfp-popup-inner {
    background: #ffffff;
    color: #333;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: "Helvetica Neue", sans-serif;
}

.pfp-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 20px;
    color: #888;
    cursor: pointer;
}

.pfp-popup-inner h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #004b8d;
}

.pfp-popup-inner p {
    font-size: 16px;
    margin-bottom: 20px;
}

.pfp-button {
    display: inline-block;
    background: #004b8d;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.pfp-button:hover {
    background: #0071c5;
}