
body {
  margin: 0;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  background-color: black;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo .highlight {
  color: #f1c40f;
}

.nav-links li {
  display: inline-block;
  margin-left: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f1c40f;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero .highlight {
  color: #f1c40f;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #f1c40f;
  color: #000;
  border-radius: 50px;
  margin-top: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
