.hover-demo {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff9a56, #ff6b95);
  border-radius: 50%;
  margin: 20px auto;
  animation: spin 2s linear infinite;
  animation-play-state: paused;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.hover-demo:hover {
  animation-play-state: running;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}