.page-loading body .vp-doc {
    opacity: 0;
}

.page-loading body::before {
    content: "Loading…";
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #666;
    font-size: 0.95rem;
    z-index: 10000;
    pointer-events: none;
}

.page-ready body .vp-doc {
    opacity: 1;
    transition: opacity 200ms ease;
}
