/*
 * HandOff Tooltip — Frontend Branded Right-Click Overlay
 *
 * Injected on the public page only when protection is active.
 * Typography: Syne (title) · DM Sans (body)
 * Palette matches admin UI exactly (#14161B surface, #D97706 accent).
 *
 * @package HandOff
 * @version 1.0.0
 */

#handoff-tooltip {
  position:      absolute;
  z-index:       999999;
  display:       none;
  pointer-events: none;
  transition:    opacity 0.18s ease;
  top:           0;
  left:          0;
}

.handoff-tt__inner {
  background:    #14161B;
  border:        1px solid #2A2D38;
  border-radius: 8px;
  padding:       12px 16px;
  box-shadow:    0 4px 24px rgba(0, 0, 0, 0.4);
  display:       flex;
  flex-direction: column;
  gap:           4px;
  min-width:     200px;
  max-width:     300px;
}

.handoff-tt__title {
  font-family:    'Syne', 'Arial', sans-serif;
  font-size:      13px;
  font-weight:    600;
  color:          #D97706;
  letter-spacing: 0.04em;
  display:        block;
}

.handoff-tt__body {
  font-family: 'DM Sans', 'Arial', sans-serif;
  font-size:   12px;
  color:       #E8EAF0;
  display:     block;
  line-height: 1.5;
}
