.button_custom_menu:hover {
    transform: translateY(-2px);
}

.button_custom_menu {
    transition: transform 0.15s ease-in-out;
}

[data-bs-theme="light"] .button_custom_menu {
    --bs-btn-hover-bg: #e4e4e4;
    --bs-btn-active-bg: #e4e4e4;
    --bs-btn-padding-y: 0.5rem;
    border: 0 !important;
}

[data-bs-theme="dark"] .button_custom_menu {
    --bs-btn-hover-bg: var(--my-bg-body-tertiary-1);
    --bs-btn-active-bg: var(--my-bg-body-tertiary-1);
    --bs-btn-padding-y: 0.5rem;
    border: 0 !important;

}

.button_custom_menu span {
    text-align: left !important;
}

.button_custom_menu.button_active_custom_menu {
    --bs-btn-bg: var(--my-bg-body-tertiary-2);
    --bs-btn-hover-bg: var(--my-bg-body-tertiary-2);
    --bs-btn-active-bg: var(--my-bg-body-tertiary-2);
}

.custom-icon-awesome {
    font-size: 1.15rem;
    margin-right: 0.6rem;
}

[data-bs-theme="dark"] .icon-wrapper-menu {
    background: #343a40;
}

.icon-wrapper-menu {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mirror-block {
    background: linear-gradient(135deg, #343a40, #212529);
    overflow: hidden;
}

.mirror-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 90px;
    opacity: 0.08;
    transform: rotate(-15deg);
    pointer-events: none;
}

.mirror-block-tg {
    background: linear-gradient(135deg, #003359, #004c80, #0066b3);
    overflow: hidden;
}

.mirror-icon-tg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 90px;
    opacity: 0.15;
    transform: rotate(-15deg);
    pointer-events: none;
}

.profile-name-menu {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.profile-subtitle-menu {
    font-size: 0.8rem;
}

.stats-inner-menu {
    background:rgba(255,255,255,.02);
    border: 1.3px solid rgba(255, 255, 255, .06);
    padding: 10px 12px;
    border-radius:14px;

}

.label-menu {
    font-size:.7rem;
    color:#9aa3af;
}

.value-menu {
    font-weight: 600;
    margin-top: 3px;
    color: var(--my-custom-success);
}

.cta-menu {
    display:flex;
    align-items:center;
    gap:6px;

    padding:6px 10px;

    border-radius:10px;

    font-size:.8rem;
    font-weight:600;

    color:#e6f0ff;

    background:rgba(80, 140, 210, .10);
    border:1px solid rgba(80, 140, 210, .18);

    text-decoration:none;

    transition:.12s ease;
}

.cta-menu:hover {
    background:rgba(80, 140, 210, .14);
    border-color:rgba(80, 140, 210, .24);
}