/* shared-nav.php extracted styles */

.global-nav{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(12px);
  background: rgba(10,15,25,.85);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.global-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.global-brand{
  font-weight:600;
  letter-spacing:.3px;
}
.global-brand a{
  text-decoration:none;
  color:#eaf2ff;
}
.global-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.global-links a{
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  text-decoration:none;
  color:#eaf2ff;
  transition:.15s ease;
}
.global-links a:hover{ background:rgba(255,255,255,.07); }
.global-links a.active{
  background:linear-gradient(135deg,#7dd3fc,#c4b5fd);
  color:#000;
  border:none;
}
