/* public/fomo.css */
.fomo-container {
  position: fixed; bottom: calc(30px + env(safe-area-inset-bottom, 0px)); right: calc(30px + env(safe-area-inset-right, 0px)); 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;
}

body:not(.tm-shell-home) .fomo-container {
  opacity: 0 !important;
  transform: translateY(20px) scale(0.95) !important;
  pointer-events: none !important;
}
.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; }

/* Mobile: keep FOMO visible (smaller + safe-area aware) */
@media (max-width: 600px) {
  .fomo-container{
    right: calc(12px + env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 24px);
    padding: 10px 14px 10px 10px;
    gap: 10px;
    border-radius: 999px;
  }
  .fomo-avatar{ width: 34px; height: 34px; }
  .fomo-avatar svg{ width: 18px; height: 18px; }
  .fomo-text{ font-size: 0.78rem; }
  .fomo-time{ font-size: 0.68rem; }
}