/* ===========================================================================
   stp-menu.css — SuperTwentyPlus Global Neon Hamburger Menu
   =========================================================================== */

.stp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: rgba(0, 0, 0, 0.75);
  border-bottom: 2px solid #00f6ff;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  z-index: 99999;
  font-family: 'Orbitron', sans-serif;
}

.stp-nav-brand {
  font-size: 1.1rem;
  color: #00f6ff;
  letter-spacing: 0.5px;
}

.stp-nav-btn {
  background: none;
  border: none;
  font-size: 1.9rem;
  cursor: pointer;
  color: #00f6ff;
}

.stp-nav-menu {
  position: absolute;
  right: 22px;
  top: 70px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 10px 0;
  border: 1px solid #00f6ff;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
  z-index: 99999;
}

.stp-nav-menu.open {
  display: flex;
}

.stp-nav-menu a {
  padding: 10px 18px;
  font-size: 0.82rem;
  color: #9aa3ad;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
}

.stp-nav-menu a:hover {
  background: rgba(0, 255, 255, 0.15);
  color: #eaf1f7;
}
