.hotengine-ve-socials-style-8 {
    padding: 60px 20px;
    background: #fcfcfc;
    font-family: sans-serif;
    text-align: center;
}

.hotengine-ve-socials-style-8 .ve-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hotengine-ve-socials-style-8 .ve-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px 0;
}

.hotengine-ve-socials-style-8 .ve-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 45px 0;
    font-weight: 300;
}

.hotengine-ve-socials-style-8 .ve-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.hotengine-ve-socials-style-8 .ve-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 24px;
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hotengine-ve-socials-style-8 .ve-icon-box {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.hotengine-ve-socials-style-8 .ve-icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.hotengine-ve-socials-style-8 .ve-content {
    position: relative;
    z-index: 2;
}

.hotengine-ve-socials-style-8 .ve-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
}

.hotengine-ve-socials-style-8 .ve-social-item::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ve-soc8-accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    border-radius: 50% 50% 0 0;
}

.hotengine-ve-socials-style-8 .ve-social-item:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 15px 30px var(--ve-soc8-accent-alpha);
}

.hotengine-ve-socials-style-8 .ve-social-item:hover::before {
    bottom: 0;
    border-radius: 0;
}

.hotengine-ve-socials-style-8 .ve-social-item:hover .ve-icon-box {
    background: #fff;
    transform: scale(1.1) rotate(10deg);
}

.hotengine-ve-socials-style-8 .ve-social-item:hover .ve-name {
    color: #fff;
}

@media (max-width: 768px) {
    .hotengine-ve-socials-style-8 {
        padding: 40px 15px;
    }
    .hotengine-ve-socials-style-8 .ve-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .hotengine-ve-socials-style-8 .ve-social-item {
        padding: 20px 10px;
    }
}