/* ── Shared navigation component ─────────────────── */

.app-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  background: #10283ddd;
  border-bottom: 1px solid #74d4d444;
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #ffd166;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  padding: 7px 14px;
  border-radius: 10px;
  color: #a7bfd1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  border: 1px solid #74d4d444;
}

.nav-link:hover {
  color: #edf7ff;
  background: #ffffff10;
}

.nav-link.active {
  color: #edf7ff;
  background: #ffffff18;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-user-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.auth-user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.ghost-sm {
  background: none;
  border: 1px solid #74d4d444;
  border-radius: 8px;
  color: #edf7ff;
  font-family: inherit;
  font-size: 0.82rem;
  padding: 4px 10px;
  cursor: pointer;
}

.ghost-sm:hover {
  background: #ffffff10;
}

.hidden {
  display: none !important;
}
