.vxr_header50_main_box {
    position: relative;
    z-index: 1000;
    font-family: 'Manrope', sans-serif;
}

.vxr_header50_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.vxr_header50_topbar {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 8px 0;
    font-size: 13px;
    color: #999;
}

.vxr_header50_topbar_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vxr_header50_topbar_left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.vxr_header50_topbar_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vxr_header50_topbar_item i {
    color: #e31e24;
    font-size: 12px;
}

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

.vxr_header50_social {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #999;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.vxr_header50_social:hover {
    background: #e31e24;
    color: #fff;
    transform: translateY(-2px);
}

.vxr_header50_navbar {
    background: #111;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.vxr_header50_navbar.vxr_header50_scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.vxr_header50_nav_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
}

.vxr_header50_logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.vxr_header50_logo:hover img {
    opacity: 0.85;
}

.vxr_header50_nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vxr_header50_nav_link {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.vxr_header50_nav_link:hover {
    color: #fff;
    background: rgba(227,30,36,0.1);
}

.vxr_header50_nav_link.vxr_header50_nav_active {
    color: #e31e24;
}

.vxr_header50_actions {
    display: flex;
    align-items: center;
}

.vxr_header50_phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 22px;
    background: #e31e24;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.vxr_header50_phone i {
    font-size: 14px;
    animation: vxr_header50_ring 2s ease-in-out infinite;
}

@keyframes vxr_header50_ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(0deg); }
}

.vxr_header50_phone:hover {
    background: #c41a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227,30,36,0.4);
}

.vxr_header50_burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.vxr_header50_burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.vxr_header50_mobile_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.vxr_header50_mobile_overlay.vxr_header50_active {
    display: block;
    opacity: 1;
}

.vxr_header50_mobile_panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #111;
    z-index: 1002;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.vxr_header50_mobile_panel.vxr_header50_active {
    right: 0;
}

.vxr_header50_mobile_panel_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vxr_header50_mobile_panel_head .vxr_header50_logo img {
    height: 40px;
}

.vxr_header50_close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.vxr_header50_close:hover {
    background: #e31e24;
    color: #fff;
}

.vxr_header50_mobile_nav {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}

.vxr_header50_mobile_link {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 24px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.vxr_header50_mobile_link:hover,
.vxr_header50_mobile_link.vxr_header50_nav_active {
    color: #e31e24;
    background: rgba(227,30,36,0.05);
    border-left-color: #e31e24;
}

.vxr_header50_mobile_footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.vxr_header50_mobile_phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
    background: #e31e24;
    border-radius: 8px;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s ease;
}

.vxr_header50_mobile_phone:hover {
    background: #c41a1f;
}

.vxr_header50_mobile_socials {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.vxr_header50_mobile_socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #999;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vxr_header50_mobile_socials a:hover {
    background: #e31e24;
    color: #fff;
}

@media(max-width: 1024px) {
    .vxr_header50_topbar {
        display: none;
    }
    .vxr_header50_nav,
    .vxr_header50_actions {
        display: none;
    }
    .vxr_header50_burger {
        display: flex;
    }
    .vxr_header50_nav_inner {
        min-height: 60px;
    }
}