:root {
  --az-magenta: #cc00cc;
  --az-black: #111111;
  --az-cream: #f5f0e8;
  --az-green: #00e64d;
  --az-white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--az-black);
  color: var(--az-green);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--az-magenta);
  text-transform: uppercase;
}

p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 2rem;
}

.badge {
  width: 50%;
  background: var(--az-magenta);
  color: var(--az-cream);
  padding: 0.5em 1.5em;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comingsoon-image {
  width: 60%;
  margin-bottom: 2rem;
}

#gridCanvas {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
}

canvas {
  display: block;
  background-color: var(--az-black);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero {
  pointer-events: none;
  z-index: 3;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    max-width: 95%;
  }
  .badge {
    width: 80%;
    font-size: 1.2rem;
  }
  p {
    font-size: 1rem;
  }
}
