:root {
    color-scheme: light;
}

body {
    margin: 0;
}

/* White fullscreen splash screen */
.splash-screen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    /* pure white background */
    transition: opacity 280ms ease;
    z-index: 9999;
}

body.app-loaded .splash-screen {
    opacity: 0;
    pointer-events: none;
}

/* Icon styling */
.splash-image {
    width: min(340px, 40vw);
    ;
    /* ← increase this value to make icon larger (e.g. 200px or 300px) */
    height: auto;
    transition: transform 240ms ease;
}

body.app-loaded .splash-image {
    transform: scale(0.98);
}