/* Floating Social Media Bar */
.social-float-bar {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 42, 42, 0.95);
    border-radius: 12px;
    padding: 15px 10px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 70px;
}

.social-float-bar:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.social-float-title {
    text-align: center;
    margin-bottom: 15px;
}

.social-float-title small {
    color: white;
    font-size: 11px;
    letter-spacing: 1px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-social:hover {
    transform: scale(1.1);
    text-decoration: none;
}

/* Social Media Colors */
.btn-twitter {
    background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
    color: white;
}

.btn-twitter:hover {
    background: linear-gradient(45deg, #0d8bd9, #1DA1F2);
    color: white;
}

.btn-linkedin {
    background: linear-gradient(45deg, #0077B5, #005885);
    color: white;
}

.btn-linkedin:hover {
    background: linear-gradient(45deg, #005885, #0077B5);
    color: white;
}

.btn-youtube {
    background: linear-gradient(45deg, #FF0000, #cc0000);
    color: white;
}

.btn-youtube:hover {
    background: linear-gradient(45deg, #cc0000, #FF0000);
    color: white;
}

.btn-patreon {
    background: linear-gradient(45deg, #FF424D, #cc1a24);
    color: white;
}

.btn-patreon:hover {
    background: linear-gradient(45deg, #cc1a24, #FF424D);
    color: white;
}

.btn-copy {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
}

.btn-copy:hover {
    background: linear-gradient(45deg, #495057, #6c757d);
    color: white;
}

.btn-copy.copied {
    background: linear-gradient(45deg, #28a745, #1e7e34);
}

/* Responsive behavior */
@media (max-width: 768px) {
    .social-float-bar {
        left: 50%;
        bottom: 30px;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
        align-items: center;
        padding: 12px 16px;
        max-width: none;
        width: auto;
        border-radius: 25px;
        transition: all 0.3s ease, transform 0.3s ease;
    }
    
    .social-float-bar:hover {
        transform: translateX(-50%) scale(1.02);
    }
    
    .social-float-bar.hidden {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
        pointer-events: none;
    }
    
    .social-float-title {
        display: none;
    }
    
    .social-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .btn-social {
        width: 35px;
        height: 35px;
    }
    
    .btn-social svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .social-float-bar {
        left: 50%;
        bottom: 40px;
        padding: 10px 14px;
        transform: translateX(-50%);
    }
    
    .social-float-bar:hover {
        transform: translateX(-50%) scale(1.02);
    }
    
    .social-float-bar.hidden {
        transform: translateX(-50%) translateY(100px);
    }
    
    .btn-social {
        width: 32px;
        height: 32px;
    }
    
    .btn-social svg {
        width: 14px;
        height: 14px;
    }
    
    .social-buttons {
        gap: 6px;
    }
}