/* App Loading Screen */
.app-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.app-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    width: 300px;
    height: auto;
    animation: logoPulse 2s ease-in-out infinite;
    display: block;
    margin-bottom: 2rem;
}

.loader-progress-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    left: -100%;
    animation: loaderProgress 1.5s infinite ease-in-out;
}

@keyframes loaderProgress {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Removed text and dots - keeping only the logo */

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Removed dotPulse animation since dots are removed */

/* Responsive design */
@media (max-width: 768px) {
    .loader-logo {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        width: 150px;
    }
}