/* ── Splash screen ─────────────────────────────────────────────────────── */
.avalonia-splash {
    position: absolute;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

/* Fade-out when Avalonia is ready */
.avalonia-splash.splash-close {
    transition: opacity 300ms ease-out;
    opacity: 0;
    pointer-events: none;
}

/* ── Inner layout ──────────────────────────────────────────────────────── */
.sb-splash {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.sb-logo {
    width: 240px;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

/* ── Loading row ───────────────────────────────────────────────────────── */
.sb-loading {
    display: flex;
    align-items: flex-end;
    gap: 0;
    font-family: 'Montserrat', 'Outfit', 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #9900FF;          /* NewPurple */
    text-transform: uppercase;
}

.sb-loading-text {
    margin-right: 2px;
    line-height: 1;
}

/* ── Cascading dots ────────────────────────────────────────────────────── */
.sb-dot {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 0.6;          /* pull dots down to baseline */
    color: #F47920;            /* NewOrange */
    font-weight: 900;
    animation: sbDotBounce 1.2s ease-in-out infinite;
}

.sb-dot1 { animation-delay: 0s;     }
.sb-dot2 { animation-delay: 0.18s;  }
.sb-dot3 { animation-delay: 0.36s;  }

@keyframes sbDotBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.25;
    }
    30% {
        transform: translateY(-7px);
        opacity: 1;
    }
}
