/* NeonHallows DDRMenu — horizontal bar, nested flyouts */
.nh-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}
.nh-nav__item { position: relative; }
.nh-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  color: #9ad8e8;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nh-nav__link:hover,
.nh-nav__item--current > .nh-nav__link,
.nh-nav__item--selected > .nh-nav__link {
  color: #00f0ff;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.12), rgba(255, 43, 214, 0.12));
  border-bottom-color: #ff2bd6;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.65);
}
.nh-nav__caret { font-size: 11px; opacity: 0.75; color: #ff2bd6; }

.nh-nav__sub {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: linear-gradient(180deg, #0c1622, #070b12);
  border: 1px solid rgba(0, 240, 255, 0.45);
  box-shadow: 8px 12px 28px rgba(0,0,0,0.65), 0 0 18px rgba(255, 43, 214, 0.15);
  z-index: 40;
}
.nh-nav__item:hover > .nh-nav__sub,
.nh-nav__item:focus-within > .nh-nav__sub,
.nh-nav__item.is-open > .nh-nav__sub { display: block; }

.nh-nav__sub .nh-nav__link {
  padding: 10px 16px;
  letter-spacing: 0.1em;
  border-bottom: 0;
}
.nh-nav__sub .nh-nav__item--parent > .nh-nav__link .nh-nav__caret {
  margin-left: auto;
  transform: rotate(-90deg);
}

.nh-nav__sub .nh-nav__sub {
  left: 100%;
  top: 0;
}

@media (max-width: 980px) {
  .nh-nav { flex-direction: column; align-items: stretch; }
  .nh-nav__sub,
  .nh-nav__sub .nh-nav__sub {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: rgba(0, 240, 255, 0.05);
    padding-left: 12px;
  }
  .nh-nav__item.is-open > .nh-nav__sub { display: block; }
}

