/* mobile-block.css — full-screen block shown to phone browsers only (see
   assets/js/mobile-block.js for detection). Tablets, laptops, and desktops
   never see this. */

html.vmb-locked, html.vmb-locked body { overflow: hidden !important; height: 100%; }

#vault-mobile-block {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: radial-gradient(circle at 50% 20%, #14141a 0%, #0a0a0d 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 22px;
}
#vault-mobile-block .vmb-box {
    max-width: 380px;
    width: 100%;
    text-align: center;
}
#vault-mobile-block .vmb-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 28px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0,229,153,0.35));
}
#vault-mobile-block .vmb-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}
#vault-mobile-block h1 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}
#vault-mobile-block p {
    margin: 0 0 12px;
    font-size: 0.92rem;
    color: #9ca3af;
    line-height: 1.6;
}
#vault-mobile-block .vmb-sub {
    color: #00E599;
    font-weight: 600;
    font-size: 0.86rem;
}
#vault-mobile-block .vmb-anyway {
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #cbd5e1;
    font-size: 0.82rem;
    font-family: inherit;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
}
#vault-mobile-block .vmb-anyway:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
