.mmbd-social-links {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0;
    z-index: 100;
}

.mmbd-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.mmbd-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.mmbd-social-link svg {
    display: block;
}

@media screen and (max-width: 480px) {
    .mmbd-social-links {
        bottom: 16px;
        gap: 12px;
    }

    .mmbd-social-link {
        width: 38px;
        height: 38px;
    }
}
