
body {
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #E0E0E0;
}

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

.hero h1 {
  font-size: 3rem;
}

.hero .highlight {
  color: #FF2EC8;
}

.text-purple {
  color: #6C2DC7;
}

.text-accent {
  color: #00FFFF;
}

.btn-accent {
  background-color: #00E5FF;
  border: none;
  color: #111;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
}

.btn-accent:hover {
  background-color: #FF2EC8;
  color: #fff;
}

svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.dot {
  r: 2%;
}

.dot1 {
  fill: #00E5FF;
}

.dot2 {
  fill: #FF2EC8;
}

/* Parallax Shapes */
.parallax .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  z-index: -2;
  will-change: transform;
}

.shape1 {
  width: 100px;
  height: 100px;
  background: #6C2DC7;
  top: 10%;
  left: 15%;
}

.shape2 {
  width: 150px;
  height: 150px;
  background: #00E5FF;
  bottom: 20%;
  right: 20%;
}

.shape3 {
  width: 80px;
  height: 80px;
  background: #FF2EC8;
  top: 30%;
  right: 10%;
}
