/* ========================================
   PROFESSIONAL LOADING SCREEN
   Purple Glass Theme - Logo Only
   ======================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
}

/* Logo Container */
.loading-logo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    position: relative;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.5));
}

/* Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .loading-logo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        width: 140px;
        height: 140px;
    }
}
