.x-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040);
    border-radius: 0;
    color: white;
    margin-right: 5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.x-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.x-icon:before {
    content: "𝕏";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
}

/* Specific styling for footer X icon */
.footer-social .x-icon {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040);
    border: none;
}

/* Hide the original Font Awesome icon */
.fa-x-twitter {
    display: none;
}
