.wg-header {
  width: 100%;
  background: rgba(2, 6, 23, 0.96);
  border-bottom: 1px solid #334155;
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.wg-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wg-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}

.wg-brand-icon {
  width: 38px;
  height: 38px;
  background: #2563eb;
  border: 1px solid #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wg-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wg-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border: 1px solid transparent;
}

.wg-menu a:hover {
  background: #0f172a;
  border-color: #334155;
  color: #fff;
}

.wg-menu a.active {
  background: #1d4ed8;
  border-color: #60a5fa;
  color: #fff;
}

.wg-menu-btn {
  display: none;
  border: 1px solid #334155;
  background: #0f172a;
  color: #fff;
  font-size: 24px;
  padding: 6px 12px;
  cursor: pointer;
}

@media (max-width: 850px) {
  .wg-nav {
    flex-wrap: wrap;
  }

  .wg-menu-btn {
    display: block;
  }

  .wg-menu {
    display: none;
    width: 100%;
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .wg-menu.show {
    display: flex;
  }

  .wg-menu a {
    background: #0f172a;
    border: 1px solid #334155;
    padding: 13px;
  }
}