/* Splash screen Kaweuz */

#kaweuz-splash {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0A0F1F 0%, #16243F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.6s ease-out;
}

#kaweuz-splash img {
    width: 140px;
    height: 140px;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

#kaweuz-splash.hidden {
    opacity: 0;
    pointer-events: none;
}
