/* Premium 4D Social Widget */
.social-float-widget {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-item {
    width: 50px;
    height: 50px;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.social-item:hover::before {
    left: 100%;
}

.social-item:hover {
    transform: scale(1.15) translateX(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    color: var(--color-primary);
}

.social-item.whatsapp:hover {
    color: #25D366;
    border-color: #25D366;
}

.social-item.instagram:hover {
    color: #E4405F;
    border-color: #E4405F;
}

.social-item.telegram:hover {
    color: #0088cc;
    border-color: #0088cc;
}

.social-item.discord:hover {
    color: #5865F2;
    border-color: #5865F2;
}

/* Tooltip */
.social-item .tooltip {
    position: absolute;
    right: 65px;
    background: var(--color-bg);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    pointer-events: none;
}

.social-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .social-float-widget {
        right: 15px;
        bottom: 80px;
    }

    .social-item {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}