#site-move-popup {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 24px;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

#site-move-popup .popup-box {
    width: 82%;
    max-width: 980px;
    min-height: 560px;
    background: #546670;
    border-radius: 36px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 60px;
    box-sizing: border-box;
    position: relative;
}

#site-move-popup .popup-icon {
    font-size: 74px;
    margin-bottom: 20px;
}

#site-move-popup h2 {
    color: #ffffff;
    font-size: 58px;
    line-height: 1.08;
    margin: 0 0 26px 0;
    font-weight: 800;
    max-width: 850px;
}

#site-move-popup p {
    color: rgba(255,255,255,0.9);
    font-size: 23px;
    line-height: 1.5;
    max-width: 720px;
    margin: 0 0 44px 0;
    font-weight: 400;
}

#site-move-popup a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 46px;
    background: #df1e38;
    color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 700;
    transition: 0.25s ease;
}

#site-move-popup a:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

#site-move-popup .close-popup {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 42px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.85;
}

#site-move-popup .close-popup:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    #site-move-popup {
        padding: 14px;
        align-items: center;
    }

    #site-move-popup .popup-box {
        width: 100%;
        min-height: auto;
        border-radius: 24px;
        padding: 56px 22px 34px;
    }

    #site-move-popup .popup-icon {
        font-size: 44px;
        margin-bottom: 18px;
    }

    #site-move-popup h2 {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 18px;
        max-width: 360px;
    }

    #site-move-popup p {
        font-size: 17px;
        line-height: 1.45;
        max-width: 340px;
        margin-bottom: 30px;
    }

    #site-move-popup p br {
        display: none;
    }

    #site-move-popup a {
        width: 100%;
        font-size: 16px;
        padding: 18px 16px;
        border-radius: 14px;
    }

    #site-move-popup .close-popup {
        top: 18px;
        right: 18px;
        font-size: 38px;
    }
}