.site-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(7, 16, 24, .78);
  backdrop-filter: blur(18px);
}
.site-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.site-logo,
.site-links a {
  color: inherit;
  text-decoration: none;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}
.site-logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #061018;
  background: linear-gradient(135deg, #46e0ff, #7cffb2);
  box-shadow: 0 12px 34px rgba(70, 224, 255, .22);
}
.site-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.site-links a {
  padding: 8px 9px;
  border-radius: 8px;
  color: #a9bed1;
  font-size: 14px;
  line-height: 1.2;
}
.site-links a:hover,
.site-links a.active {
  color: #eef7ff;
  background: rgba(255, 255, 255, .08);
}
.site-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.site-actions select {
  height: 38px;
  min-width: 92px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: #eef7ff;
  background: rgba(255, 255, 255, .07);
  padding: 0 10px;
  font: inherit;
  line-height: 1;
}
.site-actions select option {
  color: #eef7ff;
  background: #071018;
}
[data-theme="light"] .site-topbar {
  background: rgba(248, 253, 255, .82);
}
[data-theme="light"] .site-links a,
[data-theme="light"] .site-actions select {
  color: #385163;
}
[data-theme="light"] .site-links a:hover,
[data-theme="light"] .site-links a.active {
  color: #102333;
  background: rgba(7, 16, 24, .07);
}
@media (max-width: 980px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 13px 0;
  }
  .site-links {
    justify-content: flex-start;
  }
}
