body {
  background-color: #000;
  color: white;
  font-family: 'Poppins', sans-serif;
}
.btn-glow {
  background: linear-gradient(90deg, #1e40af, #3b82f6);
  transition: all 0.3s ease;
}
.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(59,130,246,0.6);
}
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}
.menu-icon span {
  background: white;
  height: 3px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.mobile-dropdown {
  display: none;
  position: absolute;
  top: 60px;
  right: 10px;
  background-color: #111;
  border-radius: 10px;
  padding: 15px;
  width: 60%;
  flex-direction: column;
  text-align: left;
}
.mobile-dropdown a {
  display: block;
  padding: 10px 0;
  color: white;
}
.mobile-dropdown.show {
  display: flex;
}
