.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 12px 0;
  z-index: 10;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Иконки */
.footer-link img {
  width: 24px;
  height: 24px;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-link:hover img {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .footer {
    padding: 10px 0;
  }

  .footer-link img {
    width: 22px;
    height: 22px;
  }
}
