/* Loading Particles Animation */
.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.loading-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
    animation: particleFloat 6s ease-in-out infinite;
}

body.dark-theme .loading-particle {
    background: rgba(0, 240, 255, 1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 1);
}

.loading-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.loading-particle:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.loading-particle:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.loading-particle:nth-child(4) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 5.5s;
}

.loading-particle:nth-child(5) {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 6.5s;
}

@keyframes particleFloat {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(30px) scale(0.5);
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .loading-logo-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .loading-brand-name {
        font-size: 2rem;
    }
    
    .loading-tagline {
        font-size: 0.85rem;
    }
    
    .loading-percentage {
        font-size: 2rem;
    }
    
    .loading-status {
        font-size: 0.8rem;
    }
    
    .loading-progress-section {
        max-width: 90%;
    }
    
    .loading-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

