body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #0d1009;
  color: #f2f2e9;
  font-family: system-ui, sans-serif;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #d1a14f;
  margin-bottom: 1rem;
}

p {
  max-width: 400px;
  line-height: 1.6;
  color: #d6d6c2;
}

.loader {
  margin-top: 2rem;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #d1a14f;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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