.ptr-indicator {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-52px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0b1d12;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  pointer-events: none;
}

.ptr-indicator--settling {
  transition: transform 0.2s ease-out;
}

.ptr-arrow {
  display: block;
  color: #fff;
  transition: transform 0.1s ease;
}

@keyframes ptr-spin {
  to { transform: rotate(360deg); }
}

.ptr-indicator--refreshing .ptr-arrow {
  animation: ptr-spin 0.7s linear infinite;
}
