#mobilMenuButon {
    position: fixed;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    background: rgba(2, 2, 95, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    z-index: 10000;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, background 0.25s ease;
}

#mobilMenuButon:hover {
    background: rgba(10, 10, 100, 0.9);
    transform: scale(1.08);
}

#mobilMenuButon:active {
    transform: scale(0.95);
}

.mm-line {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
    flex-shrink: 0;
}

#mobilMenuButon.is-open .mm-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#mobilMenuButon.is-open .mm-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

#mobilMenuButon.is-open .mm-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#mobilMenuBackdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

#mobilMenuBackdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

#mobilMenu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: auto;
    max-height: 100dvh;
    background: linear-gradient(to bottom, #02025f, #5e5e6e);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 10px 50px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    padding-top: 68px;
    border-bottom-left-radius: 25px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

#mobilMenu::-webkit-scrollbar {
    width: 4px;
}

#mobilMenu::-webkit-scrollbar-track {
    background: transparent;
}

#mobilMenu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

#mobilMenu.is-open {
    right: 0;
}

.mm-lang-section {
    padding: 0 16px;
    flex-shrink: 0;
}

.mm-lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
    user-select: none;
}

.mm-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
}

.mm-lang-globe {
    font-size: 14px;
    color: #7ec8ff;
    flex-shrink: 0;
}

.mm-lang-flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.mm-lang-name {
    flex: 1;
}

.mm-lang-chevron {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.3s ease;
}

.mm-lang-toggle.is-open .mm-lang-chevron {
    transform: rotate(180deg);
}

.mm-lang-options {
    max-height: 0;
    overflow: hidden;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: rgba(2, 2, 60, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: max-height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mm-lang-options.is-open {
    max-height: 500px;
    border-color: rgba(255, 255, 255, 0.08);
    opacity: 1;
}

.mm-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s, color 0.15s, padding-left 0.2s;
}

.mm-lang-option:last-child {
    border-bottom: none;
}

.mm-lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 18px;
}

.mm-lang-option.mm-lang-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mm-lang-option .mm-lang-flag {
    width: 20px;
    height: 14px;
}

.mm-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 12px 16px;
}

.mm-nav {
    list-style: none;
    margin: 0;
    padding: 0 16px;
    flex: 1;
}

.mm-nav-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mm-nav-item:last-child {
    border-bottom: none;
}

.mm-nav-link {
    display: flex;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: background 0.2s, color 0.2s;
    height: 46px;
}

.mm-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mm-nav-link.mm-active {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.mm-nav-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mm-nav-icon i {
    font-size: 15px;
    width: 18px;
    text-align: center;
    color: #ffffff;
    transition: color 0.2s;
}

.mm-nav-link:hover .mm-nav-icon i {
    color: rgba(255, 255, 255, 0.95);
}

.mm-nav-link.mm-active .mm-nav-icon i {
    color: #7ec8ff;
}

.mm-nav-text {
    flex: 1;
    padding-right: 14px;
}

.mm-active-bar {
    display: none;
    width: 3px;
    height: 20px;
    background: #7ec8ff;
    border-radius: 0 3px 3px 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mm-nav-link.mm-active .mm-active-bar {
    display: block;
}

@media (min-width: 992px) {

    #mobilMenuButon,
    #mobilMenu,
    #mobilMenuBackdrop {
        display: none !important;
    }
}