/* Стиль для splash screen */
@media all and (display-mode: standalone) {
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/splash/splash-screen.png') no-repeat center center;
        background-size: cover;
        z-index: 9999;
        pointer-events: none;
    }

    /* Убираем splash после загрузки приложения */
    body.loaded::before {
        display: none;
    }
}