@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --header-v2-bg: #05162d;
    --header-v2-ink: #ffffff;
    --header-v2-muted: #8eb4d4;
    --header-v2-accent: #1a73ff;
    --header-v2-accent-hover: #0f63e8;
    --header-v2-icon-bg: rgba(255, 255, 255, 0.08);
    --header-v2-icon-border: rgba(255, 255, 255, 0.1);
    --header-v2-profile: #1f9d55;
    --header-v2-radius: 0px;
    --header-v2-height: 72px;
}

.header-v2-page {
    min-height: 100vh;
    background: #eef3f8;
}

.header-v2,
.header-v2 * {
    box-sizing: border-box;
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
}

.header-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
}

.header-v2-spacer {
    height: calc(var(--header-v2-height));
}

.header-v2__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: var(--header-v2-height);
    padding: 10px 18px;
    background: var(--header-v2-bg);
    border-radius: var(--header-v2-radius);
    color: var(--header-v2-ink);
    box-shadow: 0 8px 24px rgba(5, 22, 45, 0.28);
    overflow: visible;
}

.header-v2__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.header-v2__brand-mark {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
}

.header-v2__brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-v2__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.header-v2__brand-text strong {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.header-v2__brand-text small,
.header-v2__brand-subtitle {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--header-v2-muted);
}

.header-v2--brand-subtitle-collapsed .header-v2__brand-subtitle {
    display: none;
}

.header-v2__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 auto;
}

.header-v2__nav-link,
.header-v2__nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.header-v2__nav-link:hover,
.header-v2__nav-trigger:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.header-v2__nav-link.is-active,
.header-v2__nav-trigger.is-active {
    color: #fff;
}

.header-v2__nav-link.is-active .header-v2__nav-icon,
.header-v2__nav-trigger.is-active .header-v2__nav-icon {
    color: var(--header-v2-accent);
}

.header-v2__nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: var(--header-v2-accent);
}

.header-v2__nav-trigger.is-active::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: var(--header-v2-accent);
}

.header-v2__nav-trigger::after,
.header-v2__cta::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    opacity: 0.72;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-v2__nav-group:hover > .header-v2__nav-trigger::after,
.header-v2__cta-wrap:hover > .header-v2__cta::after {
    opacity: 1;
    transform: rotate(180deg);
}

.header-v2__nav-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.header-v2__nav-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.header-v2__nav-group {
    position: relative;
}

.header-v2__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 10px 0 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    transition-delay: 0.08s;
    z-index: 120;
}

.header-v2__dropdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
}

.header-v2__dropdown-panel {
    padding: 8px;
    border-radius: 12px;
    background: #0b2340;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.header-v2__cta-wrap .header-v2__dropdown,
.header-v2__staff-wrap .header-v2__dropdown {
    left: auto;
    right: 0;
}

.header-v2__staff-wrap {
    position: relative;
    flex: 0 0 auto;
}

.header-v2__staff-wrap:hover .header-v2__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.header-v2__staff-trigger.is-active {
    color: #fff;
    background: rgba(26, 115, 255, 0.22);
    border-color: rgba(26, 115, 255, 0.45);
    box-shadow: 0 0 0 1px rgba(26, 115, 255, 0.2);
}

.header-v2__dropdown-panel--staff {
    min-width: 248px;
}

.header-v2__staff-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    white-space: nowrap;
}

.header-v2__staff-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.header-v2__staff-link.is-active {
    background: rgba(26, 115, 255, 0.2);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(26, 115, 255, 0.35);
}

.header-v2__nav-group:hover .header-v2__dropdown,
.header-v2__cta-wrap:hover .header-v2__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.header-v2__dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.header-v2__dropdown-panel a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.header-v2__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    overflow: visible;
}

.header-v2__tip[data-tooltip]::after,
.header-v2__tip[data-tooltip]::before {
    position: absolute;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 5100;
}

.header-v2__tip[data-tooltip]::after {
    content: attr(data-tooltip);
    top: calc(100% + 10px);
    transform: translate(-50%, -5px);
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(158, 194, 255, 0.32);
    background: linear-gradient(180deg, #0e2a49 0%, #0b2340 100%);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 12px 28px rgba(0, 0, 0, 0.34);
}

.header-v2__tip[data-tooltip]::before {
    content: "";
    top: calc(100% + 4px);
    transform: translate(-50%, -5px);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #0e2a49;
    filter: drop-shadow(0 -1px 0 rgba(158, 194, 255, 0.22));
}

.header-v2__tip[data-tooltip]:hover::after,
.header-v2__tip[data-tooltip]:hover::before,
.header-v2__tip[data-tooltip]:focus-visible::after,
.header-v2__tip[data-tooltip]:focus-visible::before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.header-v2__staff-wrap:hover .header-v2__staff-trigger[data-tooltip]::after,
.header-v2__staff-wrap:hover .header-v2__staff-trigger[data-tooltip]::before,
.header-v2__profile-wrap.is-open[data-tooltip]::after,
.header-v2__profile-wrap.is-open[data-tooltip]::before {
    opacity: 0;
    visibility: hidden;
}

body.header-v2-search-open .header-v2__tip[data-header-v2-search-open]::after,
body.header-v2-search-open .header-v2__tip[data-header-v2-search-open]::before {
    opacity: 0;
    visibility: hidden;
}

.header-v2__cta-wrap {
    position: relative;
}

.header-v2__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--header-v2-accent);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.header-v2__cta:hover {
    background: var(--header-v2-accent-hover);
}

.header-v2__cta .header-v2__nav-icon {
    color: #fff;
}

.header-v2__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--header-v2-icon-border);
    background: var(--header-v2-icon-bg);
    color: #fff;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.header-v2__icon-btn svg {
    width: 20px;
    height: 20px;
}

.header-v2__auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--header-v2-icon-border);
    background: var(--header-v2-icon-bg);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s ease;
}

.header-v2__auth-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.header-v2__badge {
    position: absolute;
    top: 0px;
    right: 0px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--header-v2-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.header-v2__profile-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header-v2__profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border: 1px solid var(--header-v2-icon-border);
    border-radius: 50%;
    background: var(--header-v2-icon-bg);
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
}

.header-v2__profile:hover {
    background: rgba(255, 255, 255, 0.14);
}

.header-v2__profile-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.header-v2__profile-caret::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    opacity: 0.72;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-v2__profile-wrap.is-open .header-v2__profile-caret::after {
    opacity: 1;
    transform: rotate(180deg);
}

.header-v2__profile-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--header-v2-profile);
    color: #fff;
    overflow: hidden;
}

.header-v2__profile-avatar-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-v2__profile-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.header-v2__profile-avatar svg {
    width: 20px;
    height: 20px;
}

.header-v2__profile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 290px;
    padding: 10px;
    border-radius: 14px;
    background: #0b2340;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 130;
}

.header-v2__profile-wrap.is-open .header-v2__profile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-v2__profile-menu[hidden] {
    display: block;
}

.header-v2__profile-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.header-v2__profile-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.header-v2__profile-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.header-v2__profile-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.header-v2__profile-card-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.header-v2__profile-card-email {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--header-v2-muted);
    word-break: break-word;
}

.header-v2__profile-sep {
    height: 1px;
    margin: 8px 4px;
    background: rgba(255, 255, 255, 0.12);
}

.header-v2__profile-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    transition: background 0.2s ease;
}

.header-v2__profile-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.header-v2__profile-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.header-v2__profile-item-icon svg {
    width: 18px;
    height: 18px;
}

.header-v2__profile-balance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.header-v2__profile-balance-coin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--header-v2-muted);
    font-weight: 700;
}

.header-v2__profile-balance-coin img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.header-v2__profile-item--danger {
    color: #ffb4b4;
}

.header-v2__profile-item--danger .header-v2__profile-item-icon {
    background: rgba(255, 92, 92, 0.16);
    color: #ff8f8f;
}

.header-v2__profile-item--danger:hover {
    background: rgba(255, 92, 92, 0.12);
}

@media (max-width: 1100px) {
    .header-v2__nav {
        display: none;
    }
}

@media (max-width: 720px) {
    .header-v2__brand-text small {
        display: none;
    }

    .header-v2__cta > span:not(.header-v2__nav-icon) {
        display: none;
    }
}

html.header-v2-search-open,
body.header-v2-search-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}

body.header-v2-search-open {
    padding-right: var(--header-v2-scrollbar-gap, 0);
}

.header-v2-search {
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: max(72px, calc(env(safe-area-inset-top, 0px) + 56px)) 20px 28px;
    box-sizing: border-box;
    pointer-events: none;
}

.header-v2-search[hidden] {
    display: none;
}

.header-v2-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 14, 28, 0.68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: auto;
}

.header-v2-search__panel {
    position: relative;
    width: min(720px, 100%);
    max-height: min(72vh, 660px);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(158, 194, 255, 0.34);
    background: linear-gradient(180deg, #0e2a49 0%, #0b2340 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 0 5px rgba(26, 115, 255, 0.1),
        0 28px 70px rgba(0, 0, 0, 0.48),
        0 10px 28px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    pointer-events: auto;
    isolation: isolate;
}

.header-v2-search__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.header-v2-search__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-v2-search__field {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.header-v2-search__field svg {
    flex: 0 0 auto;
    opacity: 0.8;
}

.header-v2-search__input {
    width: 100%;
    min-width: 0;
    padding: 12px 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

.header-v2-search__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.header-v2-search__close {
    flex: 0 0 auto;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.header-v2-search__close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header-v2-search__body {
    overflow: auto;
    padding: 8px 10px 14px;
}

.header-v2-search__hint,
.header-v2-search__status {
    margin: 18px 8px;
    color: var(--header-v2-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.header-v2-search__status--error {
    color: #ffb4b4;
}

.header-v2-search__hint kbd,
.header-v2-search__status kbd {
    display: inline-block;
    margin: 0 2px;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.header-v2-search__group {
    padding: 8px 4px 4px;
}

.header-v2-search__group-title {
    margin: 0 8px 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-v2-search__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-v2-search__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: background 0.18s ease;
}

.header-v2-search__item:hover,
.header-v2-search__item:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.header-v2-search__item-badge {
    flex: 0 0 auto;
    margin-top: 2px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(26, 115, 255, 0.2);
    color: #9ec2ff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.header-v2-search__item-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.header-v2-search__item-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.header-v2-search__item-meta {
    color: var(--header-v2-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.header-v2-search__more {
    display: inline-flex;
    margin: 4px 8px 8px;
    color: #9ec2ff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.header-v2-search__more:hover {
    text-decoration: underline;
}

@media (max-width: 720px) {
    .header-v2-search {
        padding: max(16px, env(safe-area-inset-top, 0px)) 12px 16px;
        align-items: stretch;
    }

    .header-v2-search__panel {
        max-height: calc(100dvh - 32px);
        border-radius: 18px;
    }
}

.header-v2 .mobile-menu-topbar {
    display: none;
}

@media (max-width: 768px) {
    .header-v2 {
        padding: 0;
        transition: transform 0.24s ease, opacity 0.24s ease;
        will-change: transform;
    }

    .header-v2.header-v2--mobile-hidden {
        transform: translateY(-100%);
    }

    .header-v2-spacer {
        height: 0;
    }

    .header-v2__bar {
        display: none;
    }

    .header-v2 .mobile-menu-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 56px;
        padding: 0 14px;
        background: #0a2a4a;
        box-shadow: 0 10px 24px rgba(5, 24, 44, 0.24);
    }

    .header-v2 .mobile-menu-brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        flex: 1 1 auto;
        text-decoration: none;
    }

    .header-v2 .mobile-menu-brand-mark {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        border-radius: 10px;
    }

    .header-v2 .mobile-menu-brand-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .header-v2 .mobile-menu-brand-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        min-width: 0;
        line-height: 1;
        font-family: "Inter", "Arial", sans-serif !important;
    }

    .header-v2 .mobile-menu-brand-title {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.96);
        line-height: 1;
        white-space: nowrap;
    }

    .header-v2 .mobile-menu-brand-sub {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1;
        white-space: nowrap;
    }

    .header-v2 .mobile-menu-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .header-v2 .mobile-menu-auth {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.96);
        text-decoration: none;
        font-family: "Inter", "Arial", sans-serif !important;
        font-size: 13px;
        font-weight: 500;
        backdrop-filter: blur(10px);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        -webkit-tap-highlight-color: transparent;
    }

    .header-v2 .mobile-menu-messenger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border: none;
        background: transparent;
        color: rgba(255, 255, 255, 0.96);
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
    }

    .header-v2 .mobile-menu-messenger svg {
        width: 24px;
        height: 24px;
        display: block;
    }
}
