.component[data-component-id="navbar"] .hidden.lg\:flex.justify-center a.px-6.py-2.rounded-full {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 2px;
  background: transparent !important;
  box-shadow: none !important;
  transition: color .25s ease, background .25s ease;
}
.component[data-component-id="navbar"] .hidden.lg\:flex.justify-center a.px-6.py-2.rounded-full::after {
  content: "";
  position: absolute;
  left: 15%;
  width: 70%;
  height: 3px;
  bottom: 0;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 6px #ffffff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

::-webkit-scrollbar {
  width: 0.8vw;
  max-width: 14px;
}

::-webkit-scrollbar-thumb {
  background-color: #CC9CFE;
  border-radius: 30px;
  border: 3px solid #0c0c0c;
}

::-webkit-scrollbar-track {
  background-color: #0e0e0e;
  border-radius: 20px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #d9a1f1 #0e0e0e;
}

@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 4px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 20px;
    border: 2px solid #0c0c0c;
  }

  ::-webkit-scrollbar-track {
    background-color: #0e0e0e;
    border-radius: 20px;
  }
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ffffff #0e0e0e;
}

.border-2.border-white\/5.rounded-xl.bg-\[rgba\(255\,255\,255\,0\.01\)\] {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease-out; /* Stessa transizione del LED */
}

/* Shine esistente (invariato) */
.border-2.border-white\/5.rounded-xl.bg-\[rgba\(255\,255\,255\,0\.01\)\]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}

.border-2.border-white\/5.rounded-xl.bg-\[rgba\(255\,255\,255\,0\.01\)\]:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}