.loading-body {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1025 50%, #0d0d18 100%) !important;
}

.loading-body .loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-body .loading-container img {
    width: 140px !important;
    height: 140px !important;
    border-radius: 28px !important;
    animation: loadingPulseCustom 1.8s ease-in-out infinite !important;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.5)) !important;
}

@keyframes loadingPulseCustom {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.8; }
}
