.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(-45deg, #0b0014, #1a0033, #2d0066, #0b0014);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  z-index: -2;
}

.hero-bg::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url('../img/nova-hero.jpg') center/cover no-repeat;
  opacity: 0.4;
  filter: brightness(0.6);
  z-index: -1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 9vw;
  font-weight: 900;
  background: linear-gradient(90deg, #b400ff, #ff0090, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(180,0,255,0.6);
  animation: glow 3s infinite alternate;
}

.tagline {
  font-size: 2rem;
  margin: 2rem 0;
  letter-spacing: 4px;
}

.tagline span {
  color: #ff0090;
  font-weight: 700;
}

.hero-buttons { margin-top: 3rem; }
.hero-buttons a { margin: 0 1rem; }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes glow { from { text-shadow: 0 0 20px rgba(180,0,255,0.4); } to { text-shadow: 0 0 60px rgba(255,0,144,0.8); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

