
.corkscrew-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  perspective: 1000px; /* renforce l'effet 3D sur l'enfant */
  text-align: center;
}

.corkscrew-icon {
  width: 20%;
  height: auto;
  transition: transform 1.2s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.corkscrew-icon:hover {
  transform:
    rotateY(360deg)
    translateY(15px);
}
.corkscrew-icon.animated {
  transform: rotateY(360deg) translateY(33px);
}