/* Asztali nézet */
@media (min-width: 769px) {
  .social-fixed {
    position: fixed;
    bottom: 160px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
  }

  .social-fixed img {
    width: 36px;
    height: 36px;
    background: black;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
    filter: brightness(0) invert(1);
  }
}

/* Mobil nézet */
@media (max-width: 768px) {
  .social-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: black;
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
    z-index: 9999;
  }

  .social-footer a {
    color: white;
    font-size: 10px;
    text-align: center;
    text-decoration: none;
  }

  .social-footer img {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto 2px;
    filter: brightness(0) invert(1);
  }
}