.floating-menu {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 1000;
  cursor: grab;
  user-select: none;
  top: 90px;
  left: 15px;
  touch-action: none;
  display: none;
  -webkit-tap-highlight-color: transparent;
}

.floating-menu:active {
  cursor: grabbing;
}

.menu-circle {
  width: 100%;
  height: 100%;
  background: var(--floating-menu-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: azure;
  font-size: 30px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.menu-circle:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px){
    .floating-menu{
        display: block;
    }
}