.fomo-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff8e1; /* soft yellow background */
  border-left: 4px solid #ff9800;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.fomo-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.fomo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.fomo-content {
  display: flex;
  flex-direction: column;
}

.fomo-name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 2px;
}

.fomo-time {
  font-size: 12px;
  color: #666;
}