.deathwow-nav {
  background: transparent;
  padding-top: 20px;
  position: relative;
  z-index: 10;
}

.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.nav-group {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-group li a {
  font-family: 'Warcraft', 'Cinzel', serif;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 18px;
  color: #66ff99;
  background-color: rgba(0, 20, 10, 0.4);
  border: 1px solid #33ff99;
  border-radius: 10px;
  box-shadow:
    inset 0 0 10px rgba(0, 255, 150, 0.3),
    0 0 12px rgba(0, 255, 180, 0.4);
  text-shadow:
    0 0 6px #00ffcc,
    0 0 12px #33ff99,
    0 0 18px #00cc66;
  transition: all 0.3s ease;
}

.nav-group li a:hover {
  background-color: rgba(0, 60, 30, 0.5);
  transform: scale(1.05);
  text-shadow:
    0 0 8px #00ffcc,
    0 0 18px #66ffcc,
    0 0 24px #33ff99;
  box-shadow:
    0 0 10px #00ffaa,
    0 0 25px #00ff99;
}

/* Logo central */
.nav-logo {
  margin-top: -10px;
  margin-left: -8px;
}

.nav-logo img {
  height: 85px;
  border-radius: 12px;
  border: 2px solid #00ff99;
  box-shadow:
    0 0 14px rgba(0, 255, 150, 0.7),
    0 0 28px rgba(0, 255, 200, 0.5),
    0 0 40px rgba(0, 255, 175, 0.4);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.3);
  box-shadow:
    0 0 20px rgba(0, 255, 200, 0.9),
    0 0 35px rgba(0, 255, 180, 0.6),
    0 0 55px rgba(0, 255, 160, 0.5);
}
