body {
  margin: 0;
  overflow: hidden;
  background: black;
  font-family: 'Orbitron', sans-serif;
  color: #e0faff;
  transition: opacity 0.8s ease;
}

body.fade-out {
  opacity: 0;
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
}

#cursor-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: none;
}

.landing-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.title {
  font-size: 4rem;
  letter-spacing: 6px;
  margin: 0;
  text-shadow: 0 0 20px #00eaff;
}

.subtitle {
  font-size: 1.4rem;
  margin: 10px 0 40px;
  opacity: 0.8;
}

#engage-btn {
  padding: 14px 40px;
  font-size: 1rem;
  letter-spacing: 2px;
  border: 2px solid #00eaff;
  background: transparent;
  color: #00eaff;
  cursor: pointer;
  transition: 0.3s;
  text-shadow: 0 0 10px #00eaff;
}

#engage-btn:hover {
  background: #00eaff;
  color: black;
  box-shadow: 0 0 20px #00eaff;
}