@keyframes rp-callout-in {
  from { opacity: 0; transform: translateY(calc(-80% + 10px)); }
  to   { opacity: 1; transform: translateY(-80%); }
}
@keyframes rp-bob {
  0%, 100% { transform: translateY(-80%); }
  50%       { transform: translateY(calc(-80% - 6px)); }
}

#widget-callout {
  position: fixed;
  right: 52px;
  top: 50%;
  z-index: 9998;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  animation: rp-callout-in 0.5s ease-out 1.2s forwards,
             rp-bob 2.4s ease-in-out 2s infinite;
}

#widget-callout.dismissed {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#widget-callout span {
  font-family: 'Caveat', cursive;
  color: #ff6400;
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 4px;
}
