/* Container Styling */
#my-social-box {
    border-radius: 10px;
    overflow: hidden;
}

/* List reset */
#my-social-box ul {
    margin: 0;
    padding: 0;
}

#my-social-box ul li {
    list-style: none;
    padding: 14px 18px;
    color: var(--tg-theme-primary);
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

/* Icon Styling */
#my-social-box ul li i {
    margin-right: 10px;
    font-size: 28px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
#my-social-box ul li:hover {
    background: linear-gradient(135deg, var(--tg-theme-primary), #ff4d4d);
    color: #fff;
    transform: translateX(6px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Icon animation on hover */
#my-social-box ul li:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #fff;
}

/* Link Styling */
#my-social-box ul li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Animated border effect */
#my-social-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--tg-theme-primary);
    transition: width 0.3s ease;
}

#my-social-box ul li:hover::before {
    width: 100%;
}

/* Subtle entrance animation */
#my-social-box ul li {
    animation: fadeSlideIn 0.5s ease forwards;
}

#my-social-box ul li:nth-child(1) {
    animation-delay: 0.1s;
}

#my-social-box ul li:nth-child(2) {
    animation-delay: 0.2s;
}

#my-social-box ul li:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #my-content{
        margin-bottom: 50px !important;
    }
}