.hotengine-ve-socials-style-5 {
    padding: 50px 20px;
    background: #ffffff;
    text-align: center;
    font-family: sans-serif;
    position: relative;
    box-sizing: border-box;
}

.hotengine-ve-socials-style-5 .ve-title {
    font-size: 22px;
    color: #111;
    font-weight: 700;
    margin: 0 0 25px 0;
}

.hotengine-ve-socials-style-5 .ve-social-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hotengine-ve-socials-style-5 .ve-social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-sizing: border-box;
}

.hotengine-ve-socials-style-5 .ve-social-icon {
    width: 26px;
    height: 26px;
    background: #333;
    z-index: 2;
    transition: all 0.3s ease;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.hotengine-ve-socials-style-5 .ve-social-card::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: var(--ve-soc5-accent);
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.hotengine-ve-socials-style-5 .ve-social-card:hover {
    transform: translateY(-8px);
    border-color: var(--ve-soc5-accent);
    box-shadow: 0 12px 20px var(--ve-soc5-accent-alpha);
}

.hotengine-ve-socials-style-5 .ve-social-card:hover::after {
    transform: translateY(0);
}

.hotengine-ve-socials-style-5 .ve-social-card:hover .ve-social-icon {
    background: #fff !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hotengine-ve-socials-style-5 {
        padding: 40px 15px !important;
    }
    .hotengine-ve-socials-style-5 .ve-social-card {
        width: 50px !important;
        height: 50px !important;
    }
}