#app-splash {
    position: fixed;
    inset: 0;
    background: #09090b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity .35s ease;
}

#app-splash.fade-out {
    opacity: 0;
    pointer-events: none;
}

.logo {
    font-size: 40px;
    font-weight: bold;
    color: #ef4444;
    margin-bottom: 24px;
}

.loader {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: #ef4444;
    animation: spin .8s linear infinite;
}

.load {
    color: #ef4444
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}