body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f172a;
  color: white;
}

canvas#background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  color: #4ade80;
  margin-bottom: 1rem;
}

p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
}

.gear {
  font-size: 3rem;
  margin-top: 2rem;
  animation: spin 5s linear infinite;
}

footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #5f6874;
  z-index: 2;
  text-align: center;
}

.footer-text {
  color: white;
  font-size: 14px;
  margin: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
