.sns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #adb5bd;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.sns-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sns-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sns-btn:hover svg {
    transform: scale(1.15);
}

/* Specific Hover Styles */
.sns-btn-x:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000 !important;
}

.sns-btn-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
}

.sns-btn-threads:hover {
    background-color: #000;
    border-color: #333;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
