/* public/fomo.css */
.fomo-container {
  position: fixed; bottom: 30px; left: 30px; z-index: 9999;
  display: flex; align-items: center; gap: 12px;
  background: rgba(10, 15, 26, 0.9); backdrop-filter: blur(10px);
  border: 1px solid #64E9EE; border-radius: 50px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
.fomo-container.is-active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fomo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(100,233,238,0.15); color: #64E9EE;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(100,233,238,0.3);
}
.fomo-avatar svg { width: 20px; height: 20px; }
.fomo-details { display: flex; flex-direction: column; line-height: 1.3; margin-right: 8px; }
.fomo-text { margin: 0; font-size: 0.85rem; color: #fff; }
.fomo-text strong { color: #64E9EE; font-weight: 700; }
.fomo-time { font-size: 0.7rem; color: #9ca3af; }
.fomo-verified { color: #64E9EE; display: flex; }
.fomo-verified svg { width: 16px; height: 16px; }
@media (max-width: 600px) { .fomo-container { display: none !important; } }