.sosyal-bar-v1 {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.sosyal-btn-v1 {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.sosyal-btn-v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.4s ease;
    z-index: -1;
}

.sosyal-btn-v1:hover::before {
    left: 100%;
}

.sosyal-btn-v1:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.sosyal-btn-v1:hover .label-v1 {
    opacity: 1;
    transform: translateX(70px);
}

.label-v1 {
    position: absolute;
    left: 0;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.btn-ayin { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.btn-evlilik { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.btn-yarisma { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.btn-yazilar { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }

@media (max-width: 768px) {
    .sosyal-bar-v1 {
        left: auto;
        right: 20px;
    }
    
    .sosyal-btn-v1:hover .label-v1 {
        transform: translateX(-70px);
    }
    
    .label-v1 {
        transform: translateX(-50px);
    }
}