.contact-popup-overlay {
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(20,30,60,0.68);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-popup-box {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 18px;
    max-width: 420px;
    width: 92vw;
    padding: 2.5em 2.3em 2em 2.3em;
    box-shadow: 0 6px 32px rgba(34,115,207,0.15);
    position: relative;
    text-align: center;
    animation: popup-fadein 0.35s;
}
@keyframes popup-fadein {
    from { transform: translateY(-32px) scale(0.96); opacity:0; }
    to { transform: translateY(0) scale(1); opacity:1; }
}
.contact-popup-message-state {
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
.contact-popup-message-state .answer {
    padding: 64px 0 12px 0;
    font-size: 1.18em;
    font-weight: 700;
    color: #fff;
    text-align: center;
    width: 100%;
    letter-spacing: 0.01em;
    background: none;
}
.contact-popup-message-state .close-msg-btn {
    display: inline-block;
    margin: 28px auto 0 auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    opacity: 0.95;
    transition: opacity 0.18s, text-decoration 0.18s;
    border-radius: 4px;
    padding: 0.3em 0.7em;
}
.contact-popup-message-state .close-msg-btn:hover,
.contact-popup-message-state .close-msg-btn:focus {
    opacity: 1;
    background: none;
}
@media (max-width: 600px) {
    .contact-popup-box {
        padding: 1.2em 0.7em 0.7em 0.7em;
    }
    .contact-popup-message-state .answer {
        font-size: 1.05em;
        padding: 32px 0 12px 0;
    }
}