@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Syne:wght@500;600&display=swap');
body {
    background-color: #111114;
}
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;  /* left | center | right */
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  align-self: center;
}

.navbar-logo {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5DCAA5;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.navbar-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.03em;
}

.navbar-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.navbar-links a.active {
  color: #5DCAA5;
}

.navbar-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(93, 202, 165, 0.6);
  border: 0.5px solid rgba(93, 202, 165, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  justify-self: end;
}

.navbar-links > li {
  position: relative;
}

.navbar-links .nav-parent {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 14px;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.navbar-links .nav-parent:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav-arrow {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s;
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
 list-style: none;
  padding: 0;        /* ← removes the default ul indent */
  margin: 0;
  min-width: 160px;
  background: #111114;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 200;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.dropdown a:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown a.active { color: #5DCAA5; }

.dropdown-icon {
  font-size: 10px;
  opacity: 0.5;
}