.global-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.global-nav-shell {
  width: min(calc(100% - 32px), 1280px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.global-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.global-brand-mark {
  display: block;
  width: 168px;
}

.global-brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.global-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.global-nav-links a {
  color: #b7b7b7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.global-nav-links a:hover,
.global-nav-links a:focus-visible {
  color: #f5f5f5;
}

.global-nav-links .global-action-link {
  color: #061010;
  background: linear-gradient(135deg, #22e5d1, #8d58ff, #ff53b8);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  white-space: nowrap;
}

.global-nav-links .global-action-link:hover,
.global-nav-links .global-action-link:focus-visible {
  color: #061010;
}

.global-nav-links a[aria-current="page"]:not(.global-action-link) {
  color: #f5f5f5;
}

.global-nav-links a:focus-visible,
.global-brand:focus-visible {
  outline: 2px solid #22e5d1;
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .global-nav-shell {
    min-height: 68px;
    flex-wrap: wrap;
    padding: 10px 0 12px;
  }

  .global-brand-mark {
    width: 145px;
  }

  .global-nav-links {
    display: flex;
    order: 2;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .global-nav-links::-webkit-scrollbar {
    display: none;
  }

  .global-nav-links a {
    flex: 0 0 auto;
  }
}
