body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: url("./assets/background.png") no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.logo {
  width: 280px;
  margin-top: 60px;
  margin-bottom: 30px;
}

h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

p {
  font-size: 18px;
  max-width: 90%;
  margin: 0 auto;
}

.spinner {
  margin: 40px auto;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
}

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

/* 🔧 Mobile optimization */
@media screen and (max-width: 480px) {
  .logo {
    width: 220px;
  }

  h1 {
    font-size: 26px;
  }

  p {
    font-size: 16px;
  }

  .spinner {
    width: 28px;
    height: 28px;
  }
}
