.gg-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid var(--gg-border);
  background: rgba(8, 13, 27, 0.82);
  backdrop-filter: blur(18px);
}

.gg-header-inner {
  width: min(var(--gg-max), calc(100% - (var(--gg-page-pad) * 2)));
  min-height: 74px;
  margin: 0 auto;
  gap: 20px;
}

.gg-logo {
  display: inline-flex;
  width: clamp(158px, 13vw, 180px);
  align-items: center;
  flex: 0 0 auto;
  margin-right: 18px;
  text-decoration: none;
}

.gg-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.gg-static-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.gg-static-nav,
.gg-static-nav .wp-block-navigation__container {
  flex-wrap: nowrap;
  gap: 20px;
}

.gg-static-nav a,
.gg-static-nav .wp-block-navigation-item__content {
  color: var(--gg-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.gg-static-nav a:hover,
.gg-static-nav .wp-block-navigation-item__content:hover {
  color: var(--gg-green);
}

.gg-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.gg-login-link {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 13px;
}

.gg-start-link {
  min-height: 38px;
  padding: 9px 15px;
  font-size: 13px;
}

.gg-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--gg-border);
  border-radius: 999px;
  background: var(--gg-surface);
  color: var(--gg-text);
  cursor: pointer;
}

.gg-mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.gg-mobile-menu {
  position: fixed;
  top: 82px;
  right: var(--gg-page-pad);
  left: var(--gg-page-pad);
  z-index: 1001;
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--gg-border);
  border-radius: var(--gg-radius);
  background: var(--gg-bg-panel);
  box-shadow: var(--gg-shadow);
  backdrop-filter: blur(20px);
}

.gg-mobile-menu[hidden] {
  display: none;
}

.gg-mobile-menu a {
  padding: 13px 14px;
  border-radius: var(--gg-radius-sm);
  color: var(--gg-text);
  font-weight: 800;
  text-decoration: none;
}

.gg-mobile-menu a:hover {
  background: var(--gg-surface-strong);
}

.gg-mobile-start {
  background: linear-gradient(135deg, var(--gg-green), var(--gg-cyan));
  color: #07101d;
}

body.gg-mobile-menu-open {
  overflow: hidden;
}
