/* Block Free Emails – popup modal */

/* Body lock while modal is open */
.bfe-body-lock {
    overflow: hidden;
}

/* ── Overlay ──────────────────────────────────────────────────── */

.bfe-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(10, 10, 30, 0.60);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 20px;
    box-sizing: border-box;
}

.bfe-overlay.bfe-active {
    display: flex;
    animation: bfe-fade-in 0.22s ease both;
}

/* ── Modal card ───────────────────────────────────────────────── */

.bfe-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 40px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 4px 16px rgba(0,0,0,0.08),
        0 20px 60px rgba(0,0,0,0.22);
    animation: bfe-slide-up 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    position: relative;
    overflow: hidden;
}

/* Top accent bar */
.bfe-modal::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 20px 20px 0 0;
}

/* ── Icon ─────────────────────────────────────────────────────── */

.bfe-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    background: #fff7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
}

.bfe-icon svg {
    width: 32px;
    height: 32px;
}

/* ── Badge ────────────────────────────────────────────────────── */

.bfe-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

/* ── Typography ───────────────────────────────────────────────── */

.bfe-title {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 14px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em;
}

.bfe-message {
    font-size: 0.975rem !important;
    color: #4b5563 !important;
    line-height: 1.7 !important;
    margin: 0 0 32px !important;
}

/* ── Button ───────────────────────────────────────────────────── */

.bfe-btn {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    padding: 15px 32px;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: filter 0.18s, transform 0.12s;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    text-decoration: none !important;
    letter-spacing: 0.01em;
    outline-offset: 3px;
}

.bfe-btn:hover {
    filter: brightness(1.08);
}

.bfe-btn:active {
    transform: scale(0.97);
    filter: brightness(0.96);
}

.bfe-btn:focus-visible {
    outline: 3px solid #10b981;
}

/* ── Animations ───────────────────────────────────────────────── */

@keyframes bfe-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes bfe-slide-up {
    from { transform: translateY(24px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* ── Mobile ───────────────────────────────────────────────────── */

@media (max-width: 520px) {
    .bfe-modal {
        padding: 40px 24px 32px;
        border-radius: 16px;
    }

    .bfe-title {
        font-size: 1.2rem !important;
    }

    .bfe-btn {
        width: 100%;
    }
}
