
/* =========================================
   MozuDoll Floating SNS
   ========================================= */

.mozu-social-float {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================
   SNS按钮
   ========================================= */

.mozu-social-link,
.mozu-toggle-button {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    border: none;
    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0,0,0,.20);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* 鼠标悬停 */

.mozu-social-link:hover,
.mozu-toggle-button:hover {
    transform: scale(1.1);

    box-shadow:
        0 6px 20px rgba(0,0,0,.28);
}


/* =========================================
   SVG图标
   ========================================= */

.mozu-social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}


/* =========================================
   Discord
   ========================================= */

.mozu-discord {
    background: #5865F2;
    color: #ffffff;
}


/* =========================================
   X
   ========================================= */

.mozu-x {
    background: #000000;
    color: #ffffff;
}


/* =========================================
   Instagram
   ========================================= */

.mozu-instagram {
    background:
        linear-gradient(
            135deg,
            #833AB4,
            #FD1D1D,
            #FCB045
        );

    color: #ffffff;
}


/* =========================================
   TikTok
   ========================================= */

.mozu-tiktok {
    background: #000000;
    color: #ffffff;
}


/* =========================================
   YouTube
   ========================================= */

.mozu-youtube {
    background: #FF0000;
    color: #ffffff;
}


/* =========================================
   展开 / 收缩按钮
   ========================================= */

.mozu-toggle-button {
    background: #222222;
    color: #ffffff;

    font-size: 25px;
    font-weight: 300;

    line-height: 1;
}


/* =========================================
   收缩状态
   ========================================= */

.mozu-social-float.collapsed .mozu-social-link {
    display: none;
}


/* =========================================
   手机端
   ========================================= */

@media (max-width: 600px) {

    .mozu-social-float {
        right: 13px;
        bottom: 15px;
        gap: 8px;
    }

    .mozu-social-link,
    .mozu-toggle-button {
        width: 43px;
        height: 43px;
    }

    .mozu-social-link svg {
        width: 22px;
        height: 22px;
    }

    .mozu-toggle-button {
        font-size: 23px;
    }
}
