@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a0f;
  color: white;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(150, 0, 255, 0.5);
  position: sticky;
  top: 0;
}

nav h2 {
  color: #b267ff;
  font-weight: 700;
  font-size: 1.4rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffffcc;
  transition: 0.2s;
}

nav ul li a:hover {
  color: #b267ff;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 110px 25px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #b267ff;
  animation: fadeSlide 1s ease forwards;
}

.hero p {
  margin-top: 10px;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #a200ff, #6100ff);
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.25s;
}

.btn-primary:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px #8b00ff;
}

/* FOOTER */
footer {
  margin-top: 70px;
  padding: 20px;
  text-align: center;
  background: #11111a;
  color: rgba(255, 255, 255, 0.6);
}

/* ANIMATION */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}