/* Shared Navigation Styles */
.an-nav {
  background: #12151c;
  border-bottom: 1px solid #1e2230;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.an-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.an-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.an-logo em {
  font-style: normal;
  color: #3BE0FF;
}
.an-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.an-link {
  color: #8b92a5;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: color 0.15s, background 0.15s;
}
.an-link:hover {
  color: #3BE0FF;
  background: rgba(59, 224, 255, 0.05);
}
.an-link.active {
  color: #3BE0FF;
}

/* Dropdown */
.an-dropdown {
  position: relative;
}
.an-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #181c25;
  border: 1px solid #252a36;
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 1001;
}
.an-dropdown:hover .an-dropdown-menu {
  display: block;
}
.an-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #8b92a5;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s, background 0.15s;
}
.an-dropdown-menu a:hover {
  color: #fff;
  background: rgba(59, 224, 255, 0.08);
}

/* Hamburger */
.an-hamburger {
  display: none;
  background: none;
  border: 1px solid #252a36;
  border-radius: 0.375rem;
  color: #fff;
  font-size: 1.3rem;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
}
.an-hamburger:hover {
  border-color: #3BE0FF;
  color: #3BE0FF;
}

/* Mobile Menu */
.an-mobile {
  display: none;
  padding: 1rem 1.5rem;
  border-top: 1px solid #1e2230;
}
.an-mobile.open {
  display: block;
}
.an-mobile-section {
  margin-bottom: 1rem;
}
.an-mobile-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a6278;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.an-mobile a {
  display: block;
  padding: 0.4rem 0;
  color: #8b92a5;
  text-decoration: none;
  font-size: 0.9rem;
}
.an-mobile a:hover {
  color: #3BE0FF;
}

@media (max-width: 768px) {
  .an-links { display: none; }
  .an-hamburger { display: block; }
}
