.role-paw {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}

.role-paw-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  animation: paw-float 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes paw-float {
  0%   { transform: translateY(0px) rotate(0.0001deg); }
  50%  { transform: translateY(-6px) rotate(0.0001deg); }
  100% { transform: translateY(0px) rotate(0.0001deg); }
}

/* reserved spot under the paw for a future icon */
.role-under-icon {
  position: fixed;
  top: 96px;  /* 72px image + 8–16px gap */
  left: 16px;
  width: 40px;
  height: 40px;
  opacity: 0.9;
  pointer-events: none; /* placeholder for now */
  z-index: 999;
}
