@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
  margin: 0;
  background-color: #0d0d0d;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.neon-text {
  font-size: 5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px #00ffff,
               0 0 20px #ff00ff,
               0 0 30px #ff00ff;
  letter-spacing: 5px;
}

.tagline {
  font-size: 1.2rem;
  color: #ffffffcc;
  margin-top: 1rem;
  letter-spacing: 2px;
}
