.logo-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.logo {
  display: block;
  width: 200px; /* Tuỳ chỉnh kích thước */
  height: auto;
}

/* Lớp sáng */
.shine {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shineMove 2s linear infinite;
}

/* Animation chạy ánh sáng */
@keyframes shineMove {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
