.floating-user-count {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text, #f4f4f5);
  font-family: 'Geist', system-ui, sans-serif;
  pointer-events: none;
}

.floating-user-count__avatars {
  display: flex;
  align-items: center;
}

.floating-user-count__avatar {
  width: 30px;
  height: 30px;
  border: 2px solid #35d07f;
  border-radius: 50%;
  background: var(--g100, #1e1e22) center / cover no-repeat;
  box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.5);
  animation: floating-user-count-pulse 2s ease-out infinite;
}

@keyframes floating-user-count-pulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.5); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(53, 208, 127, 0); }
}

.floating-user-count__text {
  color: var(--muted, #a0a0a8);
  font-size: 13px;
  white-space: nowrap;
}

.floating-user-count__text strong {
  display: inline-block;
  margin-right: 5px;
  color: var(--text, #f4f4f5);
  font-weight: 700;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .floating-user-count {
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-user-count__avatar { animation: none; }
}
