
  body {
    margin: 0;
    padding: 0;
    background-color: #0F172A;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }

  #loading {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0F172A;
  }

  .loader-container {
    text-align: center;
    color: white;
  }

  .logo {
    width: 90px;
    height: 90px;
    background: #2563EB;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 42px;
  }

  h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 28px;
  }

  p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
  }

  .spinner {
    width: 38px;
    height: 38px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #2563EB;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
  }

  @keyframes spin {
    100% {
      transform: rotate(360deg);
    }
  }

