.splash-screen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut .7s ease-in-out 2s forwards;
}

.splash-screen.is-visible { display: flex; }

.splash-logo {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    animation: splashZoom .5s ease-out;
    filter: drop-shadow(0 0 30px rgba(255, 0, 46, 0.4));
}

@keyframes splashZoom {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

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

@media (max-width: 768px) {
    .splash-screen {
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }
}
