
.rotate-hotspot {
  position: relative;
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rotate-img {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 0;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(1);
}

.rotate-content {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 10px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotate-hotspot:hover .rotate-img {
  opacity: 0;
  transform: scale(0.8);
}

.rotate-hotspot:hover .rotate-content {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.rotate-content a {
  color: #0645ad;
  text-decoration: underline;
  cursor: pointer;
}

.rotate-content h1 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
}
