/* Полоска под меню */
.social-bar {
  width: 100%;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  padding: 6px 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  flex-wrap: wrap;
}

/* Ссылки */
.social-link {
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
  position: relative;
  padding-left: 22px;
  white-space: nowrap;
}

/* Hover */
.social-link:hover {
  transform: scale(1.1); /* лёгкое увеличение */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* тень для читаемости */
  color: #fff; /* текст остаётся белым */
}
.social-link:focus-visible {
  outline: 2px solid #ffd700; /* рамка для фокуса */
  outline-offset: 4px;
}

/* Иконки */
.social-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background-size: cover;
}

/* Telegram */
.social-link.tg:before {
  background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111646.png');
}

/* X (бывший Twitter) */
.social-link.x:before {
  background-image: url('https://cdn-icons-png.flaticon.com/512/5968/5968958.png');
}

/* Facebook */
.social-link.fb:before {
  background-image: url('https://cdn-icons-png.flaticon.com/512/733/733547.png');
}

/* YouTube */
.social-link.yt:before {
  background-image: url('https://cdn-icons-png.flaticon.com/512/1384/1384060.png');
}

/* Адаптив */
@media (max-width: 600px) {
  .social-bar {
    gap: 12px;
    padding: 8px 0;
  }
  .social-link {
    font-size: 12px;
