* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #05070d;
  color: rgb(180, 128, 43);
}

.viz-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#webgl-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.viz-hero-content {
  position: relative;
  z-index: 10;
  padding: 100px;
  max-width: 600px;
}

.viz-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00d4ff, #7b61ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.viz-hero-content p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.viz-hero-content button {
  padding: 12px 24px;
  border: none;
  background: linear-gradient(90deg, #00d4ff, #7b61ff);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.viz-hero-content button:hover {
  transform: scale(1.05);
}