.deathwow-nav {
  background: url('../img/nav-bg-clean.png') no-repeat center center;
  background-size: cover;
  height: 100px;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

body {
  padding-top: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 40px;
  width: 100%;
  justify-content: space-between;
}

.nav-links > li {
  flex: 1;
  text-align: center;
}

.nav-links li.logo {
  flex: 0;
  display: flex;
  justify-content: center;
}

.nav-links li a {
  font-family: 'Cinzel', serif;
  color: #66ff99; /* Verde brillante */
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  text-shadow: 0 0 4px #33ff66, 0 0 8px #00ff99;
}

.nav-links li a:hover {
  color: #99ffcc;
  text-shadow: 0 0 10px #33ff66, 0 0 20px #33ff66, 0 0 30px #00ffcc;
  transform: scale(1.05);
}

.nav-links li.logo .logo-img {
  height: 80px;
  width: auto;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
  filter: brightness(1);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0);
}

.nav-links li.logo .logo-img:hover {
  filter: brightness(1.7);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}
