.social-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #151030;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    position: relative;
    z-index: 10;
}

.social-text {
    color: white;
    position: relative;
    z-index: 10;
}

.social-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-hover {
    opacity: 1;
}

/* Instagram */
.instagram .social-icon,
.instagram .social-hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook */
.facebook .social-icon,
.facebook .social-hover {
    background: #1877f2;
}

/* YouTube */
.youtube .social-icon,
.youtube .social-hover {
    background: #ff0000;
}

/* WhatsApp */
.whatsapp .social-icon,
.whatsapp .social-hover {
    background: #25d366;
}
