/* Social Sidebar - Fixed Left Side */
.brethko-social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-sidebar-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(243, 156, 18, 0.5);
    border-radius: 50px;
    padding: 15px 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.social-btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 156, 18, 0.1);
    border: 2px solid rgba(243, 156, 18, 0.3);
    border-radius: 50%;
    color: #f39c12;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.social-btn:hover {
    background: rgba(243, 156, 18, 0.3);
    border-color: #f39c12;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.social-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 22px;
    height: 22px;
}

.social-btn svg {
    fill: currentColor;
    width: 22px;
    height: 22px;
    display: block;
}

/* Tooltip Styles */
.social-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(243, 156, 18, 0.95);
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.social-btn::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: rgba(243, 156, 18, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10000;
}

.social-btn:hover::after,
.social-btn:hover::before {
    opacity: 1;
}

/* Platform Specific Colors (optional) */
.social-btn.social-discord:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: #5865F2;
    color: #5865F2;
}

.social-btn.social-discord:hover::after {
    background: rgba(88, 101, 242, 0.95);
}

.social-btn.social-discord:hover::before {
    border-right-color: rgba(88, 101, 242, 0.95);
}

.social-btn.social-facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    border-color: #1877F2;
    color: #1877F2;
}

.social-btn.social-facebook:hover::after {
    background: rgba(24, 119, 242, 0.95);
}

.social-btn.social-facebook:hover::before {
    border-right-color: rgba(24, 119, 242, 0.95);
}

.social-btn.social-instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.3), rgba(193, 53, 132, 0.3));
    border-color: #E1306C;
    color: #E1306C;
}

.social-btn.social-instagram:hover::after {
    background: linear-gradient(45deg, #E1306C, #C13584);
}

.social-btn.social-instagram:hover::before {
    border-right-color: #E1306C;
}

.social-btn.social-youtube:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
    color: #FF0000;
}

.social-btn.social-youtube:hover::after {
    background: rgba(255, 0, 0, 0.95);
}

.social-btn.social-youtube:hover::before {
    border-right-color: rgba(255, 0, 0, 0.95);
}

.social-btn.social-twitter:hover {
    background: rgba(29, 161, 242, 0.3);
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.social-btn.social-twitter:hover::after {
    background: rgba(29, 161, 242, 0.95);
}

.social-btn.social-twitter:hover::before {
    border-right-color: rgba(29, 161, 242, 0.95);
}

/* Responsive */
@media (max-width: 1024px) {
    .brethko-social-sidebar {
        left: 10px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .social-btn i {
        width: 20px;
        height: 20px;
    }
    
    .social-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .social-btn::after {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .brethko-social-sidebar {
        left: 5px;
        transform: translateY(-50%) scale(0.9);
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .social-btn i {
        width: 18px;
        height: 18px;
    }
    
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .social-sidebar-container {
        padding: 12px 6px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .brethko-social-sidebar {
        display: none;
    }
}

