.wpress-floating-buttons {position:fixed;bottom:20px;right:20px;z-index:9999;display:flex;flex-direction:column;gap:12px;}.wpress-btn{width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;box-shadow:0 4px 8px rgba(0,0,0,0.2);animation: pulse 2s infinite;position:relative;}.wpress-btn:hover::after{content:attr(title);position:absolute;right:60px;background:#333;color:#fff;padding:5px 10px;font-size:14px;border-radius:6px;white-space:nowrap;}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}