/* Custom TabBar Icon for Spin */

/* Hide the SVG icon for spin tab */
.tabbar__container-item:nth-of-type(3) .svg-icon.icon-spin {
    display: none !important;
}

/* Add image icon for spin tab — 3X larger */
.tabbar__container-item:nth-of-type(3)::before {
    content: '';
    display: block;
    width: 2.7rem;   /* 0.7504rem × 3 */
    height: 2.34rem;    /* 0.65rem × 3 */
    background-image: url('/assets/png/turntable-b345db9ee.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    top: 0.6rem;
    z-index: 3;
}

/* Custom TabBar Icon for Promotion */

/* Hide the SVG icon for promotion tab */
.tabbar__container-item:nth-of-type(4) .svg-icon.icon-promotion {
    display: none !important;
}
/* Add image icon for promotion tab */
.tabbar__container-item:nth-of-type(4)::before {
    content: '';
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    background-image: url('/assets/png/t6_promotion_a-923d9ceed.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin: 0 auto;
}