/* HTML styles for the splash screen */
.avalonia-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    color: #f8fafc;
}

.avalonia-splash h2 {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.avalonia-splash .subtitle {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 24px;
}

.avalonia-splash .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    border-top-color: #38bdf8;
    animation: spin 1s ease-in-out infinite;
}

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

.avalonia-splash.splash-close {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}
