.ard-sosmed-left-simple {
  position: fixed;
  left: 0;
  bottom: 40px;               /* sesuaikan jarak dari bawah jika perlu */
  z-index: 9999;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 30, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 0 22px 22px 0;
  padding: 12px 10px 12px 6px;
  box-shadow: 10px 0 35px rgba(0,0,0,0.65);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(-82%);
}

/* Keluar penuh saat hover mouse ke area kiri bawah */
.ard-sosmed-left-simple:hover {
  transform: translateX(0);
}

/* Label Tap Me */
.ard-sosmed-left-simple .attention {
  position: absolute;
  right: -74px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  color: white;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 14px;
  white-space: nowrap;
  box-shadow: 0 5px 18px rgba(139, 92, 246, 0.5);
  pointer-events: none;
}

/* List ikon */
.ard-sosmed-left-simple .sosmed-list {
  list-style: none;
  margin: 0 6px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ard-sosmed-left-simple .sosmed-list a {
  display: block;
  transition: all 0.28s ease;
}

.ard-sosmed-left-simple .sosmed-list a:hover {
  transform: scale(1.16) translateX(4px);
}

.ard-sosmed-left-simple .sosmed-list img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.28);
  box-shadow: 0 5px 15px rgba(0,0,0,0.45);
  object-fit: cover;
  transition: all 0.28s ease;
}

.ard-sosmed-left-simple .sosmed-list a:hover img {
  border-color: #e0e0ff;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.45);
}

/* Responsive untuk layar kecil */
@media (max-width: 480px) {
  .ard-sosmed-left-simple {
    bottom: 20px;
    transform: translateX(-86%);
    padding: 10px 8px 10px 5px;
  }
  .ard-sosmed-left-simple .attention {
    right: -68px;
    font-size: 12.5px;
    padding: 7px 16px;
  }
  .ard-sosmed-left-simple .sosmed-list img {
    width: 42px;
    height: 42px;
  }
  .ard-sosmed-left-simple .sosmed-list {
    gap: 14px;
  }
}