/* ========== 仙宝心灵成长 共享顶栏 ========== */
.xianbao-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148,163,184,0.08);
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  min-height: 44px;
}
.xianbao-topbar .brand-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.88rem;
  transition: 0.2s;
  flex-shrink: 0;
}
.xianbao-topbar .brand-link:hover {
  color: #f1f5f9;
}
.xianbao-topbar .nav-links {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
  flex: 1;
}
.xianbao-topbar .nav-links::-webkit-scrollbar {
  display: none;
}
.xianbao-topbar .nav-links a {
  color: #64748b;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  transition: 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.xianbao-topbar .nav-links a:hover {
  color: #22d3ee;
  background: rgba(255,255,255,0.04);
}
.xianbao-topbar .nav-links a.active {
  color: #22d3ee;
}
.xianbao-topbar #xianbao-auth {
  flex-shrink: 0;
}

/* ========== 站点页面顶部留白 ========== */
body {
  /* 各站自行设置padding-top */
}

/* ========== 响应式 ========== */
@media (max-width: 640px) {
  .xianbao-topbar {
    padding: 4px 10px;
    min-height: 40px;
    gap: 4px;
  }
  .xianbao-topbar .brand-link {
    font-size: 0.78rem;
  }
  .xianbao-topbar .nav-links a {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  .xianbao-topbar #xianbao-auth {
    font-size: 0.7rem;
  }
}
