/* THE FUTURE 24/7 — unified site navigation (clean primary row + More dropdown) */
.global-site-shell {
  position: sticky;
  top: 0;
  z-index: 10000;
  border-bottom: 1px solid rgba(56, 189, 248, 0.22);
  background: linear-gradient(180deg, rgba(4, 9, 20, 0.97), rgba(4, 9, 20, 0.9));
  backdrop-filter: blur(10px);
  font-family: "Inter", system-ui, sans-serif;
}

.global-site-shell .gss-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  flex-wrap: wrap;
}

.global-site-shell .gss-brand {
  color: #67e8f9;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(103, 232, 249, 0.45);
}

/* Primary nav — clean text links like the hero */
.global-site-shell .gss-primary {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.global-site-shell .gss-link {
  position: relative;
  text-decoration: none;
  color: #c3d3ec;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.16s ease;
}
.global-site-shell .gss-link:hover {
  color: #fff;
}
.global-site-shell .gss-link.current {
  color: #34d399;
}
.global-site-shell .gss-link.current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
}

/* Right-side actions */
.global-site-shell .gss-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}
.global-site-shell .gss-quick,
.global-site-shell .gss-btn,
.global-site-shell .gss-actions a#gssAdminChat {
  text-decoration: none;
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #dbeafe;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.12), rgba(15, 23, 42, 0.9));
  border-radius: 9px;
  padding: 6px 13px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.18s ease;
}
.global-site-shell .gss-quick:hover,
.global-site-shell .gss-btn:hover,
.global-site-shell .gss-actions a#gssAdminChat:hover {
  border-color: #38bdf8;
  color: #fff;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.45);
}

body.gss-enabled {
  scroll-padding-top: 80px;
}

@media (max-width: 760px) {
  .global-site-shell .gss-primary {
    order: 3;
    width: 100%;
    gap: 12px;
  }
  .global-site-shell .gss-actions {
    gap: 6px;
  }
}
