.vxr_hdr_c1l3_main_box {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    border-bottom: 1px solid rgba(166, 255, 0, 0.08);
    transition: border-color 0.3s ease, padding 0.3s ease;
}

.vxr_hdr_c1l3_main_box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.92) 0%, rgba(14, 14, 20, 0.82) 100%),
            url('https://cdn.vexar.io/uploads/library/10d98c5763a045789865178d3a554000.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: -1;
}

.vxr_hdr_c1l3_main_box.vxr_hdr_c1l3_scrolled::before {
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.97) 0%, rgba(12, 12, 18, 0.95) 100%);
}

.vxr_hdr_c1l3_main_box.vxr_hdr_c1l3_scrolled {
    border-bottom: 1px solid rgba(166, 255, 0, 0.18);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.vxr_hdr_c1l3_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 2;
    transition: padding 0.3s ease;
}

.vxr_hdr_c1l3_main_box.vxr_hdr_c1l3_scrolled .vxr_hdr_c1l3_container {
    padding: 12px 20px;
}

.vxr_hdr_c1l3_logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    position: relative;
}

.vxr_hdr_c1l3_logo_text {
    font-family: 'Oswald', 'Bebas Neue', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
}

.vxr_hdr_c1l3_logo_accent {
    color: #c2ff00;
    text-shadow: 0 0 18px rgba(194, 255, 0, 0.55);
}

.vxr_hdr_c1l3_logo_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2bd6;
    box-shadow: 0 0 10px rgba(255, 43, 214, 0.85);
    margin-top: -14px;
    margin-left: 2px;
}

.vxr_hdr_c1l3_nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vxr_hdr_c1l3_nav_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

.vxr_hdr_c1l3_nav_link {
    position: relative;
    display: inline-block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e6e8ec;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vxr_hdr_c1l3_nav_link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: linear-gradient(90deg, #c2ff00, #ff2bd6);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

.vxr_hdr_c1l3_nav_link:hover {
    color: #c2ff00;
}

.vxr_hdr_c1l3_nav_link:hover::after {
    transform: scaleX(1);
}

.vxr_hdr_c1l3_actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vxr_hdr_c1l3_cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: #ff2bd6;
    color: #0a0a0e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(255, 43, 214, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    overflow: hidden;
}

.vxr_hdr_c1l3_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transition: left 0.55s ease;
}

.vxr_hdr_c1l3_cta:hover {
    transform: translateY(-2px);
    background: #c2ff00;
    color: #0a0a0e;
    box-shadow: 0 10px 28px rgba(194, 255, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.vxr_hdr_c1l3_cta:hover::before {
    left: 130%;
}

.vxr_hdr_c1l3_cta_icon {
    font-size: 14px;
}

.vxr_hdr_c1l3_burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(194, 255, 0, 0.18);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.vxr_hdr_c1l3_burger:hover {
    background: rgba(194, 255, 0, 0.08);
    border-color: rgba(194, 255, 0, 0.4);
}

.vxr_hdr_c1l3_burger_line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: #c2ff00;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.vxr_hdr_c1l3_burger_line:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
}

.vxr_hdr_c1l3_burger_line:nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
}

.vxr_hdr_c1l3_burger.vxr_hdr_c1l3_open .vxr_hdr_c1l3_burger_line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.vxr_hdr_c1l3_burger.vxr_hdr_c1l3_open .vxr_hdr_c1l3_burger_line:nth-child(2) {
    opacity: 0;
}

.vxr_hdr_c1l3_burger.vxr_hdr_c1l3_open .vxr_hdr_c1l3_burger_line:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.vxr_hdr_c1l3_mobile_overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: linear-gradient(180deg, rgba(6, 6, 10, 0.97) 0%, rgba(10, 10, 16, 0.98) 100%),
            url('https://cdn.vexar.io/uploads/library/10d98c5763a045789865178d3a554000.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
}

.vxr_hdr_c1l3_mobile_overlay.vxr_hdr_c1l3_visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vxr_hdr_c1l3_mobile_close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 43, 214, 0.18);
    border: 1px solid rgba(255, 43, 214, 0.4);
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1051;
    transition: background 0.3s ease, transform 0.3s ease;
}

.vxr_hdr_c1l3_mobile_close:hover {
    background: #ff2bd6;
    color: #0a0a0e;
    transform: rotate(90deg);
}

.vxr_hdr_c1l3_mobile_inner {
    min-height: 100%;
    padding: 90px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 460px;
    margin: 0 auto;
}

.vxr_hdr_c1l3_mobile_logo {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
}

.vxr_hdr_c1l3_mobile_nav {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
}

.vxr_hdr_c1l3_mobile_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vxr_hdr_c1l3_mobile_list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vxr_hdr_c1l3_mobile_list li:last-child {
    border-bottom: none;
}

.vxr_hdr_c1l3_mobile_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, padding 0.3s ease;
}

.vxr_hdr_c1l3_mobile_link::after {
    content: '\\2192';
    font-size: 18px;
    color: #c2ff00;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vxr_hdr_c1l3_mobile_link:hover {
    color: #c2ff00;
    padding-left: 10px;
}

.vxr_hdr_c1l3_mobile_link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.vxr_hdr_c1l3_mobile_cta {
    display: block;
    text-align: center;
    padding: 18px 24px;
    background: #ff2bd6;
    color: #0a0a0e;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 43, 214, 0.4);
    transition: background 0.3s ease, transform 0.3s ease;
}

.vxr_hdr_c1l3_mobile_cta:hover {
    background: #c2ff00;
    transform: translateY(-2px);
}

.vxr_hdr_c1l3_mobile_meta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vxr_hdr_c1l3_mobile_meta_label {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: #c2ff00;
    text-transform: uppercase;
}

.vxr_hdr_c1l3_mobile_social {
    display: flex;
    gap: 12px;
}

.vxr_hdr_c1l3_mobile_soc {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.vxr_hdr_c1l3_mobile_soc:hover {
    background: #c2ff00;
    color: #0a0a0e;
    border-color: #c2ff00;
    transform: translateY(-2px);
}

@media (max-width: 1024px){
        .vxr_hdr_c1l3_nav{
            display: none;
        }
        .vxr_hdr_c1l3_burger{
            display: inline-block;
        }
    }

@media (max-width: 600px){
        .vxr_hdr_c1l3_cta_text{
            display: none;
        }
        .vxr_hdr_c1l3_cta{
            padding: 12px 14px;
        }
        .vxr_hdr_c1l3_logo_text{
            font-size: 24px;
        }
        .vxr_hdr_c1l3_container{
            padding: 14px 16px;
        }
    }