/* Overlay */
.verification-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 10000;
}

/* Active */
.verification-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Popup card */
.popup-content {
    background: #ffffff;
    width: min(420px, 92%);
    padding: 26px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    transform: translateY(8px) scale(.97);
    transition: transform .25s ease, opacity .25s ease;
    text-align: left;
}

/* Animate in */
.verification-popup.is-visible .popup-content {
    transform: translateY(0) scale(1);
}

/* Header */
.popup-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
}

/* Close */
.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 20px;
    cursor: pointer;
    color: #64748b;
}

/* List */
.popup-verification-points {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.popup-verification-points li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .9rem;
    color: #334155;
}

.popup-verification-points i {
    color: #22c55e;
    margin-top: 2px;
}

/* CTA */
.contact-admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: .85rem;
    font-weight: 500;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    transition: background .2s ease;
}

.contact-admin-btn:hover {
    background: #1ebe5b;
}

/* Verified badge (inline) */
.verified-badge img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
}

/* Mobile refinement */
@media (max-width: 600px) {
    .popup-content {
        padding: 22px 18px;
    }
}
