/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, #04153f, #021334);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-container {
    text-align: center;
    max-width: 300px;
    width: 90%;
}

.loader-logo {
    margin-bottom: 30px;
}

.loader-logo img {
    width: 80px !important;
    max-width: 80px !important;
    height: auto !important;
    filter: brightness(0) invert(1);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(3, 185, 200, 0.3);
    border-top-color: #03b9c8;
    border-right-color: #84cc16;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 0.8s linear infinite;
}

.loader-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #03b9c8, #84cc16);
    border-radius: 3px;
    transition: width 0.3s ease;
}

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