/* HTML styles for the EZ Level Up boot splash shown while the WASM app loads. */
.avalonia-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    justify-content: center;
    align-items: center;
    display: flex;
    pointer-events: none;
}

/* Light theme styles */
@media (prefers-color-scheme: light) {
    .avalonia-splash {
        background: white;
    }
}

@media (prefers-color-scheme: dark) {
    .avalonia-splash {
        background: #1b2a4e;
    }
}

/* EZ Level Up app-icon logo. Gentle pulse so the boot splash reads as "loading". */
.avalonia-splash .ezlu-splash-logo {
    width: 160px;
    height: 160px;
    max-width: 40vw;
    max-height: 40vw;
    animation: ezlu-splash-pulse 1.6s ease-in-out infinite;
}

@keyframes ezlu-splash-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.94); }
}

@media (prefers-reduced-motion: reduce) {
    .avalonia-splash .ezlu-splash-logo {
        animation: none;
    }
}

.avalonia-splash.splash-close {
    transition: opacity 200ms, display 200ms;
    display: none;
    opacity: 0;
}
