/* Canonical nav styles - Single source of truth for all navigation */
.header {
  background: #000;
  border-bottom: 2px solid #333;
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
  position: sticky; 
  top: 0; 
  z-index: 1000;
  min-height: 80px;
}

.header-content {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 10px 20px; 
  display: flex; 
  align-items: center; 
  justify-content: flex-start;
  min-height: 80px;
  box-sizing: border-box;
}

.logo-link { 
  text-decoration: none;
  margin-right: 40px;
}

.header-logo { 
  height: 60px; 
  width: auto; 
}

.navigation { 
  display: flex; 
  gap: 20px; 
  align-items: center; 
}

.nav-link {
  color: #e0e0e0; 
  text-decoration: none; 
  font-weight: 700; 
  font-size: 18px;
  padding: 8px 16px; 
  border-radius: 12px; 
  transition: all .3s ease; 
  position: relative;
  text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 0 0 8px rgba(255,255,255,.3);
  border: 2px solid transparent; 
  font-family: "Arial Black", Arial, sans-serif; 
  letter-spacing: 0px;
  text-align: center; 
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-link:hover {
  background: #444; 
  color: #fff; 
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255,255,255,.15), 0 0 20px rgba(255,255,255,.1);
}

.nav-link.active {
  background: #555; 
  color: #fff; 
  font-weight: 800;
  text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 0 0 15px rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.4); 
  transform: scale(1.02);
}

.nav-link.active::after {
  content: ""; 
  position: absolute; 
  bottom: -10px; 
  left: 50%; 
  transform: translateX(-50%);
  width: 40px; 
  height: 4px; 
  background: #fff; 
  border-radius: 2px; 
  box-shadow: 0 0 15px #fffc;
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
  .header-content { 
    padding: 8px 15px; 
    gap: 15px; 
    flex-wrap: wrap; 
  }
  .header-logo { 
    height: 45px; 
  }
  .navigation { 
    gap: 15px; 
    width: 100%; 
    justify-content: center; 
  }
  .nav-link { 
    font-size: 16px; 
    padding: 10px 16px; 
  }
}

@media (max-width: 480px) {
  .navigation { 
    gap: 10px; 
  }
  .nav-link { 
    font-size: 14px; 
    padding: 8px 12px; 
  }
}