.nav-band {
  width: 100%;
  background: linear-gradient(90deg, rgba(4, 200, 255, 0.15) 0%, rgba(77, 243, 255, 0.12) 50%, rgba(4, 200, 255, 0.15) 100%);
  border-top: 1px solid rgba(77, 243, 255, 0.4);
  border-bottom: 2px solid rgba(77, 243, 255, 0.6);
  box-shadow: 0 4px 16px rgba(77, 243, 255, 0.2);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  padding: 12px 16px;
  position: relative;
  z-index: 100;
  box-sizing: border-box;
}

.nav-band a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(77, 243, 255, 0.5);
  background: rgba(5, 8, 20, 0.6);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-band a:hover {
  background: rgba(77, 243, 255, 0.15);
  border-color: #4df3ff;
  box-shadow: 0 0 12px rgba(77, 243, 255, 0.6);
  transform: translateY(-2px);
}
