.loader-container {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 1s ease-in-out;
}

.loader-container img {
    width: 15vw;
    height: auto;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.spinner {
    width: 3vw;
    height: 3vw;
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-top-color: #748d5b;
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
    box-shadow: 0 0 12px #DEC38A;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 2rem;
    font-weight: 500;
    color: #6d8356;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 450px) {
    .loader-container img {
        width: 30vw;
        height: auto;
    }

    .spinner {
        width: 8vw;
        height: 8vw;
    }

    .loading-text {
        font-size: 1rem;
    }
}