.gallery {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.gallery-item {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 8px;
  cursor: pointer;
  transition-duration: 0.4s;
  transition-property: transform, filter, box-shadow;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition-duration: 0.4s;
}

.gallery-item:hover {
  transform: scale(1.2);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 10;
}

.gallery-item:hover::before {
  opacity: 1;
}