.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.active {}

.nav.scrolled {
  background: rgba(5, 8, 16, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -1px;
}

.links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.link:hover {
  color: var(--text-primary);
}

.soundToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.soundToggle:hover {
  border-color: var(--aura-blue);
  color: var(--text-primary);
}

.soundToggle.active {
  border-color: var(--aura-electric);
  color: var(--aura-electric);
}

.cta {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--aura-blue) 0%, var(--aura-electric) 100%);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta:hover {
  box-shadow: 0 0 30px var(--aura-glow);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobileToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobileToggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.mobileToggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobileToggle.open span:nth-child(2) {
  opacity: 0;
}

.mobileToggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobileMenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobileMenu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobileLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 32px;
}

.mobileLink {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobileLink:hover {
  color: var(--text-primary);
}

.mobileCta {
  margin-top: 16px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--aura-blue) 0%, var(--aura-electric) 100%);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
}

/* Mobile sound toggle */
.mobileSoundToggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  margin-top: 24px;
}

.mobileSoundToggle.active {
  border-color: var(--aura-electric);
  color: var(--aura-electric);
}

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

  .mobileToggle {
    display: flex;
  }

  .mobileMenu {
    display: block;
  }

  .mobileSoundToggle {
    display: flex;
  }

  .mobileLink {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
