@media (max-width: 768px) {
    .social-sidebar { display: none !important; }
    .mobile-social-fab { display: flex !important; }
}
@media (min-width: 769px) {
    .mobile-social-fab { display: none !important; }
}
.mobile-social-fab {
    position: fixed;
    bottom: 80px;
    left: 24px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
}
.fab-main-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color, #f59e0b);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    outline: none;
}
.fab-main-btn:active {
    background: #f59e0b;
}
.fab-social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 70px;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.fab-social-icons.active {
    pointer-events: auto;
    opacity: 1;
}
.fab-social-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--card-bg, #222);
    border: 2px solid var(--accent-color, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color, #f59e0b);
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    opacity: 0;
    transform: translateY(20px) scale(0.5);
    transition: all 0.3s cubic-bezier(.68,-0.55,.27,1.55);
    pointer-events: none;
}
.fab-social-icons.active .fab-social-icon {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
} 