
      
    


      
     


      {} *{} {}
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #e2f9ff; min-height: 100vh; display: flex; align-items: center; justify-content: center; margin: 0; padding: 20px; } .loading { text-align: center; color: #2c3e50; background: rgba(255, 255, 255, 0.9); padding: 40px; border-radius: 20px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); border: 1px solid rgba(255, 255, 255, 0.8); } .spinner { width: 40px; height: 40px; border: 4px solid rgba(44, 62, 80, 0.3); border-top: 4px solid #2c3e50; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } h2 { margin: 0 0 10px; font-size: 24px; } p { margin: 0; opacity: 0.8; font-size: 16px; } .error { background: rgba(231, 76, 60, 0.1); border: 1px solid rgba(231, 76, 60, 0.3); padding: 20px; border-radius: 10px; margin-top: 20px; } 

