    .mobile-menu-trigger {
        display: none;
        appearance: none;
        border: 0;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.92);
        color: #17324a;
        padding: 10px 14px;
        font: inherit;
        font-weight: 700;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 16px 32px rgba(17, 53, 84, 0.14);
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .mobile-menu-trigger:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 40px rgba(17, 53, 84, 0.18);
    }

    .mobile-menu-trigger svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(18, 28, 38, 0.42);
        backdrop-filter: blur(10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
        z-index: 999;
        display: none;
    }

    .mobile-menu-overlay.is-open {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 14px;
        left: 14px;
        bottom: 14px;
        width: min(340px, calc(100vw - 28px));
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(215, 226, 234, 0.92);
        border-radius: 32px;
        box-shadow: 0 30px 80px rgba(17, 53, 84, 0.2);
        transform: translateX(-112%);
        transition: transform 0.26s ease;
        z-index: 1000;
        display: none;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-menu-panel::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top left, rgba(13, 167, 160, 0.12), transparent 30%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9));
        pointer-events: none;
    }

    .mobile-menu-panel.is-open {
        display: flex;
        transform: translateX(0);
    }

    .mobile-menu-inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .mobile-menu-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        padding: 26px 22px 18px;
        border-bottom: 1px solid rgba(215, 226, 234, 0.9);
    }

    .mobile-menu-profile {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
    }

    .mobile-menu-avatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0f4c75, #0da7a0);
        color: #fff;
        display: grid;
        place-items: center;
        font-weight: 800;
        letter-spacing: 0.04em;
        flex-shrink: 0;
        box-shadow: 0 14px 28px rgba(15, 76, 117, 0.2);
    }

    .mobile-menu-user {
        min-width: 0;
    }

    .mobile-menu-user strong,
    .mobile-menu-user span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-menu-user strong {
        font-size: 1.1rem;
        color: #17324a;
    }

    .mobile-menu-user span {
        margin-top: 4px;
        color: #62798d;
        font-size: 0.95rem;
    }

    .mobile-menu-close {
        appearance: none;
        border: 0;
        width: 40px;
        height: 40px;
        border-radius: 14px;
        background: rgba(15, 76, 117, 0.08);
        color: #17324a;
        display: grid;
        place-items: center;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-menu-close svg {
        width: 18px;
        height: 18px;
    }

    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 18px 14px 22px;
        display: grid;
        gap: 8px;
        overflow-y: auto;
    }

    .mobile-menu-link {
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 20px;
        color: #1a1d2e;
        font-weight: 700;
        transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:focus-visible {
        background: rgba(13, 167, 160, 0.07);
        color: #0f4c75;
        transform: translateX(2px);
        outline: none;
    }

    .mobile-menu-link.is-active {
        background: linear-gradient(135deg, rgba(15, 76, 117, 0.10), rgba(13, 167, 160, 0.10));
        color: #0f4c75;
        box-shadow: inset 0 0 0 1px rgba(15, 76, 117, 0.08);
    }

    .mobile-menu-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        color: currentColor;
    }

    .mobile-menu-badge {
        margin-left: auto;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        border-radius: 999px;
        background: #e53e3e;
        color: #fff;
        font-size: 0.7rem;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    @media (max-width: 768px) {
        .mobile-menu-trigger {
            display: inline-flex;
        }
        .mobile-menu-overlay {
            display: block;
        }
        .mobile-menu-panel {
            display: flex;
        }

        .desktop-actions,
        .cryo-nav,
        .nav {
            display: none !important;
        }
    }

    @media (min-width: 769px) {
        .mobile-menu-overlay,
        .mobile-menu-panel {
            display: none !important;
        }
        .mobile-menu-trigger {
            display: none !important;
        }
    }
