/* HTML styles for the splash screen */
.avalonia-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle, #141923 0%, #090b10 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    justify-content: center;
    align-items: center;
    display: flex;
    pointer-events: none;
    z-index: 9999;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loading-indicator {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(171, 71, 255, 0.15);
    border-radius: 50%;
    border-top-color: #00f0ff;
    animation: spin 1s ease-in-out infinite;
}

.loading-indicator span {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.powered-by {
    margin-top: 60px;
    color: #4a5568;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.powered-by a {
    color: #ab47ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    display: inline;
}

.powered-by a:hover {
    color: #00f0ff;
}

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

.avalonia-splash.splash-close {
    transition: opacity 300ms ease-out, visibility 0s ease 300ms;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
