#fr20-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

#fr20-popup-overlay.fr20-popup-visible {
    opacity: 1;
    visibility: visible;
}

#fr20-popup-box {
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 40px 30px;
    position: relative;
    text-align: center;
    border-top: 4px solid #e30613;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

#fr20-popup-overlay.fr20-popup-visible #fr20-popup-box {
    transform: translateY(0);
}

#fr20-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #000;
}

#fr20-popup-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
}

#fr20-popup-content p {
    color: #333;
    margin-bottom: 20px;
    font-size: 15px;
}

#fr20-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#fr20-popup-email {
    padding: 12px 14px;
    border: 1px solid #ccc;
    font-size: 15px;
}

#fr20-popup-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease;
}

#fr20-popup-form button:hover {
    background: #e30613;
}

#fr20-popup-message {
    margin-top: 16px;
    font-size: 15px;
}

#fr20-popup-message.fr20-popup-success {
    color: #1a7a1a;
    font-size: 17px;
}