align-items: center; height: 100vh; background: linear-gradient(135deg, #6B4EFF 0%, #2196F3 100%); font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif; } .loading-logo { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.2); border-radius: 20px; display: flex; justify-content: center; align-items: center; margin-bottom: 24px; animation: pulse 2s ease-in-out infinite; } .loading-logo svg { width: 48px; height: 48px; fill: white; } .loading-text { color: white; font-size: 24px; font-weight: 600; margin-bottom: 8px; } .loading-subtext { color: rgba(255, 255, 255, 0.8); font-size: 14px; } .loading-spinner { width: 40px; height: 40px; border: 3px solid rgba(255, 255, 255, 0.3); border-top: 3px solid white; border-radius: 50%; animation: spin 1s linear infinite; margin-top: 24px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }