/* Loading Screen */
#app-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-app);
    z-index: var(--z-loader);
    /* Highest priority */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    transition: opacity 0.5s ease;
}

#app-loader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-glass);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

#app-loader h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}