.loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #121f16 0%, #2e4d38 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    color: rgb(255, 255, 255);
    overflow: hidden;
}

.loading-content {
    text-align: center;
    margin-top: -15em;
}

.loading-subtext {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2em;
    margin-top: -10px;
    color: #a3c9ae;
    text-shadow: 0 0 15px rgba(132, 173, 146, 0.4);
    animation: fadeIn 3s ease-in-out;
}

.spinner {
    width: 120px;
    height: 120px;
    border: 6px solid #2d4534;
    border-top: 6px solid #84ad92;
    border-right: 6px solid #a3c9ae;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
    margin-top: 30em;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(132, 173, 146, 0.25);
}

.loading-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5em;
    animation: fadeIn 3s ease-in-out;
    margin-bottom: 20px;
    color: #84ad92;
    text-shadow: 0 0 20px rgba(132, 173, 146, 0.3);

    /* Dark mode for loading screen */
    .dark .loading-screen {
        background: linear-gradient(135deg, #0c120e 0%, #1f3325 100%);
    }

    .dark .loading-text {
        color: #84ad92;
        text-shadow: 0 0 20px rgba(132, 173, 146, 0.3);
    }

    .dark .loading-subtext {
        color: #e0ece3;
        text-shadow: 0 0 15px rgba(132, 173, 146, 0.3);
    }

    .dark .spinner {
        border: 6px solid #223628;
        border-top: 6px solid #84ad92;
        border-right: 6px solid #a3c9ae;
        box-shadow: 0 4px 20px rgba(132, 173, 146, 0.25);
    }
}





@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    opacity: 0;
    visibility: hidden;
}