/* Fixed status bar — mirrors perps-dex-ui .statusbar */
body.has-site-statusbar {
  padding-bottom: 34px;
}

.site-statusbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  height: 34px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg40);
  white-space: nowrap;
  overflow: hidden;
}

.site-statusbar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.site-statusbar b {
  color: var(--fg);
  font-weight: 500;
}

.site-statusbar .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg40);
  flex-shrink: 0;
}

.site-statusbar.is-live .dot {
  background: #fff;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.45);
  animation: site-status-pulse 2s infinite;
}

@keyframes site-status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.site-status-right {
  margin-left: auto;
  color: var(--fg40);
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 720px) {
  .site-statusbar {
    gap: 10px;
    padding: 0 10px;
    font-size: 9px;
  }
  .site-status-chain,
  .site-status-head {
    display: none;
  }
}
