.topbar {
  height: 78px;
  background: linear-gradient(180deg, rgba(2,10,23,.98), rgba(2,8,18,.94));
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.topbar-inner {
  gap: 18px;
}

.nav-links {
  gap: 2px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.nav-links a {
  height: 78px;
  padding: 0 13px;
  border-radius: 0;
  font-size: 11px;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(180deg, rgba(22,111,207,.18), rgba(5,46,98,.12));
  box-shadow: none;
}

.nav-links a.active:after {
  left: 12px;
  right: 12px;
  bottom: 2px;
  border-radius: 5px;
}

.account-btn {
  min-width: 178px;
  padding: 11px 14px;
  border-radius: 6px;
  letter-spacing: .04em;
}

.account-label {
  white-space: nowrap;
}

.account-name {
  display: block;
  padding: 7px 10px 9px;
  color: #6fc5ff;
  border-bottom: 1px solid rgba(75,153,225,.24);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 720px) {
  .topbar {
    height: 65px;
  }

  .nav-links {
    padding: 8px 13px 15px;
    border-radius: 0;
  }

  .nav-links a {
    height: 37px;
    border-radius: 4px;
  }
}
