@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;600;700&display=swap');

.navbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: rgba(8, 0, 16, 0.9);
  border-top: 1px solid rgba(120, 50, 190, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  font-family: 'Figtree', sans-serif;
}

.navbar-brand {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: #c084fc;
  letter-spacing: 0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: rgba(192, 132, 252, 0.6);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.15s;
}

.nav-link:hover, .nav-link.active {
  color: #e2d4f0;
}

.dropdown { position: relative; }

.dropdown-toggle {
  color: rgba(192, 132, 252, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s;
  user-select: none;
}

.dropdown-toggle:hover { color: #e2d4f0; }

.dropdown-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: rgba(10, 0, 22, 0.97);
  border: 1px solid rgba(120, 50, 190, 0.35);
  border-radius: 8px;
  min-width: 150px;
  padding: 4px 0;
  z-index: 1001;
}

.dropdown-menu.open { display: block; }

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  color: rgba(192, 132, 252, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: rgba(100, 30, 160, 0.2);
  color: #e2d4f0;
}