/* Pantalla inicial Browser/WebAssembly antes de que cargue Avalonia. */
.tsoft-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    background:
        radial-gradient(circle at 18% 18%, rgba(89, 121, 191, 0.18), transparent 28%),
        linear-gradient(135deg, #f3f7fb 0%, #eaf0f7 46%, #f7f9fc 100%);
    color: #1c2b45;
    font-family: Inter, 'Segoe UI', Arial, sans-serif;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    pointer-events: none;
}

.tsoft-splash-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border: 1px solid rgba(78, 103, 153, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(22, 35, 55, 0.14);
    backdrop-filter: blur(14px);
}

.tsoft-splash-card img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.tsoft-splash h1 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
}

.tsoft-splash p {
    margin: 4px 0 0;
    color: #62728c;
    font-size: 0.82rem;
    font-weight: 600;
}

.tsoft-splash span {
    color: #62728c;
    font-size: 0.86rem;
    font-weight: 500;
}

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