/* Buttons */
nav {
  margin-top: 40px;
}

.glow-button {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border: 2px solid #00ffff;
  color: #00ffff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px transparent;
}

.glow-button:hover {
  background: #00ffff;
  color: black;
  box-shadow: 0 0 25px #00ffff, 0 0 50px #00ffff;
  transform: scale(1.1);
}

/* Main */
main {
  margin-top: 60px;
  padding: 20px;
}

main h2 {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 15px;
}

main p {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 600px;
  margin: auto;
}

/* Footer */
footer {
  margin-top: 100px;
  color: #888;
  font-size: 0.9rem;
}

/* 🔥 General Style */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: radial-gradient(circle at top left, #120038, #000);
  text-align: center;
}

/* 🌐 Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s;
}

.nav-links a:hover {
  border-color: #ff00ff;
  box-shadow: 0 0 15px #ff00ff;
  color: #ff00ff;
}
