
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, #ff89c3, #88e1f2);
  color: white;
  overflow-x: hidden;
}
nav {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1em;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav a {
  color: #00ffe1;
  margin: 0 1em;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  color: #ff66c4;
}
section {
  padding: 5em 2em;
  text-align: center;
}
.neon-text {
  text-shadow: 0 0 5px #fff, 0 0 10px #ff6ee3, 0 0 20px #ff6ee3, 0 0 40px #ff6ee3;
  font-size: 2.5em;
}
.box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  padding: 2em;
  border-radius: 15px;
  box-shadow: 0 0 10px #ff99cc;
}
