/* Stili easter egg */
.ee-star {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  color: #2c3e50;
  transition: color 0.3s ease, transform 0.2s ease;
  user-select: none;
  transform-origin: center center; 
  width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 2.5rem;
}

.ee-star:hover {
  color: #2d6a4f;
  transform: scale(1.1);
}
/* Classe per la rotazione */
.ee-star.is-spinning {
  animation: star-spin 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes star-spin {
  0% { transform: scale(1.1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(360deg); }
}

/* Stato finale dorato */
.ee-star.unlocked {
  color: #e6c25e !important;
}
/* Elementi nascosti all'inizio */
.nickname, .secret-member {
  display: none;
}

/* Supporto per il bold per me e Marco */
.ee-bold {
  font-weight: 800;
}