* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
  margin: 0;
  font-family: 'Arial Black', sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  transition: box-shadow 0.3s ease;
  z-index: 100;
}
.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 229, 255, 0.5);
}
.navbar .logo {
  font-size: 1.5rem;
  color: #d4af37; /* Gold */
}
.navbar a {
  color: #f5f5f5;
  text-decoration: none;
  margin: 0 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #00e5ff; /* Neon Blue */
  transition: width 0.3s ease;
}
.navbar a:hover {
  color: #00e5ff;
}
.navbar a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}
.hero h1 {
  font-size: 3rem;
  color: #d4af37;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f5f5f5;
}

/* CTA Button (Black + Gold + Neon Blue Glow) */
.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  color: #d4af37;
  border: 2px solid #d4af37;
  background: #000;
  text-decoration: none;
  transition: all 0.4s ease;
}
.cta-btn:hover {
  color: #00e5ff;
  border-color: #00e5ff;
  box-shadow: 0 0 20px #00e5ff, 0 0 40px #00e5ff;
  transform: translateY(-3px);
}

/* Section Fade-In Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s forwards;
  animation-delay: 0.3s;
  padding: 5rem 2rem;
  text-align: center;
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}