#zoth-tip {
  position: fixed;
  z-index: 90;
  max-width: 17rem;
  padding: 8px 11px 9px;
  background: #0b0b10;
  color: #f7f4ee;
  border: 1px solid rgba(232, 200, 114, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
#zoth-tip::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: #e8c872;
  margin-bottom: 7px;
  opacity: 0.85;
}
#zoth-tip.on { opacity: 1; transform: none; }
#zoth-tip[hidden] { display: none; }
