/* ═══════════════════════════════════════
   pull-refresh.css — Pull to refresh UI
═══════════════════════════════════════ */

#ptr-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #020d1a, transparent);
  transition: height 0.2s;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--c);
  letter-spacing: 2px;
}

#ptr-indicator.visible {
  height: 48px;
}

#ptr-indicator .ptr-spin {
  width: 16px;
  height: 16px;
  border: 2px solid #00d4ff22;
  border-top-color: var(--c);
  border-radius: 50%;
  animation: sp 0.8s linear infinite;
}
