.navbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.left-nav {
  justify-self: start;
}

.center-nav {
  justify-self: center;
}

.right-nav {
  justify-self: end;
}

.logo,
.nav-item,
.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  display: block;
  object-fit: contain;
}

.logo a,
.nav-item a,
.discord-link a {
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
}

.live-indicator,
.offline-indicator {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 8px;
}

.live-indicator {
  background: #3ad06b;
}

.offline-indicator {
  background: #8b93a8;
}

.live-state span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.live-state .live-indicator + span {
  color: #66e191;
}

.live-state .offline-indicator + span {
  color: #b7becf;
}

@media (max-width: 768px) {
  .navbar {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }

  .left-nav,
  .center-nav,
  .right-nav {
    justify-self: start;
  }
}
