body {
      margin: 0;
      padding: 0;
      background-color: #1A1F2B;
      color: #ffffff;
      font-family: "Inter", sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      letter-spacing: 1px;
    }

    p {
      max-width: 500px;
      opacity: 0.85;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .loader {
      margin-top: 2.5rem;
      width: 48px;
      height: 48px;
      border: 4px solid rgba(255, 255, 255, 0.3);
      border-top-color: #ffffff;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

