:root {
    --bar-red: #d90429;
    --bar-red-hover: #ef233c;
    --bar-red-glow: rgba(217, 4, 41, 0.7);
    --bar-bg: rgba(13, 17, 23, 0.75);
    --bar-border: rgba(217, 4, 41, 0.3);
}

/* Ana Konteynır (Ekranın Soluna Sabit - Masaüstü) */
.left-sticky-social-bar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: var(--bar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 10px;
    border-radius: 30px;
    border: 1px solid var(--bar-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(217, 4, 41, 0.2);
    animation: barNeonGlow 3s infinite alternate;
}

@keyframes barNeonGlow {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 10px rgba(217, 4, 41, 0.2);
        border-color: rgba(217, 4, 41, 0.25);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(217, 4, 41, 0.5);
        border-color: rgba(217, 4, 41, 0.5);
    }
}

/* Üst Logo İkonu Rozeti */
.social-bar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-badge {
    width: 38px;
    height: 38px;
    background: radial-gradient(circle, rgba(239,35,60,1) 0%, rgba(150,2,25,1) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 0 15px var(--bar-red-glow);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.brand-badge:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Dikey Neon Kırmızı Çizgi */
.social-bar-line {
    width: 2px;
    height: 35px;
    background: linear-gradient(180deg, var(--bar-red) 0%, rgba(217, 4, 41, 0.1) 100%);
    box-shadow: 0 0 8px var(--bar-red-glow);
    border-radius: 2px;
}

/* İkon Grubu */
.social-bar-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon-btn:hover {
    background: var(--bar-red);
    color: #ffffff;
    border-color: var(--bar-red-hover);
    transform: translateX(4px) scale(1.12);
    box-shadow: 0 0 20px var(--bar-red-glow);
}

/* Sağa Açılan Şık Tooltip */
.social-icon-btn .tooltip {
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: rgba(13, 17, 23, 0.92);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border: 1px solid var(--bar-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(217, 4, 41, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Tooltip Sol Ok İkonu */
.social-icon-btn .tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent rgba(13, 17, 23, 0.92) transparent transparent;
}

.social-icon-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* -------------------------------------------
   MOBİL DÜZENLEME (992px ve Altı - Minimal Sağa Yaslı)
--------------------------------------------- */
@media (max-width: 992px) {
    .left-sticky-social-bar {
        left: auto;
        right: 10px; /* Sağ kenara 10px mesafe */
        top: 50%;
        transform: translateY(-50%);
        padding: 10px 6px;
        gap: 8px;
        border-radius: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    /* Marka / Logo rozetini küçült */
    .brand-badge {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    /* Dikey ayrıştırıcı çizgiyi küçült */
    .social-bar-line {
        height: 15px;
        width: 1.5px;
    }

    /* İkonlar arasındaki boşluğu daralt */
    .social-bar-icons {
        gap: 8px;
    }

    /* İkon butonlarını küçült */
    .social-icon-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    /* Dokunmatik ekranlarda tooltip'leri gizle */
    .social-icon-btn .tooltip {
        display: none !important;
    }

    .social-icon-btn:hover {
        transform: scale(1.1);
    }
}