body {
  font-family: 'Orbitron', sans-serif;
  background: black;
  color: rgb(62, 247, 16);
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 4px rgb(62, 247, 16);
}

p {
  opacity: 0;
  margin-bottom: 1rem;
  text-shadow: 0 0 2px rgb(62, 247, 16);
  animation: fadeIn 2s forwards;
}

p:nth-of-type(1) { animation-delay: 0.5s; }
p:nth-of-type(2) { animation-delay: 1s; }
p:nth-of-type(3) { animation-delay: 1.5s; }
p:nth-of-type(4) { animation-delay: 2s; }
p:nth-of-type(5) { animation-delay: 2.5s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

.cursor-glow {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(62, 247, 16, 0.3);
  box-shadow: 0 0 8px rgb(62, 247, 16);
  transform: translate(-50%, -50%);
}
