/* Megakron shared navigation
   Edit this file for the reusable interior navigation and shared index nav refinements. */

:root {
    --mk-nav-blue: #1264bd;
    --mk-nav-blue-bright: #1b74ff;
    --mk-nav-blue-deep: #061a38;
    --mk-nav-charcoal: #070b14;
    --mk-nav-ink: #071225;
    --mk-nav-white: #ffffff;
}

.mk-site-navigation,
.mk-site-navigation * {
    box-sizing: border-box;
}

.mk-site-navigation {
    position: relative;
    z-index: 90;
    width: 100%;
    color: var(--mk-nav-white);
    font-family: "Inter", "Plus Jakarta Sans", Arial, sans-serif;
}

.mk-site-navigation a {
    text-decoration: none;
}

.mk-site-navigation .container {
    max-width: 1320px;
}

/* Top welcome row */
.mk-site-topbar {
    min-height: 34px;
    color: var(--mk-nav-white);
    background: linear-gradient(90deg, #010714 0%, #041832 48%, #082d5f 100%);
    border-bottom: 1px solid rgba(151, 202, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mk-site-topbar-inner,
.mk-site-contactbar-inner,
.mk-site-mainbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.mk-site-topbar-inner {
    min-height: 34px;
}

.mk-site-welcome {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-shadow: 0 0 16px rgba(87, 166, 255, 0.3);
}

.mk-site-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mk-site-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    background: transparent;
    box-shadow: none;
    opacity: 0.9;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.mk-site-social a:hover {
    color: #8fc5ff;
    opacity: 1;
    transform: translateY(-1px);
    text-shadow: 0 0 14px rgba(117, 178, 255, 0.65);
}

/* Logo and contact row */
.mk-site-contactbar {
    background: linear-gradient(90deg, rgba(8, 55, 114, 0.98), rgba(7, 47, 99, 0.96) 52%, rgba(4, 25, 58, 0.98));
    border-bottom: 1px solid rgba(173, 216, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 36px rgba(0, 0, 0, 0.18);
}

.mk-site-contactbar-inner {
    min-height: 80px;
}

.mk-site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.mk-site-logo img {
    display: block;
    width: auto;
    max-height: 58px;
}

.mk-site-contact-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-left: auto;
}

.mk-site-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #ffffff;
}

.mk-site-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(4, 20, 44, 0.26);
    box-shadow: 0 0 16px rgba(159, 207, 255, 0.16);
}

.mk-site-contact-label {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
}

.mk-site-contact-value,
.mk-site-contact-value a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

/* Main navigation row */
.mk-site-mainbar {
    background: rgba(7, 10, 16, 0.82);
    border-bottom: 1px solid rgba(108, 169, 255, 0.22);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mk-main-menu-light .mk-site-mainbar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(18, 100, 189, 0.18);
    box-shadow: 0 16px 34px rgba(7, 18, 37, 0.1);
}

.mk-site-mainbar-inner {
    min-height: 66px;
}

.mk-site-menu {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.35vw, 24px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.mk-site-menu > li {
    position: relative;
}

.mk-site-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 66px;
    color: #ffffff;
    font-size: clamp(11px, 0.72vw, 13px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    white-space: nowrap;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.mk-main-menu-light .mk-site-menu > li > a {
    color: #071f43;
    text-shadow: none;
}

.mk-site-menu > li > a:hover,
.mk-site-menu > li.is-current > a,
.mk-main-menu-light .mk-site-menu > li > a:hover,
.mk-main-menu-light .mk-site-menu > li.is-current > a {
    color: var(--mk-nav-blue-bright);
    text-shadow: 0 0 14px rgba(27, 116, 255, 0.25);
}

.mk-site-menu > li > a i,
.mk-menu > li > a i,
.mk-mobile-menu-row > a i {
    margin-right: 6px;
    color: inherit;
    font-size: 0.9em;
}

.mk-site-menu .has-submenu > a::after {
    content: "+";
    margin-left: 1px;
    color: var(--mk-nav-blue-bright);
    font-weight: 700;
}

.mk-site-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    min-width: 240px;
    margin: 0;
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    border: 1px solid rgba(74, 151, 255, 0.24);
    border-radius: 10px;
    background: rgba(7, 13, 27, 0.95);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34), 0 0 28px rgba(18, 100, 189, 0.14);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.mk-site-menu > li:hover .mk-site-submenu,
.mk-site-menu > li:focus-within .mk-site-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mk-site-submenu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.mk-site-submenu a:hover {
    color: #ffffff;
    background: rgba(27, 116, 255, 0.18);
}

/* Shop buttons */
.mk-site-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}

.mk-site-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    overflow: hidden;
    border: 1px solid rgba(117, 178, 255, 0.42);
    border-radius: 5px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    background: #1264bd;
    box-shadow: none;
    transition: color 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.mk-site-action-btn::after {
    content: "";
    position: absolute;
    inset: -2px auto -2px -45%;
    width: 42%;
    display: none;
    background: none;
    transform: skewX(-18deg);
    opacity: 0;
    transition: left 0.55s ease, opacity 0.2s ease;
}

.mk-site-action-btn i,
.mk-site-action-btn span {
    position: relative;
    z-index: 1;
}

.mk-site-action-btn i {
    margin-right: 7px;
}

.mk-site-action-btn--merch {
    color: #061a38;
    background: #ffffff;
    border-color: rgba(18, 100, 189, 0.34);
    box-shadow: 0 0 18px rgba(27, 116, 255, 0.16);
}

.mk-site-action-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
    border-color: rgba(197, 225, 255, 0.8);
    background: #0e56a7;
    box-shadow: 0 0 24px rgba(27, 116, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mk-site-action-btn:hover::after {
    left: 110%;
    opacity: 1;
}

.mk-site-action-btn--merch:hover {
    color: #1264bd;
    background: #edf5ff;
    border-color: rgba(117, 178, 255, 0.72);
}

/* Sticky state */
.mk-site-navigation.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.mk-site-navigation.is-sticky .mk-site-topbar,
.mk-site-navigation.is-sticky .mk-site-contactbar {
    display: none;
}

.mk-site-navigation.is-sticky .mk-site-mainbar {
    background: linear-gradient(90deg, rgba(5, 21, 48, 0.98), rgba(8, 45, 94, 0.98) 48%, rgba(4, 17, 36, 0.98));
    border-bottom-color: rgba(108, 169, 255, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 30px rgba(27, 116, 255, 0.16);
}

.mk-site-navigation.is-sticky .mk-site-menu > li > a,
.mk-site-navigation.is-sticky .mk-site-action-btn,
.mk-site-navigation.is-sticky .mk-site-mobile-toggle {
    color: #ffffff;
}

.mk-site-navigation.is-sticky .mk-site-action-btn--merch {
    color: #061a38;
    background: #ffffff;
    border-color: rgba(117, 178, 255, 0.46);
}

.mk-site-navigation.is-sticky .mk-site-action-btn--merch:hover {
    color: #1264bd;
    background: #edf5ff;
}


.mk-sticky-charcoal.is-sticky .mk-site-mainbar {
    background: rgba(13, 16, 22, 0.98);
    border-bottom-color: rgba(120, 132, 150, 0.25);
}

.mk-sticky-light.is-sticky .mk-site-mainbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(18, 100, 189, 0.18);
    box-shadow: 0 16px 38px rgba(7, 18, 37, 0.12);
}

.mk-sticky-light.is-sticky .mk-site-menu > li > a,
.mk-sticky-light.is-sticky .mk-site-action-btn--merch,
.mk-sticky-light.is-sticky .mk-site-mobile-toggle {
    color: #071f43;
}

.mk-site-menu-logo-item {
    display: none;
    margin-right: -8px;
}

.mk-site-menu-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    padding-right: 4px;
}

.mk-site-menu-logo-link img {
    display: block;
    width: auto;
    max-height: 50px;
    filter: drop-shadow(0 0 14px rgba(27, 116, 255, 0.34));
}

.mk-site-navigation.is-sticky .mk-site-menu-logo-item {
    display: inline-flex;
}

/* Mobile navigation */
.mk-site-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(117, 178, 255, 0.45);
    border-radius: 10px;
    color: #ffffff;
    background: rgba(18, 100, 189, 0.96);
    box-shadow: 0 0 20px rgba(27, 116, 255, 0.24);
}

.mk-site-mobile-panel {
    display: none;
}

body.mk-site-menu-open {
    overflow: hidden;
}

/* Shared index/header icon sizing */
.mk-index-navigation .mk-topbar-contact i,
.mk-index-navigation .mk-topbar-social a,
.mk-nav .mk-topbar-contact i,
.mk-nav .mk-topbar-social a {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
    border-radius: 8px;
    font-size: 10px;
}

@media (max-width: 1399px) {
    .mk-site-menu {
        gap: 14px;
    }

    .mk-site-menu > li > a {
        font-size: 11px;
    }

    .mk-site-action-btn {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 10px;
    }
}

@media (max-width: 1199px) {
    .mk-site-contact-list {
        gap: 18px;
    }

    .mk-site-contact-value,
    .mk-site-contact-value a {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .mk-site-topbar {
        display: none;
    }

    .mk-site-contactbar-inner {
        min-height: 80px;
    }

    .mk-site-contact-list,
    .mk-site-menu,
    .mk-site-actions {
        display: none;
    }

    .mk-site-logo img {
        max-height: 54px;
    }

    .mk-site-mobile-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .mk-site-mainbar {
        position: static;
        height: 0;
        min-height: 0;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .mk-site-mainbar-inner {
        min-height: 0;
        height: 0;
        padding: 0;
    }

    .mk-site-mobile-panel {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 120;
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.42s ease, opacity 0.25s ease, visibility 0.25s ease;
    }

    .mk-site-mobile-backdrop {
        display: none;
    }

    .mk-site-mobile-drawer {
        width: 100%;
        max-height: calc(100vh - 80px);
        padding: 18px 20px 24px;
        overflow-y: auto;
        border-top: 1px solid rgba(117, 178, 255, 0.22);
        border-bottom: 1px solid rgba(117, 178, 255, 0.22);
        background: rgba(7, 13, 27, 0.97);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42), 0 10px 35px rgba(27, 116, 255, 0.1);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mk-site-navigation.mobile-open .mk-site-mobile-panel {
        max-height: calc(100vh - 80px);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mk-site-mobile-head {
        display: none;
    }

    .mk-site-mobile-menu {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mk-site-mobile-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mk-site-mobile-menu a,
    .mk-site-mobile-subtoggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        padding: 0;
        border: 0;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        background: transparent;
        box-shadow: none;
    }

    .mk-site-mobile-subtoggle {
        cursor: pointer;
    }

    .mk-site-mobile-subtoggle i {
        color: #72adff;
        transition: transform 0.25s ease;
    }

    .mk-site-mobile-menu li.is-open > .mk-site-mobile-subtoggle i {
        transform: rotate(45deg);
    }

    .mk-site-mobile-submenu {
        display: none;
        margin: 0;
        padding: 0 0 12px 16px;
        list-style: none;
    }

    .is-open > .mk-site-mobile-submenu {
        display: grid;
    }

    .mk-site-mobile-submenu a {
        min-height: auto;
        padding: 8px 0;
        color: rgba(255, 255, 255, 0.74);
        font-size: 13px;
        text-transform: none;
    }

    .mk-site-mobile-ctas {
        display: grid;
        gap: 10px;
        margin-top: 18px;
    }

    .mk-site-mobile-ctas .mk-site-action-btn {
        display: flex;
        min-height: 44px;
        font-size: 11px;
    }

    .mk-site-mobile-social {
        justify-content: flex-start;
        margin-top: 24px;
    }

    .mk-site-menu-logo-item {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .mk-site-contactbar-inner {
        min-height: 80px;
    }

    .mk-site-logo img {
        max-height: 48px;
    }

    .mk-site-mobile-toggle {
        width: 42px;
        height: 42px;
    }
}



/* Reliable interior-page sticky layer. */
.mk-site-navigation.is-sticky { position: fixed !important; z-index: 10000; animation: mk-header-slide-in .22s ease-out; }
@keyframes mk-header-slide-in { from { transform: translateY(-12px); opacity: .92; } to { transform: translateY(0); opacity: 1; } }

/* Home navigation secondary action. */
.mk-nav-actions .mk-pill--merch { color: #061a38; background: #fff; border-color: rgba(18, 100, 189, .35); }
.mk-nav-actions .mk-pill--merch:hover { color: #fff; background: #0a3975; }

/* Fallback: interior navigation remains pinned even if JavaScript is delayed. */
.mk-site-navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10000;
}
.mk-site-navigation.is-sticky { position: fixed !important; width: 100%; }


/* Home header, sticky state, and responsive navigation moved from main-content.css. */


        .mk-nav {
            position: fixed;
            z-index: 90;
            top: 0;
            left: 0;
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.16);
            background: linear-gradient(180deg, rgba(7, 10, 16, 0.86), rgba(7, 10, 16, 0.46));
            backdrop-filter: blur(14px);
            transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
        }

        .mk-nav.is-scrolled {
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(7, 10, 16, 0.96);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
        }

        .mk-topbar {
            min-height: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(7, 10, 16, 0.72);
            color: rgba(255, 255, 255, 0.82);
            font-size: 12px;
            font-weight: 700;
        }

        .mk-topbar-inner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 32px;
            gap: 18px;
        }

        .mk-topbar-links {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .mk-topbar a,
        .mk-topbar span {
            color: rgba(255, 255, 255, 0.82);
        }

        .mk-topbar i {
            margin-right: 7px;
            color: var(--mk-blue);
        }

        .mk-nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 18px;
        }

        .mk-logo img {
            width: 150px;
        }

        .mk-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1 1 auto;
            min-width: 0;
            gap: 15px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .mk-menu li {
            position: relative;
        }

        .mk-menu a {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 12px;
            line-height: 1;
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
            text-shadow: 0 1px 14px rgba(0, 0, 0, 0.48);
        }

        .mk-menu a:hover,
        .mk-menu a.active {
            color: var(--mk-white);
        }

        .mk-menu .menu-item-has-children > a::after {
            content: "+";
            color: var(--mk-blue);
            font-weight: 900;
        }

        .mk-sub-menu {
            position: absolute;
            top: calc(100% + 22px);
            left: 0;
            min-width: 250px;
            margin: 0;
            padding: 10px;
            list-style: none;
            background: rgba(7, 10, 16, 0.96);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
            opacity: 0;
            visibility: hidden;
            transform: translate3d(0, 10px, 0);
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        }

        .mk-menu li:hover > .mk-sub-menu,
        .mk-menu li:focus-within > .mk-sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translate3d(0, 0, 0);
        }

        .mk-sub-menu li + li {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mk-sub-menu a {
            display: flex;
            justify-content: flex-start;
            width: 100%;
            padding: 13px 12px;
            color: rgba(255, 255, 255, 0.82);
            font-size: 13px;
            line-height: 1.25;
            text-transform: none;
            text-shadow: none;
        }

        .mk-sub-menu a:hover {
            color: #ffffff;
            background: rgba(27, 116, 255, 0.16);
        }

        .mk-sub-menu i {
            color: var(--mk-blue);
        }

        .mk-nav-actions {
            display: flex;
            align-items: center;
            flex: 0 0 auto;
            gap: 10px;
        }

        .mk-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 42px;
            padding: 0 16px;
            background: var(--mk-blue);
            color: var(--mk-white);
            font-size: 12px;
            line-height: 1;
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
            border: 0;
        }

        .mk-pill:hover {
            color: var(--mk-white);
            background: #005de0;
        }

        @media (max-width: 1199px) {
            .mk-menu {
                display: none;
            }}

        @media (max-width: 767px) {
            .mk-nav-inner {
                min-height: 72px;
            }

            .mk-logo img {
                width: 150px;
            }

            .mk-nav .mk-pill {
                min-height: 42px;
                padding: 0 14px;
                font-size: 12px;
            }}
        .mk-nav {
            background: linear-gradient(180deg, rgba(7, 10, 16, 0.66), rgba(7, 10, 16, 0.28));
            backdrop-filter: blur(11px);
        }

        .mk-nav.is-scrolled {
            background: transparent;
            border-color: transparent;
            box-shadow: none;
            backdrop-filter: none;
            pointer-events: none;
        }

        .mk-nav.is-scrolled .mk-topbar {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transform: translateY(-100%);
        }

        .mk-mainbar {
            transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }

        .mk-nav.is-scrolled .mk-mainbar {
            background: rgba(7, 10, 16, 0.82);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
            backdrop-filter: blur(14px);
            pointer-events: auto;
        }

        .mk-topbar {
            max-height: 54px;
            background: rgba(7, 10, 16, 0.48);
            transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
        }

        .mk-topbar-social {
            display: flex;
            gap: 9px;
            align-items: center;
        }

        .mk-topbar-social a {
            display: grid;
            width: 27px;
            height: 27px;
            place-items: center;
            border: 1px solid rgba(93, 164, 255, 0.28);
            border-radius: 50%;
            background: rgba(27, 116, 255, 0.08);
            transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }

        .mk-topbar-social a:hover {
            color: #ffffff;
            background: var(--mk-blue);
            box-shadow: 0 0 15px rgba(27, 116, 255, 0.48);
        }

        .mk-topbar-social i {
            margin: 0;
            color: inherit;
        }

        .mk-sub-menu {
            border-color: rgba(74, 151, 255, 0.28);
            background: rgba(7, 13, 27, 0.94);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), 0 0 26px rgba(27, 116, 255, 0.16);
            backdrop-filter: blur(16px);
        }

        .mk-sub-menu a:hover {
            color: #86bdff;
            text-shadow: 0 0 12px rgba(27, 116, 255, 0.62);
        }

        .mk-mobile-toggle {
            display: none;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 1px solid rgba(91, 161, 255, 0.3);
            border-radius: 6px;
            color: #ffffff;
            background: rgba(27, 116, 255, 0.08);
            box-shadow: 0 0 18px rgba(27, 116, 255, 0.12);
        }

        .mk-mobile-toggle i {
            font-size: 19px;
        }

        .mk-mobile-menu {
            display: none;
        }

        @media (max-width: 1199.98px) {
            .mk-mobile-toggle {
                display: grid;
                flex: 0 0 44px;
                place-items: center;
            }

            .mk-nav-actions .mk-pill {
                display: none;
            }

            .mk-mobile-menu {
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                display: block;
                max-height: 0;
                overflow: hidden;
                visibility: hidden;
                opacity: 0;
                background: rgba(7, 12, 24, 0.97);
                box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42), 0 10px 35px rgba(27, 116, 255, 0.1);
                backdrop-filter: blur(18px);
                transition: max-height 0.42s ease, opacity 0.25s ease, visibility 0.25s ease;
            }

            .mk-nav.mobile-open .mk-mobile-menu {
                max-height: calc(100vh - 72px);
                visibility: visible;
                opacity: 1;
                overflow-y: auto;
            }

            .mk-mobile-menu-inner {
                padding: 18px 20px 24px;
            }

            .mk-mobile-menu ul {
                margin: 0;
                padding: 0;
                list-style: none;
            }

            .mk-mobile-menu > .container > .mk-mobile-menu-inner > ul > li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .mk-mobile-menu-row {
                display: flex;
                align-items: center;
            }

            .mk-mobile-menu-row > a {
                display: flex;
                min-height: 50px;
                flex: 1;
                align-items: center;
                color: #ffffff;
                font-size: 14px;
                font-weight: 800;
                text-transform: uppercase;
            }

            .mk-mobile-sub-toggle {
                width: 44px;
                height: 44px;
                border: 0;
                color: #72adff;
                background: transparent;
                transition: transform 0.25s ease;
            }

            .mk-mobile-menu li.sub-open .mk-mobile-sub-toggle {
                transform: rotate(45deg);
            }

            .mk-mobile-sub-menu {
                display: none;
                padding: 0 0 12px 16px !important;
            }

            .mk-mobile-menu li.sub-open > .mk-mobile-sub-menu {
                display: block;
            }

            .mk-mobile-sub-menu a {
                display: block;
                padding: 9px 12px;
                color: rgba(255, 255, 255, 0.68);
                font-size: 13px;
            }

            .mk-mobile-contact {
                display: grid;
                gap: 10px;
                padding: 18px 0;
            }

            .mk-mobile-contact a {
                display: flex;
                min-height: 46px;
                padding: 0 14px;
                gap: 11px;
                align-items: center;
                border-radius: 6px;
                color: #ffffff;
                background: rgba(27, 116, 255, 0.1);
            }

            .mk-mobile-social {
                display: flex;
                gap: 10px;
                margin-bottom: 16px;
            }

            .mk-mobile-social a {
                display: grid;
                width: 38px;
                height: 38px;
                place-items: center;
                border-radius: 50%;
                color: #ffffff;
                background: rgba(27, 116, 255, 0.14);
            }

            .mk-mobile-shop {
                width: 100%;
            }}

        @media (max-width: 767.98px) {
            .mk-topbar-inner {
                padding: 9px 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .mk-topbar-links {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 7px;
            }

            .mk-topbar-social {
                position: absolute;
                top: 9px;
                right: 15px;
            }

            .mk-topbar {
                max-height: 150px;
            }

            .mk-logo img {
                width: 138px;
            }}
        .mk-topbar-message {
            flex: 1;
        }

        .mk-topbar-right {
            display: flex;
            margin-left: auto;
            gap: 16px;
            align-items: center;
            justify-content: flex-end;
        }

        .mk-topbar-links {
            gap: 12px;
        }

        .mk-topbar-contact {
            display: flex;
            gap: 8px;
            align-items: center;
            white-space: nowrap;
        }

        .mk-topbar-contact i,
        .mk-topbar-social a {
            display: grid;
            width: 21px;
            height: 21px;
            flex: 0 0 21px;
            margin: 0;
            place-items: center;
            border: 1px solid rgba(91, 161, 255, 0.32);
            border-radius: 8px;
            font-size: 10px;
            color: #77b0ff;
            background: rgba(27, 116, 255, 0.1);
            box-shadow: 0 0 12px rgba(27, 116, 255, 0.12);
            transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .mk-topbar-contact:hover i,
        .mk-topbar-social a:hover {
            color: #ffffff;
            border-color: rgba(117, 178, 255, 0.72);
            background: var(--mk-blue);
            box-shadow: 0 0 16px rgba(27, 116, 255, 0.48);
        }

        .mk-topbar-social {
            order: -1;
        }

        .mk-topbar-social i {
            width: auto;
            height: auto;
            color: inherit;
            background: transparent;
            border: 0;
            box-shadow: none;
        }

        .mk-mainbar {
            border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        }

        .mk-nav.is-scrolled .mk-topbar {
            min-height: 0;
            max-height: 0;
            border-bottom-width: 0;
        }

        .mk-nav.is-scrolled .mk-mainbar {
            transform: translateY(0);
            border-bottom-color: rgba(108, 169, 255, 0.3);
        }

        @media (max-width: 767.98px) {
            .mk-topbar {
                min-height: 42px;
                max-height: 54px;
            }

            .mk-topbar-inner {
                min-height: 42px;
                padding: 6px 0;
                flex-direction: row;
                align-items: center;
                justify-content: flex-end;
            }

            .mk-topbar-message,
            .mk-topbar-contact span {
                display: none;
            }

            .mk-topbar-right {
                width: 100%;
                margin-left: 0;
                gap: 10px;
            }

            .mk-topbar-links {
                width: auto;
                flex-direction: row;
                gap: 8px;
            }

            .mk-topbar-social {
                position: static;
                gap: 8px;
            }

            .mk-topbar-contact {
                gap: 0;
            }}
        .mk-topbar-inner {
            padding-top: 8px;
            padding-bottom: 8px;
        }

        .mk-topbar-right {
            order: -1;
            margin-right: 22px;
            margin-left: 0;
        }

        .mk-topbar-message {
            order: 1;
        }

        @media (max-width: 767.98px) {
            .mk-topbar-inner {
                padding-top: 11px;
                padding-bottom: 11px;
            }

            .mk-topbar-right {
                margin-right: 0;
            }}
        .mk-topbar-inner {
            justify-content: flex-start;
        }

        .mk-topbar-right {
            display: contents;
            margin: 0;
        }

        .mk-topbar-social {
            order: 0;
            margin-right: 14px;
        }

        .mk-topbar-message {
            order: 1;
            margin-right: auto;
        }

        .mk-topbar-links {
            order: 2;
            margin-left: auto;
            justify-content: flex-end;
        }

        @media (max-width: 767.98px) {
            .mk-topbar-inner {
                justify-content: flex-end;
            }

            .mk-topbar-social {
                margin-right: auto;
            }

            .mk-topbar-links {
                margin-left: 0;
            }}
        .mk-header-section,
        .mk-hero-section {
            position: relative;
        }

        .mk-header-section {
            z-index: 90;
        }

        /* 2026-08-28 mobile nav and hero control fixes */
        .mk-nav.mobile-open,
        .mk-nav.mobile-open .mk-mobile-menu {
            pointer-events: auto;
        }

        @media (max-width: 1199.98px) {
            .mk-nav.mobile-open.is-scrolled {
                background: rgba(7, 10, 16, 0.88);
                backdrop-filter: blur(14px);
            }

            .mk-nav.mobile-open .mk-mobile-menu {
                z-index: 80;
            }}

        @media (max-width: 767.98px) {
            .mk-topbar-inner {
                min-height: 42px;
                padding: 5px 0;
                gap: 6px;
            }

            .mk-topbar {
                max-height: 46px;
            }

            .mk-topbar-social {
                top: 7px;
                right: 12px;
                gap: 7px;
            }

            .mk-topbar-social a {
                width: 24px;
                height: 24px;
                border-radius: 10px;
                font-size: 11px;
            }

            .mk-topbar-contact {
                min-height: 28px;
                font-size: 12px;
            }

            .mk-topbar-contact i {
                width: 24px;
                height: 24px;
                border-radius: 10px;
                font-size: 11px;
            }

            .mk-mobile-menu {
                z-index: 90;
            }}

        @media (max-width: 479.98px) {
            .mk-topbar-social a {
                width: 22px;
                height: 22px;
                font-size: 10px;
            }}
    
        /* Index navigation fit guard */
        .mk-nav .mk-nav-inner {
            gap: 16px;
        }

        .mk-nav .mk-logo img {
            width: 150px;
        }

        .mk-nav .mk-menu {
            flex: 1 1 auto;
            min-width: 0;
            justify-content: center;
            gap: clamp(10px, 0.78vw, 15px);
        }

        .mk-nav .mk-menu > li > a {
            font-size: clamp(10px, 0.64vw, 12px);
            line-height: 1;
            font-weight: 700;
            white-space: nowrap;
        }

        .mk-nav .mk-pill {
            min-height: 42px;
            padding: 0 16px;
            font-size: 12px;
            line-height: 1;
            font-weight: 700;
            white-space: nowrap;
        }

        @media (max-width: 1399px) {
            .mk-nav .mk-logo img {
                width: 132px;
            }

            .mk-nav .mk-menu {
                gap: 10px;
            }

            .mk-nav .mk-pill {
                padding: 0 12px;
            }}
/* Interior dropdown glass treatment, including sticky navigation. */
.mk-site-navigation .mk-site-submenu {
  border: 1px solid rgba(112, 177, 255, .22);
  background: linear-gradient(145deg, rgba(5, 19, 42, .82), rgba(7, 30, 62, .72));
  box-shadow: 0 22px 48px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .07), 0 0 28px rgba(18, 100, 189, .15);
  backdrop-filter: blur(15px) saturate(135%);
  -webkit-backdrop-filter: blur(15px) saturate(135%);
}
.mk-site-navigation.is-sticky .mk-site-submenu {
  border-color: rgba(125, 190, 255, .28);
  background: linear-gradient(145deg, rgba(3, 15, 34, .74), rgba(8, 42, 84, .66));
  box-shadow: 0 24px 52px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .09), 0 0 32px rgba(27, 116, 255, .2);
}
.mk-site-navigation .mk-site-submenu a:hover {
  background: linear-gradient(90deg, rgba(27, 116, 255, .26), rgba(27, 116, 255, .08));
}


/* Shared contact hover, racing shine, and header search */
.mk-site-contact-list { gap: clamp(10px, 1.1vw, 22px); }
.mk-site-contact-item {
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 7px;
    transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
a.mk-site-contact-item:hover,
a.mk-site-contact-item:focus-visible,
.mk-site-contact-item:hover {
    color: #fff;
    transform: translateY(-1px);
    border-color: rgba(100, 174, 255, .28);
    background: rgba(8, 27, 58, .34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 0 22px rgba(30,126,255,.18);
}
.mk-site-contact-item:hover .mk-site-contact-icon {
    color: #8ac7ff;
    background: rgba(20, 107, 205, .3);
    box-shadow: 0 0 20px rgba(50, 145, 255, .38);
}
.mk-site-contact-icon { transition: color .22s ease, background .22s ease, box-shadow .22s ease; }

.mk-site-action-btn::after,
.mk-nav-actions .mk-pill::after,
.mk-header-search-toggle::after {
    content: "";
    position: absolute;
    top: -18%;
    bottom: -18%;
    left: -55%;
    display: block;
    width: 38%;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 0, rgba(43,137,255,.12) 22%, rgba(190,228,255,.86) 50%, rgba(43,137,255,.18) 78%, transparent 100%);
    transform: skewX(-18deg);
    opacity: 0;
    transition: left .62s cubic-bezier(.2,.75,.25,1), opacity .18s ease;
}
.mk-site-action-btn:hover::after,
.mk-site-action-btn:focus-visible::after,
.mk-nav-actions .mk-pill:hover::after,
.mk-nav-actions .mk-pill:focus-visible::after,
.mk-header-search-toggle:hover::after,
.mk-header-search-toggle:focus-visible::after { left: 118%; opacity: 1; }
.mk-nav-actions .mk-pill {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(117,178,255,.42);
    border-radius: 5px;
    background: #1264bd;
    box-shadow: none;
}
.mk-nav-actions .mk-pill > * { position: relative; z-index: 1; }
.mk-nav-actions .mk-pill--merch { background: #fff; }

.mk-header-search-sr {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.mk-header-inline-search {
    position: relative;
    display: flex;
    align-items: center;
    width: clamp(170px, 13vw, 220px);
    height: 38px;
    flex: 0 0 auto;
    overflow: visible;
    border: 1px solid rgba(126,187,255,.4);
    border-radius: 6px;
    background: rgba(4,20,44,.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.mk-header-inline-search:focus-within {
    border-color: #48a2ff;
    background: rgba(4,20,44,.68);
    box-shadow: 0 0 24px rgba(31,130,255,.25), inset 0 1px 0 rgba(255,255,255,.08);
}
.mk-header-inline-search input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 42px 0 13px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
}
.mk-header-inline-search input::placeholder { color: rgba(255,255,255,.62); }
.mk-header-inline-search > button {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 36px;
    border: 0;
    color: #91ccff;
    background: transparent;
    transition: color .2s ease, background .2s ease, text-shadow .2s ease;
}
.mk-header-inline-search > button:hover { color: #fff; background: rgba(24,111,214,.4); text-shadow: 0 0 12px #56aaff; }
.mk-header-inline-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 10030;
    width: min(390px, 88vw);
    max-height: 360px;
    padding: 7px;
    overflow: auto;
    border: 1px solid rgba(92,164,255,.35);
    border-radius: 8px;
    background: rgba(5,17,38,.98);
    box-shadow: 0 22px 48px rgba(0,0,0,.42), 0 0 28px rgba(22,112,230,.18);
}
.mk-header-inline-results[hidden] { display: none; }
.mk-header-search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 12px;
    border-radius: 6px;
    color: #fff;
    text-align: left;
    transition: background .18s ease, transform .18s ease;
}
.mk-header-search-result:hover { color: #fff; background: rgba(28,119,232,.2); transform: translateX(2px); }
.mk-header-search-result span { display: block; min-width: 0; }
.mk-header-search-result strong { display: block; color: #fff; font-size: 13px; line-height: 1.25; }
.mk-header-search-result small { display: block; margin-top: 3px; color: rgba(218,234,255,.68); font-size: 11px; line-height: 1.35; }
.mk-header-search-result > i { flex: 0 0 auto; color: #48a2ff; }
.mk-header-search-empty { margin: 0; padding: 14px; color: rgba(226,238,255,.75); font-size: 12px; }

.mk-header-search-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    overflow: hidden;
    border: 1px solid rgba(117,178,255,.46);
    border-radius: 5px;
    color: #fff;
    background: #1264bd;
    box-shadow: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mk-header-search-toggle:hover { color: #fff; transform: translateY(-1px); background: #0e56a7; border-color: rgba(197,225,255,.8); box-shadow: 0 0 22px rgba(27,116,255,.4); }
.mk-header-search-toggle > i,
.mk-header-search-toggle-label { position: relative; z-index: 1; }
.mk-header-search-toggle-label { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.mk-header-search-toggle--sticky { display: none; }
.mk-site-navigation.is-sticky .mk-header-search-toggle--sticky { display: inline-flex; }
.mk-header-search-toggle--mobile { display: none; margin-left: auto; }
.mk-site-navigation.is-sticky .mk-site-actions { gap: 7px; }

.mk-header-search-drawer {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: grid;
    place-items: start center;
    padding: clamp(80px, 12vh, 140px) 20px 30px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}
.mk-header-search-drawer.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.mk-header-search-backdrop { position: absolute; inset: 0; border: 0; background: rgba(1,7,17,.78); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.mk-header-search-dialog {
    position: relative;
    width: min(760px, 96vw);
    max-height: min(720px, 80vh);
    padding: clamp(22px, 4vw, 38px);
    overflow: auto;
    border: 1px solid rgba(91,164,255,.34);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(8,38,78,.98), rgba(4,15,33,.99));
    box-shadow: 0 35px 90px rgba(0,0,0,.58), 0 0 50px rgba(24,113,224,.18), inset 0 1px 0 rgba(255,255,255,.08);
    transform: translateY(-14px) scale(.985);
    transition: transform .25s ease;
}
.mk-header-search-drawer.is-open .mk-header-search-dialog { transform: translateY(0) scale(1); }
.mk-header-search-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.mk-header-search-heading span { color: #49a5ff; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.mk-header-search-heading h2 { margin: 5px 0 0; color: #fff; font-size: clamp(24px, 3vw, 38px); line-height: 1.05; }
.mk-header-search-heading button { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid rgba(123,187,255,.35); border-radius: 6px; color: #fff; background: rgba(17,82,162,.3); }
.mk-header-drawer-search { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; min-height: 54px; border: 1px solid rgba(117,178,255,.5); border-radius: 7px; background: rgba(2,12,27,.64); }
.mk-header-drawer-search > i { color: #53aaff; text-align: center; }
.mk-header-drawer-search input { width: 100%; min-width: 0; padding: 14px 4px; border: 0; outline: 0; color: #fff; background: transparent; font-size: 14px; }
.mk-header-drawer-search input::placeholder { color: rgba(218,234,255,.54); }
.mk-header-drawer-search button { align-self: stretch; padding: 0 20px; border: 0; border-left: 1px solid rgba(117,178,255,.28); color: #fff; background: #1264bd; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.mk-header-drawer-results { display: grid; gap: 4px; margin-top: 14px; }
.mk-header-drawer-results .mk-header-search-result { border: 1px solid transparent; background: rgba(255,255,255,.025); }
.mk-header-drawer-results .mk-header-search-result:hover { border-color: rgba(82,159,255,.24); background: rgba(24,105,205,.18); }
body.mk-header-search-open { overflow: hidden; }

.mk-topbar-contact { display: inline-flex; align-items: center; padding: 5px 7px; border: 1px solid transparent; border-radius: 5px; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
a.mk-topbar-contact:hover { color: #fff; border-color: rgba(90,165,255,.25); background: rgba(25,102,196,.2); box-shadow: 0 0 16px rgba(30,125,255,.16); }
.mk-header-inline-search--home { width: 155px; height: 28px; border-color: rgba(126,187,255,.28); }
.mk-header-inline-search--home > button { width: 30px; height: 26px; }
.mk-header-inline-search--home input { padding-right: 32px; font-size: 11px; }
.mk-nav .mk-header-search-toggle--home { display: none; }
.mk-nav.is-scrolled .mk-header-search-toggle--home { display: inline-flex; }

@media (max-width: 1399px) {
    .mk-site-contact-list { gap: 8px; }
    .mk-site-contact-item { padding-inline: 6px; }
    .mk-site-contact-value, .mk-site-contact-value a { font-size: 13px; }
    .mk-header-inline-search { width: 170px; }
    .mk-topbar-links { gap: 8px !important; }
    .mk-topbar-contact { font-size: 10px; }
    .mk-header-inline-search--home { width: 135px; }
}
@media (max-width: 1199px) {
    .mk-site-contact-item:nth-child(3) { display: none; }
    .mk-header-search-toggle-label { display: none; }
    .mk-header-search-toggle { width: 36px; padding: 0; }
    .mk-topbar-contact:nth-child(3) { display: none; }
}
@media (max-width: 991px) {
    .mk-header-search-toggle--mobile { display: inline-flex; }
    .mk-site-navigation.is-sticky .mk-site-contactbar { display: block; }
    .mk-site-navigation.is-sticky .mk-site-contactbar-inner { min-height: 64px; }
    .mk-site-navigation.is-sticky .mk-site-logo img { max-height: 44px; }
    .mk-site-navigation.is-sticky .mk-header-search-toggle--mobile { display: inline-flex; }
    .mk-nav .mk-header-search-toggle--home { display: inline-flex; }
    .mk-header-search-drawer { padding-top: 76px; }
}
@media (max-width: 767px) {
    .mk-header-search-dialog { padding: 20px 15px; }
    .mk-header-search-heading h2 { font-size: 25px; }
    .mk-header-drawer-search { grid-template-columns: 36px 1fr; }
    .mk-header-drawer-search button { grid-column: 1 / -1; min-height: 42px; border-top: 1px solid rgba(117,178,255,.28); border-left: 0; }
}
/* Balanced shared dropdown glass surface */
.mk-site-navigation .mk-site-submenu,
.mk-nav .mk-sub-menu {
    border-radius: 0 0 10px 10px;
    border-color: rgba(74, 151, 255, 0.34);
    background: rgba(8, 22, 44, 0.975);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.48), 0 0 30px rgba(18, 100, 189, 0.16);
    backdrop-filter: blur(14px) saturate(125%);
    -webkit-backdrop-filter: blur(14px) saturate(125%);
}
.mk-site-navigation.is-sticky .mk-site-submenu,
.mk-nav.is-scrolled .mk-sub-menu {
    background: rgba(8, 22, 44, 0.975);
}
/* Menu-adjacent sticky search icon */
.mk-header-menu-search-item {
    display: none !important;
    align-items: center;
    margin-left: -8px;
}
.mk-site-navigation.is-sticky .mk-header-menu-search-item,
.mk-nav.is-scrolled .mk-header-menu-search-item {
    display: inline-flex !important;
}
.mk-header-menu-search-item .mk-header-search-toggle {
    display: inline-flex;
    width: 30px;
    min-width: 30px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #7dbbff;
    background: transparent;
    box-shadow: none;
}
.mk-header-menu-search-item .mk-header-search-toggle::after { display: none; }
.mk-header-menu-search-item .mk-header-search-toggle-label { display: none; }
.mk-header-menu-search-item .mk-header-search-toggle:hover,
.mk-header-menu-search-item .mk-header-search-toggle:focus-visible {
    color: #ffffff;
    background: rgba(27, 116, 255, 0.2);
    box-shadow: 0 0 16px rgba(52, 143, 255, 0.3);
    transform: none;
}
/* Shared dropdown link dividers */
.mk-site-navigation .mk-site-submenu > li + li,
.mk-nav .mk-sub-menu > li + li {
    border-top: 1px solid rgba(115, 177, 255, 0.18);
}
/* Index top bar: blue glyphs without icon tiles, borders, or background fills. */
.mk-home-page .mk-nav .mk-topbar-contact i,
.mk-home-page .mk-nav .mk-topbar-social a,
.mk-home-page .mk-nav .mk-topbar-contact:hover i,
.mk-home-page .mk-nav .mk-topbar-social a:hover{border:0!important;border-radius:0!important;color:#3f9eff!important;background:transparent!important;box-shadow:none!important;text-shadow:0 0 10px rgba(63,158,255,.42)}
.mk-home-page .mk-nav a.mk-topbar-contact:hover{border-color:transparent!important;background:transparent!important;box-shadow:none!important}
/* Shared interior mobile navigation polish. */
.mk-site-mobile-call {
    display: none;
}

@media (max-width: 991px) {
    .mk-site-navigation.is-sticky .mk-site-contactbar {
        border-bottom: 1px solid rgba(57, 145, 255, 0.3);
        background: linear-gradient(105deg, rgba(2, 10, 25, 0.93), rgba(4, 27, 56, 0.89));
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38), 0 0 26px rgba(24, 119, 255, 0.08);
        backdrop-filter: blur(18px) saturate(125%);
        -webkit-backdrop-filter: blur(18px) saturate(125%);
    }

    .mk-site-navigation.is-sticky .mk-site-contactbar-inner {
        min-height: 64px;
    }

    .mk-site-navigation.is-sticky .mk-site-logo img {
        max-height: 42px;
    }

    .mk-site-mobile-call {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: 8px;
        border: 1px solid rgba(72, 158, 255, 0.56);
        border-radius: 9px;
        color: #70b7ff;
        background: rgba(8, 31, 66, 0.86);
        box-shadow: inset 0 0 14px rgba(35, 126, 255, 0.1), 0 0 14px rgba(35, 126, 255, 0.16);
        text-decoration: none;
        transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }


    .mk-site-mobile-call:hover,
    .mk-site-mobile-call:focus-visible {
        color: #ffffff;
        border-color: #4da4ff;
        background: #0b5ec0;
        box-shadow: 0 0 10px rgba(75, 164, 255, 0.78), 0 0 26px rgba(35, 126, 255, 0.48);
        transform: translateY(-1px);
        outline: none;
    }

    .mk-site-mobile-drawer {
        display: flex;
        flex-direction: column;
        max-height: calc(100dvh - 64px);
    }

    .mk-site-mobile-menu { order: 1; }
    .mk-site-mobile-ctas { order: 2; }
    .mk-site-mobile-social { order: 3; }

    .mk-site-mobile-menu > li > a,
    .mk-site-mobile-menu > li > .mk-site-mobile-subtoggle,
    .mk-site-mobile-submenu a {
        border-radius: 7px;
        transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, text-shadow 0.2s ease, padding 0.2s ease;
    }

    .mk-site-mobile-menu > li > a,
    .mk-site-mobile-menu > li > .mk-site-mobile-subtoggle {
        padding-right: 12px;
        padding-left: 12px;
    }

    .mk-site-mobile-submenu a { padding: 9px 12px; }

    .mk-site-mobile-menu a:hover,
    .mk-site-mobile-menu a:focus-visible,
    .mk-site-mobile-subtoggle:hover,
    .mk-site-mobile-subtoggle:focus-visible,
    .mk-site-mobile-menu li.is-current > a,
    .mk-site-mobile-menu li.is-current > .mk-site-mobile-subtoggle {
        color: #75baff;
        background: linear-gradient(90deg, rgba(25, 119, 255, 0.16), rgba(25, 119, 255, 0.025));
        box-shadow: inset 2px 0 0 #2a8dff, 0 0 18px rgba(31, 127, 255, 0.1);
        text-shadow: 0 0 10px rgba(75, 164, 255, 0.58);
        outline: none;
    }

    .mk-site-mobile-ctas .mk-site-action-btn--merch {
        color: #071a38;
        border-color: #ffffff;
        background: #ffffff;
    }

    .mk-site-mobile-ctas .mk-site-action-btn--merch:hover,
    .mk-site-mobile-ctas .mk-site-action-btn--merch:focus-visible {
        color: #ffffff;
        border-color: #4da4ff;
        background: #0b5ec0;
        box-shadow: 0 0 18px rgba(39, 132, 255, 0.4);
    }

    .mk-site-mobile-social {
        gap: 12px;
        margin-top: 20px;
    }

    .mk-site-mobile-social a {
        color: #72b8ff;
        border: 1px solid rgba(72, 158, 255, 0.48);
        background: rgba(9, 39, 82, 0.88);
        box-shadow: inset 0 0 12px rgba(38, 133, 255, 0.12), 0 0 12px rgba(38, 133, 255, 0.2);
        text-shadow: 0 0 10px rgba(78, 169, 255, 0.7);
    }

    .mk-site-mobile-social a:hover,
    .mk-site-mobile-social a:focus-visible {
        color: #ffffff;
        border-color: #64afff;
        background: #0b5ec0;
        box-shadow: 0 0 10px rgba(75, 164, 255, 0.82), 0 0 24px rgba(35, 126, 255, 0.5);
        outline: none;
    }
}
/* Shared mobile compact controls and racing hover flash. */
@media (max-width: 991px) {
    .mk-header-search-toggle--mobile {
        width: 38px;
        height: 38px;
        margin-left: auto;
        border-color: rgba(94, 170, 255, 0.22) !important;
        color: #78baff !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .mk-site-mobile-call {
        width: 38px;
        height: 38px;
        margin-left: 6px;
        border-color: rgba(72, 158, 255, 0.24);
        color: #78baff;
        background: transparent;
        box-shadow: none;
    }
    .mk-site-mobile-toggle {
        margin-left: 6px;
        border-color: rgba(96, 178, 255, 0.62);
        color: #fff;
        background: linear-gradient(145deg, #1681ec, #0a5dbb);
        box-shadow: 0 0 16px rgba(35, 133, 240, 0.2);
    }
    .mk-site-mobile-menu > li > a,
    .mk-site-mobile-menu > li > .mk-site-mobile-subtoggle,
    .mk-site-mobile-submenu a {
        position: relative;
        overflow: hidden;
    }
    .mk-site-mobile-menu a:hover,
    .mk-site-mobile-menu a:focus-visible,
    .mk-site-mobile-subtoggle:hover,
    .mk-site-mobile-subtoggle:focus-visible,
    .mk-site-mobile-menu li.is-current > a,
    .mk-site-mobile-menu li.is-current > .mk-site-mobile-subtoggle {
        box-shadow: 0 0 18px rgba(31, 127, 255, 0.1);
    }
    .mk-site-mobile-menu > li > a::after,
    .mk-site-mobile-menu > li > .mk-site-mobile-subtoggle::after,
    .mk-site-mobile-submenu a::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -48%;
        width: 34%;
        opacity: 0;
        background: linear-gradient(100deg, transparent, rgba(99, 185, 255, 0.3), transparent);
        transform: skewX(-18deg);
        pointer-events: none;
    }
    .mk-site-mobile-menu a:hover::after,
    .mk-site-mobile-menu a:focus-visible::after,
    .mk-site-mobile-subtoggle:hover::after,
    .mk-site-mobile-subtoggle:focus-visible::after {
        animation: mk-mobile-menu-racing-flash 0.72s ease-out;
    }
}
@keyframes mk-mobile-menu-racing-flash {
    0% { left: -48%; opacity: 0; }
    18% { opacity: 1; }
    100% { left: 116%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .mk-site-mobile-menu a::after,
    .mk-site-mobile-subtoggle::after { animation: none !important; }
}
/* Mobile header grouping, single-column home link, and social spacing. */
@media (max-width: 991px) {
    .mk-site-contactbar-inner { gap: 6px; }
    .mk-site-mobile-call,
    .mk-site-mobile-toggle { margin-left: 0; }
    .mk-site-mobile-menu > li:first-child > a { justify-content: flex-start; gap: 10px; }
    .mk-site-mobile-social { margin-top: 10px; padding: 16px 4px 12px; }
}
/* Definitive mobile Home alignment and social control sizing. */
@media (max-width: 991px) {
    .mk-site-mobile-menu > li > a[href="index.html"] {
        justify-content: flex-start !important;
        gap: 10px !important;
        text-align: left !important;
    }
    .mk-site-mobile-menu > li > a[href="index.html"] > i {
        flex: 0 0 18px;
        width: 18px;
        margin: 0 !important;
        text-align: center;
    }
    .mk-site-mobile-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
    }
}