/* App Loading Screen */
html,
body {
    background-color: #000000;
    margin: 0;
    padding: 0;
}

.app-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #000000;
}

.app-loading-spinner {
    width: 80px;
    height: 80px;
    animation: app-spin 1s linear infinite;
}

.app-loading-text {
    margin-top: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #F97316;
    font-weight: 600;
}

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