.glossy-logo {
  display: inline-block;
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

.glossy-logo img {
  display: block;
}

.glossy-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.1)
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -100%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

.glossy-logo:hover::after {
  animation-duration: 1.5s;
}

.glossy-logo .fnox-icon {
  filter: drop-shadow(0 4px 12px rgba(27,139,255,0.35));
  transition: filter 0.3s ease;
}

.glossy-logo:hover .fnox-icon {
  filter: drop-shadow(0 6px 18px rgba(27,139,255,0.5));
}
