.hero {
  position: relative;
  padding: 120px 20px 100px;
  text-align: center;
  color: white;

  background:
    radial-gradient(circle at 30% 40%, rgba(255,215,0,0.15), transparent 60%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.08), transparent 65%),
    linear-gradient(180deg, #0a1a2f, #05070d);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;

  text-shadow:
    0 0 10px rgba(255,215,0,0.5),
    0 0 25px rgba(255,215,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.85;
}

.hero-cta {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: #fff;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  
}
