.social-icons-pro {
    margin: 20px 0;
}

.social-icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Size variations */
.social-icons-pro.small .social-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
}

.social-icons-pro.medium .social-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.social-icons-pro.large .social-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
}

.social-icons-pro.xlarge .social-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
}

/* Style variations */
.social-icons-pro.default .social-icon {
    color: #ffffff;
}

.social-icons-pro.default .social-icon.facebook { background-color: #3b5998; }
.social-icons-pro.default .social-icon.twitter { background-color: #1da1f2; }
.social-icons-pro.default .social-icon.instagram { background-color: #e4405f; }
.social-icons-pro.default .social-icon.linkedin { background-color: #0077b5; }
.social-icons-pro.default .social-icon.youtube { background-color: #ff0000; }
.social-icons-pro.default .social-icon.pinterest { background-color: #bd081c; }
.social-icons-pro.default .social-icon.whatsapp { background-color: #25d366; }
.social-icons-pro.default .social-icon.tiktok { background-color: #000000; }
.social-icons-pro.default .social-icon.telegram { background-color: #0088cc; }
.social-icons-pro.default .social-icon.snapchat { background-color: #fffc00; color: #000000; }
.social-icons-pro.default .social-icon.reddit { background-color: #ff4500; }
.social-icons-pro.default .social-icon.discord { background-color: #7289da; }
.social-icons-pro.default .social-icon.github { background-color: #333333; }
.social-icons-pro.default .social-icon.dribbble { background-color: #ea4c89; }
.social-icons-pro.default .social-icon.behance { background-color: #1769ff; }

.social-icons-pro.rounded .social-icon {
    border-radius: 50%;
}

.social-icons-pro.square .social-icon {
    border-radius: 0;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}