body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  font-family: "Roboto", sans-serif;
}

#gridCanvas {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

canvas {
  display: block;
  background-color: #020617;
}

* {
  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;
  color: #fff;
  text-align: center;
}

.hero-content {
  max-width: 800px;
}

form {
  pointer-events: auto;
}

h1 {
  pointer-events: auto;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

p {
  pointer-events: auto;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

input[type="text"] {
  pointer-events: auto;
}

.cta-btn {
  pointer-events: auto;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-family: "Orbitron", sans-serif;
  background-color: transparent;
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(14, 165, 233, 0.2);
  transition: all 0.4s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  color: white;
  box-shadow: 0px 0px 15px rgba(14, 165, 233, 0.8),
    0px 0px 30px rgba(14, 165, 233, 0.6);
}

.cta-btn:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    max-width: 95%;
  }
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}
