/* Background Image */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url("assets/GM\ \(90\).png") no-repeat center center;
  background-size: cover; /* Make sure it stretches to fit screen */
  font-family: "AeonikFono", sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Overlay container */
.overlay {
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  padding: 2rem;
  border-radius: 12px;
}

/* Title */
.site-title {
  font-family: "Rotax", sans-serif;
  font-size: 3rem;
  margin-bottom: 2rem;
}

/* Loader (spinning circle) */
.loader {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-top: 8px solid #ffffff;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Status text */
.status {
  font-size: 1.5rem;
  font-weight: 400;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }

  .loader {
    width: 60px;
    height: 60px;
    border-width: 6px;
  }

  .status {
    font-size: 1.2rem;
  }
}
