/* 整体 header 区域微调 */
.style-header {
  margin-top: 30px !important;
}

/* h2 行：让整行文字共享同一个渐变色 */
.style-header h2.title {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  margin: 0 !important;
  line-height: 1 !important;
  
  /* 核心：将渐变色应用在父级标题上 */
  background: linear-gradient(135deg, #16a34a 0%, #059669 55%, #0d9488 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* 中文「状态监控」与 英文「StatusLive」样式统一 */
.style-header h2.title .title-big,
.style-header h2.title #title-small {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
  line-height: 1 !important;
  -webkit-text-fill-color: transparent !important;
}

/* 时间副标题行 */
.style-header h4.title {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin-top: 12px !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  color: #64748b !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

/* 脉冲绿点 */
.style-header h4.title::before {
  content: "" !important;
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #22c55e !important;
  flex-shrink: 0 !important;
  animation: sl-pulse 1.8s ease-in-out infinite !important;
}

@keyframes sl-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}