/* Add this CSS to your WordPress theme's style.css or custom CSS */

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.logo-container {
    margin-bottom: 10px;
    opacity: 0;
}

.logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 150, 255, 0.3));
}

.progress-container {
    width: 400px;
    max-width: 80%;
    position: relative;
    opacity: 0;
}


.progress-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9559fc 0%, #0195ff 100%);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
    position: relative;
}
.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
     font-family: 'General Sans', sans-serif;
}

.loading-dots {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    opacity: 0;
}

.dot {
    width: 10px;
    height: 10px;
    background: #0096ff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 200px;
    }
    
    .progress-container {
        width: 300px;
    }
    
    .progress-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 150px;
    }
    
    .progress-container {
        width: 250px;
    }
    
    .logo-container {
        margin-bottom: 40px;
    }
}