.social-icons {
  display: flex;
  gap: 14px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.icon-btn img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: transform 0.25s ease;
}

.icon-btn:hover {
  transform: translateY(-4px) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.15);
}

.icon-btn:active {
  transform: scale(0.9);
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

.icon-btn:hover img {
  transform: rotate(10deg);
}