body {
  margin: 0;
  background-color: #000;
  color: #f5f5f5;
  font-family: 'Changa', sans-serif;
  overflow: hidden;
  position: relative;
}

body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Changa', sans-serif;
  overflow: hidden;
  position: relative;
  height: 100vh;
  cursor: crosshair;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.impact {
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px #000;
  pointer-events: none;
  animation: boom 0.8s ease-out forwards;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 999;
}

@keyframes boom {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5) rotate(-10deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5) rotate(5deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2) rotate(0deg);
  }
}


.header-divider {
  height: 10px;
  background: #d30404;
  animation: pulsazione 2s infinite ease-in-out;
}

@keyframes pulsazione {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

.hero {
  background-color: #F5F5DC;  /* colore della barra */
  height: 220px;              /* più alto dell’immagine */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .immagine-testata {
  height: 300px;              /* immagine più bassa della hero */
  width: auto;
}
.icone {
  display: flex;
  flex-direction: row;       /* disposizione orizzontale */
  flex-wrap: wrap;           /* manda a capo se non c’è spazio */
  justify-content: center;   /* centrate orizzontalmente */
  gap: 5rem;                 /* spazio tra le icone */
  padding: 8rem;
}
.icona {
  width: clamp(120px, 19vw, 220px);
  height: clamp(120px, 19vw, 220px);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  
}

.icona:hover {
  box-shadow: 0 0 15px 5px white;
}

.etichetta {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff4f8b;
  text-align: center;
  opacity: 0.9;
  animation: shimmerIn 4s ease-in-out infinite;
}

@keyframes shimmerIn {
  0%   { opacity: 0.4; transform: scale(0.95); }
  50%  { opacity: 1;   transform: scale(1.03); }
  100% { opacity: 0.4; transform: scale(0.95); }
}
