﻿html,
body {
    font-family: "Inter", sans-serif;
}

.loading-screen {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: #27272f;
}

.loading-title {
    font-size: 64px;
    font-weight: 800;
    color: #7c6beb;
}

.loading-logo {
    width: 32px;
    height: 32px;
}

.loading-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid #7c6beb;
    border-top: 4px solid #6750A4;
    animation: spin .8s linear infinite;
}

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