.uc-social-fixed {
  position: absolute;
  left: 120px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 999;

  animation: socialSlideIn 0.6s ease-out forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Links */
.uc-social-fixed a {
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.uc-social-fixed a:hover {
  opacity: 1;
  transform: scale(1.3);
}

/* Layout */
.uc-social-fixed .t-sociallinks__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Animation */
@keyframes socialSlideIn {
  from {
    transform: translate(-30px, -50%);
    opacity: 0;
  }
  to {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .uc-social-fixed {
    top: 45%;
    left: 15px;
    transform: none;
    animation: none;
    z-index: 10;

    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    padding: 1px;
    border-radius: 16px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  }

  .uc-social-fixed .t-sociallinks__wrapper {
    gap: 0;
  }

  .uc-social-fixed a {
    opacity: 1;
    transform: scale(0.7);
  }

  .uc-social-fixed.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
}
