/**
 * rotor-dots.css
 * I pallini stanno FUORI dal #Rotor (che ha overflow:hidden)
 * e si sovrappongono ad esso tramite position absolute + margine negativo.
 */

#RotorDots {
  position: relative;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: -3.5rem;  /* sale sopra il bordo inferiore del rotor */
  margin-bottom: 0;
  padding-bottom: 1.8rem;
  pointer-events: auto;
}

#RotorDots button {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

#RotorDots button:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

#RotorDots button.Active {
  background-color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.15);
}

@media screen and (max-width: 440px) {
  #RotorDots {
    margin-top: -4rem;
    gap: 0.8rem;
  }
  #RotorDots button {
    width: 0.9rem;
    height: 0.9rem;
  }
}