:root {
    --ox-bg: #121212;
    --ox-bg-2: #161616;
    --ox-panel: #1b1b1b;
    --ox-panel-2: #202020;
    --ox-card: #1e1e1e;
    --ox-card-in: #262626;
    --ox-line: #333333;
    --ox-line-soft: #2a2a2a;
    --ox-line-strong: #444444;
    --ox-tx: #f0f0f0;
    --ox-tx-2: #b4b4b4;
    --ox-tx-3: #909090;
    --ox-red: #e51d2b;
    --ox-red-hi: #ff4552;
    --ox-red-dim: rgba(229, 29, 43, .14);
    --ox-red-line: rgba(229, 29, 43, .30);
    --ox-on-red: #ffffff;
    --ox-gold: #e6b23e;
    --ox-gold-fill: #e6b23e;
    --ox-gold-dim: rgba(230, 178, 62, .14);
    --ox-green: #37c96d;
    --ox-green-dim: rgba(55, 201, 109, .14);
    --ox-blue: #79a6f2;
    --ox-blue-dim: rgba(75, 134, 230, .16);
    --ox-purple: #b59bf0;
    --ox-purple-dim: rgba(154, 123, 234, .16);
    --ox-brown: #d09a6a;
    --ox-brown-dim: rgba(192, 138, 88, .15);
    --ox-orange: #ed9a5c;
    --ox-orange-dim: rgba(232, 136, 60, .15);
    --ox-teal: #5fcdc7;
    --ox-teal-dim: rgba(63, 182, 176, .15);
    --ox-glow: rgba(229, 29, 43, .06);
    --ox-shadow: 0 10px 28px rgba(0, 0, 0, .35);
    --ox-shadow-lg: 0 14px 34px rgba(0, 0, 0, .45);
    --ox-scroll: #3a3a3a;

    --ox-nav-bg: #0c0c0c;
    --ox-nav-line: #1f1f1f;
    --ox-nav-tx: #dadada;
    --ox-nav-tx-2: #a8a8a8;
    --ox-nav-hover: #1d1d1d;
    --ox-nav-panel: #151515;
    --ox-nav-panel-line: #2a2a2a;

    --ox-vatsim: #29B473;
    --ox-ivao: #8ea5f8;
    --ox-pilotedge: #f68f1e;
    --ox-poscon: #9787e7;
    --ox-siai: #e1b84f;
    --ox-patreon: #ff424d;

    --ox-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --ox-radius: 14px;
    --ox-radius-sm: 9px;
    --ox-wrap: 1360px;
    --ox-nav-h: 60px;
    color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--ox-nav-h) + 12px); }

body.onyx {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: var(--ox-bg);
    background-image: radial-gradient(1200px 500px at 80% -100px, var(--ox-glow), transparent 70%);
    background-repeat: no-repeat;
    color: var(--ox-tx);
    font-family: var(--ox-ui);
    font-size: 14px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:where(.onyx) :where(h1, h2, h3, h4, h5, h6) { margin: 0; font-weight: 800; letter-spacing: -.3px; line-height: 1.15; color: var(--ox-tx); }
:where(.onyx) :where(p) { margin: 0; }
:where(.onyx) :where(a) { color: var(--ox-red); text-decoration: none; }
:where(.onyx) :where(a:hover) { color: var(--ox-red-hi); }
:where(.onyx) :where(img) { max-width: 100%; }
:where(.onyx) :where(button, input, select, textarea) { font-family: inherit; font-size: inherit; color: inherit; }
:where(.onyx) :where(button) { cursor: pointer; }
.onyx :focus-visible { outline: 2px solid var(--ox-red); outline-offset: 2px; }
.onyx ::-webkit-scrollbar { width: 10px; height: 10px; }
.onyx ::-webkit-scrollbar-thumb { background: var(--ox-scroll); border-radius: 6px; }
.onyx ::-webkit-scrollbar-track { background: transparent; }

.ox-main { flex: 1 0 auto; width: 100%; }
.ox-wrap { max-width: var(--ox-wrap); margin: 0 auto; padding: 0 20px; }
.ox-num { font-variant-numeric: tabular-nums; }
.ox-muted { color: var(--ox-tx-3); }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

.ox-nav { position: sticky; top: 0; z-index: 1030; background: var(--ox-nav-bg); border-bottom: 1px solid var(--ox-nav-line); color: var(--ox-nav-tx); }
.ox-nav-in { height: var(--ox-nav-h); max-width: 1600px; margin: 0 auto; display: flex; align-items: center; gap: 12px; padding: 0 16px; }
.ox-brand { display: flex; align-items: center; flex: none; }
.ox-brand img { display: block; height: 22px; width: auto; }
.ox-brand .ox-brand-mark { display: none; height: 30px; }
.ox-menu { display: flex; align-items: center; gap: 2px; margin-left: 10px; min-width: 0; }
.ox-nav-right { margin-left: auto; display: flex; align-items: center; gap: 4px; flex: none; }
.ox-nav a, .ox-nav a:hover { color: inherit; }
.ox-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    height: 38px;
    padding: 0 10px;
    border: 0;
    border-radius: 9px;
    background: none;
    color: var(--ox-nav-tx);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .14s, color .14s;
}
.ox-link i { font-size: 15px; color: var(--ox-nav-tx-2); }
.ox-link:hover { background: var(--ox-nav-hover); color: #ffffff; }
.ox-link:hover i { color: #ffffff; }
.ox-link.on { color: #ffffff; }
.ox-link.on i { color: var(--ox-red-hi); }
.ox-link.on::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: -11px; height: 2px; border-radius: 2px; background: var(--ox-red-hi); }
.ox-link .ox-ext { font-size: 9px; }
.ox-menu-cta { display: none; }

.ox-dd { position: relative; }
.ox-dd-panel { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); display: none; z-index: 1040; background: var(--ox-nav-panel); border: 1px solid var(--ox-nav-panel-line); border-radius: 8px; box-shadow: 0 8px 20px rgba(0, 0, 0, .4); }
.ox-dd-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.ox-dd.open > .ox-dd-panel { display: block; }

.ox-clock { display: flex; align-items: center; gap: 7px; height: 38px; padding: 0 10px; border: 0; border-radius: 9px; background: none; color: var(--ox-nav-tx); font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ox-clock i { color: var(--ox-nav-tx-2); font-size: 14px; }
.ox-clock:hover, .ox-dd.open > .ox-clock { background: var(--ox-nav-hover); color: #ffffff; }
.ox-clock-local { padding: 6px 10px; font-size: 12px; color: var(--ox-nav-tx); white-space: nowrap; }
.ox-clock-local strong { color: #ffffff; font-variant-numeric: tabular-nums; }


.ox-login { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px; border: 1px solid var(--ox-nav-panel-line); border-radius: 9px; background: #151515; color: var(--ox-nav-tx); font-size: 12.5px; font-weight: 700; letter-spacing: .3px; white-space: nowrap; transition: border-color .14s, color .14s; }
.ox-login i { color: var(--ox-red-hi); font-size: 13px; }
.ox-nav a.ox-login:hover { border-color: #444444; color: #ffffff; }
.ox-join { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px; border-radius: 9px; background: #e51d2b; color: #ffffff; font-size: 12.5px; font-weight: 700; letter-spacing: .3px; white-space: nowrap; transition: background .14s; }
.ox-nav a.ox-join, .ox-nav a.ox-join:hover { color: #ffffff; }
.ox-nav a.ox-join:hover { background: #ff4552; }
.ox-hazard { display: flex; gap: 2px; }
.ox-hazard i { width: 3px; height: 15px; background: var(--ox-red); display: block; transform: skewX(-18deg); }

.ox-burger { display: none; width: 40px; height: 40px; border: 0; border-radius: 9px; background: none; color: var(--ox-nav-tx); font-size: 18px; }
.ox-burger:hover { background: var(--ox-nav-hover); }

@media (max-width: 1440px) {
    .ox-clock .ox-clock-utc { display: none; }
    .ox-menu .ox-link > i { display: none; }
}
@media (max-width: 1240px) {
    .ox-link { padding: 0 8px; }
    .ox-link.on::after { left: 8px; right: 8px; }
    .ox-nav-right > .ox-dd, .ox-nav-right > .ox-login { display: none; }
}
@media (max-width: 1100px) {
    .ox-burger { display: grid; place-items: center; }
    .ox-nav-right > .ox-dd { display: block; }
    .ox-nav-right > .ox-login { display: flex; }
    .ox-menu {
        position: fixed;
        top: var(--ox-nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        padding: 12px 16px 40px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--ox-nav-bg);
        border-top: 1px solid var(--ox-nav-line);
        overflow-y: auto;
        display: none;
    }
    .ox-nav.menu-open .ox-menu { display: flex; }
    .ox-menu > * { flex: none; }
    .ox-menu .ox-link { width: 100%; height: 48px; padding: 0 12px; font-size: 14px; }
    .ox-menu .ox-link > i { display: inline-block; width: 20px; text-align: center; }
    .ox-menu .ox-link.on { background: var(--ox-nav-hover); }
    .ox-menu .ox-link.on::after { left: 0; right: auto; top: 12px; bottom: 12px; width: 3px; height: auto; }
    .ox-menu-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--ox-nav-line); }
    .ox-menu-cta a { justify-content: center; height: 44px; }
}
@media (max-width: 767px) {
    .ox-nav-right .ox-login, .ox-nav-right .ox-join { display: none; }
}
@media (max-width: 560px) {
    .ox-nav-in { gap: 6px; padding: 0 10px; }
    .ox-brand .ox-brand-full { display: none; }
    .ox-brand .ox-brand-mark { display: block; }
}

.ox-panel { background: var(--ox-panel); border: 1px solid var(--ox-line-soft); border-radius: var(--ox-radius); }

.ox-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid var(--ox-line);
    border-radius: var(--ox-radius-sm);
    background: var(--ox-card-in);
    color: var(--ox-tx);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    transition: background .14s, border-color .14s, color .14s;
}
.onyx a.ox-btn { color: var(--ox-tx); }
.ox-btn:hover, .onyx a.ox-btn:hover { border-color: var(--ox-line-strong); color: var(--ox-tx); }
.ox-btn i { font-size: 14px; }
.ox-btn-red, .onyx a.ox-btn-red { background: var(--ox-red); border-color: var(--ox-red); color: var(--ox-on-red); }
.ox-btn-red:hover, .onyx a.ox-btn-red:hover { background: var(--ox-red-hi); border-color: var(--ox-red-hi); color: var(--ox-on-red); }
.ox-btn-icon i { color: var(--ox-red); transition: color .14s; }
.ox-btn-icon:hover, .onyx a.ox-btn-icon:hover { background: var(--ox-red); border-color: var(--ox-red); color: var(--ox-on-red); }
.ox-btn-icon:hover i { color: var(--ox-on-red); }
.ox-btn-glass, .onyx a.ox-btn-glass { background: rgba(20, 20, 20, .72); border-color: rgba(255, 255, 255, .2); color: #ffffff; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.ox-btn-glass:hover, .onyx a.ox-btn-glass:hover { border-color: #e51d2b; color: #ffffff; }
.ox-btn-lg { height: 42px; padding: 0 18px; font-size: 13px; }
.ox-btn:disabled, .ox-btn.disabled { cursor: not-allowed; background: var(--ox-card-in); border-color: var(--ox-line); color: var(--ox-tx-3); }

.ox-bdg { display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; border-radius: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; background: var(--ox-card-in); color: var(--ox-tx-2); white-space: nowrap; }
.ox-bdg i { font-size: 10px; }
.ox-bdg-red { background: var(--ox-red-dim); color: var(--ox-red); }
.ox-bdg-gold { background: var(--ox-gold-dim); color: var(--ox-gold); }
.ox-bdg-green { background: var(--ox-green-dim); color: var(--ox-green); }
.ox-bdg-blue { background: var(--ox-blue-dim); color: var(--ox-blue); }
.ox-bdg-teal { background: var(--ox-teal-dim); color: var(--ox-teal); }
.ox-op-cargo { background: var(--ox-teal-dim); color: var(--ox-teal); }
.ox-op-charter { background: var(--ox-gold-dim); color: var(--ox-gold); }
.ox-op-scheduled { background: var(--ox-red-dim); color: var(--ox-red); }

.ox-net { display: inline-flex; align-items: center; gap: 5px; height: 22px; padding: 0 8px; border-radius: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; background: var(--ox-card-in); color: var(--ox-tx-2); border: 1px solid var(--ox-line-soft); white-space: nowrap; transition: border-color .14s; }
.ox-net::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ox-tx-3); }
.onyx a.ox-net { color: var(--ox-tx-2); }
.onyx a.ox-net:hover { color: var(--ox-tx); border-color: var(--ox-line-strong); }
.ox-net-vatsim::before { background: var(--ox-vatsim); }
.ox-net-ivao::before { background: var(--ox-ivao); }
.ox-net-pilotedge::before { background: var(--ox-pilotedge); }
.ox-net-poscon::before { background: var(--ox-poscon); }
.ox-net-siai::before { background: var(--ox-siai); }

.ox-search { position: relative; display: block; margin: 0; }
.ox-search > i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 12px; color: var(--ox-tx-3); pointer-events: none; }
.ox-search input { width: 100%; height: 38px; padding: 0 12px 0 34px; background: var(--ox-card-in); border: 1px solid var(--ox-line); border-radius: var(--ox-radius-sm); color: var(--ox-tx); font-size: 13px; outline: none; transition: border-color .14s; }
.ox-search input:focus { border-color: var(--ox-red); }
.ox-search input::placeholder { color: var(--ox-tx-3); }
.ox-search input::-webkit-search-cancel-button { display: none; }

.ox-sort { position: relative; margin: 0; }
.ox-sort::after { content: "\f078"; font-family: 'Font Awesome 6 Pro'; font-weight: 900; position: absolute; right: 11px; top: 50%; transform: translateY(-50%); font-size: 10px; color: var(--ox-tx-3); pointer-events: none; }
.ox-sort select { appearance: none; -webkit-appearance: none; height: 38px; padding: 0 30px 0 12px; background: var(--ox-card-in); border: 1px solid var(--ox-line); border-radius: var(--ox-radius-sm); color: var(--ox-tx); font-size: 13px; font-weight: 600; cursor: pointer; outline: none; }
.ox-sort select:focus, .onyx select.ox-sel-open { border-color: var(--ox-red); }

.ox-sel-menu { position: fixed; z-index: 1100; max-width: min(420px, calc(100vw - 16px)); padding: 5px; overflow-y: auto; background: var(--ox-panel); border: 1px solid var(--ox-line); border-radius: 10px; box-shadow: var(--ox-shadow-lg); font-family: var(--ox-ui); animation: ox-sel-in .12s ease-out; scrollbar-width: thin; }
.ox-sel-menu.up { animation-name: ox-sel-in-up; }
@keyframes ox-sel-in { from { transform: translateY(-4px); } to { transform: none; } }
@keyframes ox-sel-in-up { from { transform: translateY(4px); } to { transform: none; } }
.ox-sel-opt { position: relative; padding: 8px 32px 8px 11px; border-radius: 7px; font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--ox-tx-2); cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; user-select: none; }
.ox-sel-opt.active { background: var(--ox-card-in); color: var(--ox-tx); }
.ox-sel-opt.selected { color: var(--ox-tx); font-weight: 800; }
.ox-sel-opt.selected::after { content: "\f00c"; font-family: 'Font Awesome 6 Pro'; font-weight: 900; position: absolute; right: 11px; top: 50%; transform: translateY(-50%); font-size: 11px; color: var(--ox-red); }

.ox-seg { display: inline-flex; flex-wrap: wrap; gap: 3px; padding: 3px; background: var(--ox-card-in); border: 1px solid var(--ox-line); border-radius: var(--ox-radius-sm); }
.ox-seg button { display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 11px; border: 0; border-radius: 6px; background: none; color: var(--ox-tx-2); font-size: 12.5px; font-weight: 700; white-space: nowrap; transition: background .14s, color .14s; }
.ox-seg button i { font-size: 12px; }
.ox-seg button:hover { color: var(--ox-tx); }
.ox-seg button.on { background: var(--ox-red); color: var(--ox-on-red); }
.ox-seg .ox-seg-n { padding: 0 6px; border-radius: 8px; background: var(--ox-panel); font-size: 10.5px; color: var(--ox-tx-2); font-variant-numeric: tabular-nums; }
.ox-seg button.on .ox-seg-n { background: rgba(255, 255, 255, .22); color: var(--ox-on-red); }

.ox-chip { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 12px; border: 1px solid var(--ox-line); border-radius: var(--ox-radius-sm); background: var(--ox-card-in); color: var(--ox-tx-2); font-size: 12.5px; font-weight: 700; white-space: nowrap; transition: background .14s, border-color .14s, color .14s; }
.ox-chip:hover { color: var(--ox-tx); border-color: var(--ox-line-strong); }
.ox-chip.on { background: var(--ox-red); border-color: var(--ox-red); color: var(--ox-on-red); }
.ox-chip .ox-dotc { width: 8px; height: 8px; border-radius: 50%; }
.ox-chip.on .ox-dotc { box-shadow: 0 0 0 2px rgba(255, 255, 255, .6); }

.ox-hero { position: relative; overflow: hidden; min-height: 440px; display: flex; align-items: flex-end; background: #0c0c0c; color: #f2f2f2; }
.ox-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; transform: scale(1.02); }
.ox-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 10, 10, .94) 0%, rgba(10, 10, 10, .7) 42%, rgba(10, 10, 10, .2) 80%), linear-gradient(0deg, rgba(10, 10, 10, .9) 0%, rgba(10, 10, 10, 0) 50%); }
.ox-hero-in { position: relative; z-index: 2; width: 100%; max-width: var(--ox-wrap); margin: 0 auto; padding: 48px 20px 32px; display: flex; align-items: flex-end; gap: 30px; }
.ox-hero-main { flex: 1; min-width: 0; }
.ox-kicker { font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--ox-red); }
.ox-hero .ox-kicker { color: #d9d9d9; }
.ox-hero .ox-kicker-red { color: #e51d2b; }
.onyx .ox-hero-title { margin-top: 8px; font-size: 56px; font-weight: 900; letter-spacing: -1.5px; line-height: .95; color: #ffffff; }
.ox-hero-blurb { margin-top: 14px; max-width: 520px; font-size: 15px; line-height: 1.55; color: #d0d0d0; }
.ox-hero-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.ox-hero-stats { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.ox-hs { display: flex; flex-direction: column; gap: 4px; min-width: 110px; padding: 11px 15px; border-radius: 12px; background: rgba(20, 20, 20, .7); border: 1px solid rgba(255, 255, 255, .12); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.ox-hs strong { font-size: 24px; font-weight: 900; line-height: 1; color: #ffffff; font-variant-numeric: tabular-nums; }
.ox-hs span { font-size: 10.5px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; color: #bdbdbd; }
.ox-hs .ox-live { display: inline-flex; align-items: center; gap: 6px; }
.ox-hs .ox-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #37c96d; box-shadow: 0 0 0 3px rgba(55, 201, 109, .25); }
.ox-hero-side { flex: none; width: 300px; display: flex; flex-direction: column; gap: 10px; }
.ox-glass { display: flex; flex-direction: column; gap: 4px; padding: 13px 15px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .14); background: rgba(20, 20, 20, .72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #ffffff; transition: border-color .14s; }
.onyx a.ox-glass { color: #ffffff; }
.onyx a.ox-glass:hover { border-color: #e51d2b; color: #ffffff; }
.ox-glass-k { font-size: 10.5px; font-weight: 800; letter-spacing: .9px; text-transform: uppercase; color: #e6b23e; }
.ox-glass-name { font-size: 17px; font-weight: 800; }
.ox-glass-sub { font-size: 12.5px; font-weight: 600; color: #cfcfcf; }
.ox-hero-home { min-height: calc(100vh - var(--ox-nav-h)); max-height: 860px; }
.ox-hero-home .ox-hero-in { padding-bottom: 44px; }
.onyx .ox-hero-home .ox-hero-title { font-size: 60px; letter-spacing: -1.8px; white-space: nowrap; }
.ox-hero-short { min-height: 360px; }

.ox-page-head { background: linear-gradient(180deg, var(--ox-bg-2), var(--ox-bg)); border-bottom: 1px solid var(--ox-line-soft); }
.ox-page-head-in { max-width: var(--ox-wrap); margin: 0 auto; padding: 22px 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ox-page-head-tx { min-width: 0; }
.ox-head-badge { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 11px; background: var(--ox-red-dim); border: 1px solid var(--ox-red-line); color: var(--ox-red); font-size: 21px; }
:where(.onyx) .ox-page-head h1 { font-size: 30px; font-weight: 900; letter-spacing: -.6px; line-height: 1; }
.ox-page-head-sub { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--ox-tx-3); }
.ox-page-head-r { margin-left: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ox-stat-pill { padding: 7px 12px; border-radius: 10px; background: var(--ox-panel); border: 1px solid var(--ox-line-soft); font-size: 12.5px; font-weight: 600; color: var(--ox-tx-2); white-space: nowrap; }
.ox-stat-pill strong { font-size: 15px; font-weight: 800; color: var(--ox-tx); margin-right: 2px; font-variant-numeric: tabular-nums; }

.ox-bar { position: sticky; top: var(--ox-nav-h); z-index: 20; background: var(--ox-panel); border-bottom: 1px solid var(--ox-line-soft); }
.ox-bar-in { max-width: var(--ox-wrap); margin: 0 auto; padding: 10px 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ox-bar-search { flex: 1 1 220px; min-width: 180px; }
.ox-bar-group { display: flex; flex-wrap: wrap; gap: 6px; }
.ox-result { margin-bottom: 12px; font-size: 12.5px; font-weight: 700; color: var(--ox-tx-3); }
.ox-result-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ox-result-row .ox-result { margin: 0; }
.ox-step-nav { margin-left: auto; display: flex; gap: 6px; }
.ox-step-nav .ox-btn { width: 36px; height: 36px; padding: 0; }
.ox-step-nav .ox-btn:not(:disabled) i { color: var(--ox-red); }

.ox-sec { padding: 56px 0; }
.ox-sec-tight { padding: 28px 0 56px; }
.ox-sec-flush { padding-top: 0; }
.ox-sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px 20px; margin-bottom: 22px; }
.ox-sec-head-tx { min-width: 0; }
.onyx .ox-sec-title { margin-top: 6px; font-size: 32px; font-weight: 900; letter-spacing: -.8px; line-height: 1.05; }
.ox-sec-sub { margin-top: 8px; max-width: 620px; font-size: 14.5px; line-height: 1.6; color: var(--ox-tx-2); }
.ox-sec-head-r { margin-left: auto; display: flex; flex-wrap: wrap; gap: 8px; }

.ox-ops { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ox-op { display: flex; flex-direction: column; min-width: 0; overflow: hidden; background: var(--ox-card); border: 1px solid var(--ox-line-soft); border-radius: 16px; transition: border-color .16s, transform .16s, box-shadow .16s; }
.onyx a.ox-op { color: var(--ox-tx); }
.ox-op.ox-lift:hover { border-color: var(--ox-line-strong); transform: translateY(-3px); box-shadow: var(--ox-shadow-lg); }
.ox-op-photo { position: relative; height: 220px; overflow: hidden; background: #111111; }
.ox-op-photo img { width: 100%; height: 100%; object-fit: cover; max-width: none; display: block; transition: transform .4s; }
.ox-op:hover .ox-op-photo img { transform: scale(1.05); }
.ox-op-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 8, 8, .1) 0%, rgba(8, 8, 8, .25) 40%, rgba(8, 8, 8, .88) 100%); }
.ox-op-photo-in { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 14px; display: flex; align-items: center; gap: 12px; color: #ffffff; }
.ox-op-icon { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 11px; background: #e51d2b; color: #ffffff; font-size: 19px; }
.onyx .ox-op-photo h3 { font-size: 24px; font-weight: 900; letter-spacing: -.5px; color: #ffffff; }
.ox-op-tag { margin-top: 2px; font-size: 12.5px; font-weight: 600; color: #d9d9d9; }
.ox-op-count { margin-left: auto; display: flex; flex-direction: column; align-items: center; padding: 6px 12px; border-radius: 10px; background: rgba(12, 12, 12, .7); border: 1px solid rgba(255, 255, 255, .15); line-height: 1; }
.ox-op-count strong { font-size: 22px; font-weight: 900; color: #ffffff; font-variant-numeric: tabular-nums; }
.ox-op-count span { margin-top: 4px; font-size: 9.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #d9d9d9; }
.ox-op-body { display: flex; flex-direction: column; flex: 1; padding: 18px; }
.ox-op-body > p { margin: 0 0 12px; font-size: 14px; line-height: 1.6; color: var(--ox-tx-2); }
.ox-op-foot { margin-top: auto; display: flex; align-items: center; gap: 8px; }
.ox-op-more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; color: var(--ox-tx); }
.ox-op-more i { color: var(--ox-red); font-size: 11px; transition: transform .16s; }
.ox-op:hover .ox-op-more i { transform: translateX(3px); }

.ox-story { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); overflow: hidden; }
.ox-story-photo { position: relative; min-height: 460px; background: #111111; }
.ox-story-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; }
.ox-story-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10, 10, 10, .85) 0%, rgba(10, 10, 10, 0) 45%); }
.ox-story-badge { position: absolute; z-index: 2; left: 20px; bottom: 20px; right: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.ox-story-body { padding: 34px 34px 32px; display: flex; flex-direction: column; }
.ox-story-body p { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: var(--ox-tx-2); }
.ox-story-body p:first-of-type { margin-top: 16px; }
.ox-story-body em { font-style: normal; font-weight: 700; color: var(--ox-tx); }
.ox-steps { margin: 22px 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.ox-step { padding: 10px 12px; border-radius: 11px; background: var(--ox-card-in); }
.ox-step strong { display: block; font-size: 15px; font-weight: 900; color: var(--ox-red); font-variant-numeric: tabular-nums; }
.ox-step span { display: block; margin-top: 3px; font-size: 11.5px; font-weight: 600; line-height: 1.35; color: var(--ox-tx-2); }
.ox-story-body .ox-btn { align-self: flex-start; margin-top: auto; }

.ox-feats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ox-feat { padding: 22px; }
.ox-feat-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 11px; background: var(--ox-red-dim); border: 1px solid var(--ox-red-line); color: var(--ox-red); font-size: 19px; }
.onyx .ox-feat h3 { margin-top: 16px; font-size: 17px; font-weight: 800; }
.ox-feat p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--ox-tx-2); }

.ox-dark-band { background: #0c0c0c; border-top: 1px solid #1f1f1f; border-bottom: 1px solid #1f1f1f; color: #d9d9d9; }
.ox-dark-band-in { max-width: var(--ox-wrap); margin: 0 auto; padding: 26px 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.ox-dark-band .ox-kicker { color: #a8a8a8; flex-basis: 100%; text-align: center; }
.ox-sims img { display: block; height: 38px; width: auto; max-width: 180px; object-fit: contain; }
.ox-sims img.ox-sim-p3d { height: 22px; }
.ox-partners img { display: block; height: 34px; width: auto; max-width: 150px; object-fit: contain; transition: transform .16s; }
.ox-partners a:hover img { transform: translateY(-2px); }
.ox-partners .ox-kicker { font-size: 11px; }

.ox-land-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }
.ox-panel-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; padding: 14px 16px 12px; border-bottom: 1px solid var(--ox-line-soft); }
.ox-panel-title { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 800; color: var(--ox-tx); }
.ox-panel-title i { color: var(--ox-red); }
.ox-panel-sub { margin-left: auto; padding: 2px 9px; border-radius: 20px; background: var(--ox-card-in); font-size: 11.5px; font-weight: 700; color: var(--ox-tx-3); white-space: nowrap; }
.ox-rows { display: flex; flex-direction: column; gap: 6px; padding: 12px; }
.ox-row { position: relative; display: flex; align-items: center; gap: 12px; min-width: 0; padding: 8px 12px 8px 8px; border: 1px solid var(--ox-line-soft); border-radius: 12px; background: var(--ox-card); transition: border-color .14s, background .14s; }
.ox-row:hover { border-color: var(--ox-line-strong); }
.ox-row-icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--ox-red-dim); color: var(--ox-red); font-size: 16px; }
.ox-row-main { flex: 1; min-width: 0; }
.ox-row-t { display: flex; align-items: center; gap: 8px; min-width: 0; font-size: 14px; font-weight: 800; color: var(--ox-tx); white-space: nowrap; }
.ox-row-t .ox-route { display: inline-flex; align-items: center; gap: 6px; font-variant-numeric: tabular-nums; }
.ox-row-t .ox-route i { font-size: 10px; color: var(--ox-tx-3); }
.ox-row-s { margin-top: 3px; font-size: 12px; font-weight: 600; color: var(--ox-tx-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ox-row-n { flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.ox-row-n strong { font-size: 14px; font-weight: 800; color: var(--ox-tx); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ox-row-n span { font-size: 9.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--ox-tx-3); white-space: nowrap; }
.ox-now { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.ox-now-n { display: flex; align-items: baseline; gap: 10px; }
.ox-now-n strong { font-size: 54px; font-weight: 900; letter-spacing: -1.5px; line-height: 1; color: var(--ox-tx); font-variant-numeric: tabular-nums; }
.ox-now-n span { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--ox-tx-3); }
.ox-now p { font-size: 14px; line-height: 1.6; color: var(--ox-tx-2); }
.ox-now .ox-btn { align-self: flex-start; }
.ox-pulse { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--ox-green); }
.ox-pulse::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ox-green); animation: ox-pulse 1.8s ease-out infinite; }
@keyframes ox-pulse { 0% { box-shadow: 0 0 0 0 rgba(55, 201, 109, .45); } 100% { box-shadow: 0 0 0 9px rgba(55, 201, 109, 0); } }

.ox-voices { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; align-items: stretch; }
.ox-quote { position: relative; padding: 28px 28px 22px; display: flex; flex-direction: column; min-height: 340px; }
.ox-quote-mark { font-size: 28px; color: var(--ox-red); }
.ox-quote-tx { margin-top: 14px; flex: 1; font-size: 17px; font-weight: 500; line-height: 1.6; color: var(--ox-tx); }
.ox-quote-by { margin-top: 18px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ox-quote-by strong { font-size: 14px; font-weight: 800; color: var(--ox-tx); }
.ox-quote-nav { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--ox-line-soft); display: flex; align-items: center; gap: 8px; }
.ox-quote-nav .ox-btn { width: 38px; height: 38px; padding: 0; }
.ox-quote-count { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--ox-tx-3); font-variant-numeric: tabular-nums; }
.ox-video { position: relative; overflow: hidden; border-radius: 16px; background: #000000; border: 1px solid var(--ox-line-soft); display: flex; align-items: center; }
.ox-video video { display: block; width: 100%; height: 100%; object-fit: cover; }
.ox-insta { padding: 0; overflow: hidden; background: #000000; }
.ox-insta iframe { display: block; width: 100%; border: 0; overflow: hidden; }

.ox-cta { position: relative; overflow: hidden; background: #0c0c0c; color: #f2f2f2; }
.ox-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; }
.ox-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .78) 50%, rgba(10, 10, 10, .45) 100%); }
.ox-cta-in { position: relative; z-index: 2; max-width: var(--ox-wrap); margin: 0 auto; padding: 56px 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px; }
.ox-cta-tx { flex: 1 1 420px; min-width: 0; }
.ox-cta .ox-kicker { color: #e51d2b; }
.onyx .ox-cta h2 { margin-top: 8px; font-size: 40px; font-weight: 900; letter-spacing: -1px; line-height: 1; color: #ffffff; }
.ox-cta p { margin-top: 12px; max-width: 520px; font-size: 15px; line-height: 1.55; color: #d0d0d0; }
.ox-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.ox-footer { flex: none; border-top: 1px solid var(--ox-line-soft); background: var(--ox-panel); }
.ox-footer-in { max-width: var(--ox-wrap); margin: 0 auto; padding: 22px 20px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px 24px; }
.ox-footer-brand { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; color: var(--ox-tx-2); font-size: 13px; font-weight: 600; }
.ox-footer-brand .ox-hazard i { height: 13px; }
.onyx .ox-footer-brand a { color: var(--ox-tx-2); }
.onyx .ox-footer-brand a:hover { color: var(--ox-red); }
.ox-footer-sep { width: 1px; height: 14px; background: var(--ox-line); }
.ox-footer-social { margin-left: auto; display: flex; gap: 6px; }
.onyx .ox-footer-social a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 9px; color: var(--ox-tx-2); font-size: 16px; transition: background .14s, color .14s; }
.onyx .ox-footer-social a:hover { background: var(--ox-card-in); color: var(--ox-red); }

.ox-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1060; max-width: 760px; margin: 0 auto; display: none; background: var(--ox-panel); border: 1px solid var(--ox-line); border-radius: var(--ox-radius); box-shadow: var(--ox-shadow-lg); color: var(--ox-tx-2); font-size: 13px; line-height: 1.5; }
.ox-cookie.show { display: block; animation: ox-rise .2s ease-out; }
@keyframes ox-rise { from { transform: translateY(10px); } to { transform: none; } }
.ox-cookie-in { display: flex; align-items: center; gap: 16px; padding: 16px 18px; }
.ox-cookie-in > i { color: var(--ox-red); font-size: 26px; flex: none; }
.ox-cookie-tx { flex: 1; }
.onyx .ox-cookie a { color: var(--ox-tx); text-decoration: underline; }

.ox-tip { position: fixed; z-index: 1200; max-width: 240px; padding: 6px 10px; border-radius: 7px; background: #1f1f1f; border: 1px solid #333333; color: #f2f2f2; font-family: var(--ox-ui); font-size: 12px; font-weight: 600; line-height: 1.4; text-align: center; pointer-events: none; box-shadow: 0 8px 20px rgba(0, 0, 0, .35); }
.ox-tip::after { content: ""; position: absolute; left: var(--ox-arrow, 50%); margin-left: -5px; border: 5px solid transparent; }
.ox-tip.top::after { top: 100%; border-top-color: #333333; }
.ox-tip.bottom::after { bottom: 100%; border-bottom-color: #333333; }

.ox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; }
.ox-card { display: flex; flex-direction: column; min-width: 0; background: var(--ox-card); border: 1px solid var(--ox-line-soft); border-radius: 16px; overflow: hidden; transition: border-color .16s, transform .16s, box-shadow .16s; }
.ox-card:hover { border-color: var(--ox-line-strong); }
.ox-card-photo { position: relative; height: 170px; background: #111111; overflow: hidden; }
.ox-card-photo img { width: 100%; height: 100%; object-fit: cover; max-width: none; display: block; transition: transform .4s; }
.ox-card:hover .ox-card-photo img { transform: scale(1.05); }
.ox-card-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 8, 8, .45) 0%, rgba(8, 8, 8, 0) 35%, rgba(8, 8, 8, 0) 60%, rgba(8, 8, 8, .7) 100%); pointer-events: none; }
.ox-card-tags { position: absolute; z-index: 2; top: 10px; left: 10px; right: 10px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.ox-tag { display: inline-flex; align-items: center; gap: 5px; height: 22px; padding: 0 8px; border-radius: 6px; background: rgba(12, 12, 12, .78); color: #ffffff; font-size: 11px; font-weight: 800; letter-spacing: .5px; white-space: nowrap; }
.ox-tag-icao { background: #e51d2b; }
.ox-tag-gold { background: #e6b23e; color: #1a1406; text-transform: uppercase; }
.ox-card-body { display: flex; flex-direction: column; flex: 1; padding: 13px 15px 14px; }
.onyx .ox-card-name { font-size: 16px; font-weight: 800; letter-spacing: -.2px; line-height: 1.25; }
.ox-card-ops { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 5px; }
.ox-mini { margin-top: 12px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.ox-mini > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; padding: 8px 9px; border-radius: 9px; background: var(--ox-card-in); }
.ox-mini strong { font-size: 15px; font-weight: 800; color: var(--ox-tx); line-height: 1.1; font-variant-numeric: tabular-nums; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ox-mini strong small { font-size: 10.5px; font-weight: 700; color: var(--ox-tx-3); }
.ox-mini span { font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--ox-tx-3); }
.ox-card-foot { margin-top: auto; padding-top: 12px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.ox-card-devs { margin-top: 10px; display: flex; align-items: flex-start; gap: 7px; font-size: 12px; font-weight: 600; line-height: 1.45; color: var(--ox-tx-2); }
.ox-card-devs i { margin-top: 3px; font-size: 11px; color: var(--ox-tx-3); }

.ox-empty { padding: 44px 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--ox-tx-2); }
.ox-empty > i { font-size: 30px; color: var(--ox-tx-3); }
.ox-empty strong { font-size: 15px; color: var(--ox-tx); }
.ox-loading { display: flex; align-items: center; justify-content: center; padding: 30px; }
.ox-loading-lg { min-height: 320px; }
.ox-loading span, .ox-map-loading span, .ox-chart-wait span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 10px; background: var(--ox-panel); border: 1px solid var(--ox-line); box-shadow: var(--ox-shadow); font-size: 13px; font-weight: 700; color: var(--ox-tx); }
.ox-loading i, .ox-map-loading i, .ox-chart-wait i { color: var(--ox-red); }


.ox-pilot { padding: 14px 15px 14px; display: flex; flex-direction: column; gap: 10px; }
.ox-pilot-top { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ox-pilot-flag { width: 26px; height: 18px; flex: none; object-fit: cover; border-radius: 3px; box-shadow: 0 0 0 1px var(--ox-line-soft); }
.ox-pilot-id { min-width: 0; flex: 1; }
.ox-pilot-name { font-size: 15px; font-weight: 800; color: var(--ox-tx); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ox-pilot-code { margin-top: 1px; font-size: 11.5px; font-weight: 700; letter-spacing: .4px; color: var(--ox-tx-3); font-variant-numeric: tabular-nums; }
.ox-pilot-rank { flex: none; height: 26px; width: auto; border-radius: 4px; }
.ox-pilot-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ox-tx-2); }
.ox-pilot-meta .ox-bdg { text-transform: none; letter-spacing: 0; font-size: 11px; font-weight: 700; }
.ox-pilot .ox-mini { margin-top: 0; }
.ox-pilot-nets { display: flex; flex-wrap: wrap; gap: 5px; min-height: 22px; }
.ox-pilot-nets .ox-none { font-size: 11.5px; font-weight: 600; color: var(--ox-tx-3); line-height: 22px; }

.ox-map-panel { overflow: hidden; }
.ox-map-wrap { position: relative; height: 620px; background: var(--ox-card-in); }
.ox-map { position: absolute; inset: 0; }
.ox-map-short { height: 460px; }
.ox-map-loading { position: absolute; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ox-map-legend { position: absolute; z-index: 500; left: 12px; bottom: 12px; display: flex; flex-wrap: wrap; gap: 4px 12px; max-width: calc(100% - 24px); padding: 8px 12px; border-radius: 10px; background: rgba(15, 15, 15, .86); border: 1px solid rgba(255, 255, 255, .12); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); font-size: 11.5px; font-weight: 700; color: #d9d9d9; }
.ox-map-legend span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.ox-map-legend i { width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .6); }
.ox-panel-head > .ox-seg { margin-left: auto; }
.ox-lg-airport { background: #9a9a9a; }
.ox-lg-selected { background: #e51d2b; }
.ox-lg-outbound { background: #4b86e6; }
.ox-lg-inbound { background: #37c96d; }
.ox-lg-both { background: #e6b23e; }
.ox-lg-vatsim { background: #29B473; }
.ox-lg-ivao { background: #8ea5f8; }
.ox-lg-pilotedge { background: #f68f1e; }
.ox-lg-poscon { background: #9787e7; }
.ox-lg-siai { background: #e1b84f; }
.ox-lg-offline { background: #ffffff; }
.ox-map-status { position: absolute; z-index: 500; top: 12px; left: 12px; max-width: calc(100% - 80px); padding: 7px 12px; border-radius: 10px; background: rgba(15, 15, 15, .86); border: 1px solid rgba(255, 255, 255, .12); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); font-size: 12.5px; font-weight: 600; color: #d9d9d9; }
.ox-map-status strong { color: #ffffff; }
.ox-map-status:empty { display: none; }
.onyx .leaflet-container { font-family: var(--ox-ui); background: var(--ox-card-in); }
.onyx .leaflet-bar { border: 1px solid rgba(255, 255, 255, .12) !important; border-radius: 10px !important; overflow: hidden; box-shadow: 0 8px 20px rgba(0, 0, 0, .3) !important; }
.onyx .leaflet-bar a, .onyx .leaflet-bar a:hover { width: 34px !important; height: 34px !important; line-height: 34px !important; background: rgba(15, 15, 15, .9) !important; color: #e0e0e0 !important; border-bottom: 1px solid rgba(255, 255, 255, .1) !important; font-weight: 400; }
.onyx .leaflet-bar a:hover { color: #ffffff !important; background: #1f1f1f !important; }
.onyx .leaflet-bar a:last-child { border-bottom: 0 !important; }
.onyx .leaflet-tooltip.ox-ltip { padding: 0; background: transparent; border: 0; box-shadow: none; white-space: normal; }
.onyx .leaflet-tooltip.ox-ltip::before { display: none; }
.ox-lcard { width: max-content; min-width: 200px; max-width: 300px; overflow: hidden; background: var(--ox-panel); border: 1px solid var(--ox-line); border-radius: 12px; box-shadow: var(--ox-shadow-lg); color: var(--ox-tx); font-family: var(--ox-ui); text-align: left; }
.ox-lcard-h { padding: 10px 12px; border-bottom: 1px solid var(--ox-line-soft); }
.ox-lcard-route { display: flex; align-items: center; gap: 8px; }
.ox-lcard-route strong { font-size: 14px; font-weight: 800; font-variant-numeric: tabular-nums; }
.ox-lcard-bar { position: relative; flex: 1; min-width: 40px; height: 3px; border-radius: 3px; background: var(--ox-line); }
.ox-lcard-bar b { position: absolute; inset: 0 auto 0 0; border-radius: 3px; background: var(--ox-red); }
.ox-lcard-bar i { position: absolute; top: 50%; transform: translate(-50%, -50%) rotate(90deg); font-size: 11px; color: var(--ox-red); }
.ox-lcard-names { margin-top: 5px; display: flex; justify-content: space-between; gap: 12px; font-size: 11px; font-weight: 600; color: var(--ox-tx-3); }
.ox-lcard-names span { max-width: 48%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ox-lcard-id { padding: 9px 12px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 12.5px; font-weight: 800; }
.ox-lcard-id span { color: var(--ox-tx-3); font-weight: 700; }
.ox-lcard-grid { padding: 9px 12px 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ox-lcard-grid div { padding: 6px 8px; border-radius: 8px; background: var(--ox-card-in); }
.ox-lcard-grid strong { display: block; font-size: 13px; font-weight: 800; font-variant-numeric: tabular-nums; }
.ox-lcard-grid span { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--ox-tx-3); }
.ox-lcard-f { padding: 8px 12px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; border-top: 1px solid var(--ox-line-soft); }
.ox-lcard-simple { padding: 9px 12px; font-size: 12.5px; line-height: 1.45; color: var(--ox-tx-2); }
.ox-lcard-simple strong { display: block; font-size: 13.5px; font-weight: 800; color: var(--ox-tx); }
.ox-lcard-simple .ox-bdg { margin-bottom: 5px; }
.ox-plane { display: grid; place-items: center; width: 30px; height: 30px; }
.ox-plane i { display: block; font-size: 22px; line-height: 1; color: #ffffff; -webkit-text-stroke: 1.5px #000000; text-shadow: 0 1px 3px rgba(0, 0, 0, .55); transition: transform .3s; }
.ox-plane.vatsim i { color: var(--ox-vatsim); }
.ox-plane.ivao i { color: var(--ox-ivao); }
.ox-plane.pilotedge i { color: var(--ox-pilotedge); }
.ox-plane.poscon i { color: var(--ox-poscon); }
.ox-plane.siai i { color: var(--ox-siai); }
.ox-plane.sel i { font-size: 28px; -webkit-text-stroke: 1.5px #e51d2b; }

.ox-flights { padding: 12px; display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 8px; }
.ox-flight { cursor: pointer; }
.ox-flight.sel { border-color: var(--ox-red); box-shadow: inset 3px 0 0 var(--ox-red); }
.ox-flight .ox-row-icon { background: var(--ox-card-in); color: var(--ox-tx-3); }
.ox-flight .ox-row-icon.vatsim { background: rgba(41, 180, 115, .16); color: var(--ox-vatsim); }
.ox-flight .ox-row-icon.ivao { background: rgba(142, 165, 248, .18); color: var(--ox-ivao); }
.ox-flight .ox-row-icon.pilotedge { background: rgba(246, 143, 30, .16); color: var(--ox-pilotedge); }
.ox-flight .ox-row-icon.poscon { background: rgba(151, 135, 231, .18); color: var(--ox-poscon); }
.ox-flight .ox-row-icon.siai { background: rgba(225, 184, 79, .18); color: var(--ox-siai); }
.ox-flight-stats { flex: none; display: flex; gap: 14px; }

.ox-sgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.ox-sgrid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ox-span-2 { grid-column: span 2; }
.ox-stack { display: flex; flex-direction: column; gap: 18px; }
.ox-spanel { padding: 14px 16px 16px; min-width: 0; }
.ox-spanel .ox-panel-head { padding: 0 0 12px; margin-bottom: 12px; }
.ox-spanel .ox-seg { margin-left: auto; }
.ox-spanel .ox-seg button { height: 26px; padding: 0 9px; font-size: 11.5px; }
.ox-chart { position: relative; height: 260px; }
.ox-chart svg text { font-family: var(--ox-ui) !important; }
.onyx .morris-hover.morris-default-style { padding: 9px 12px; background: var(--ox-panel); border: 1px solid var(--ox-line); border-radius: 10px; box-shadow: var(--ox-shadow-lg); color: var(--ox-tx-2); font-family: var(--ox-ui); font-size: 12.5px; text-align: left; }
.onyx .morris-hover.morris-default-style strong { color: var(--ox-tx); }
.onyx .morris-hover.morris-default-style hr { border: 0; border-top: 1px solid var(--ox-line-soft); margin: 6px 0; }
.onyx .morris-hover { position: absolute; z-index: 30; pointer-events: none; }
.ox-chart-empty { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--ox-tx-3); }
.ox-legend { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 5px 12px; font-size: 12px; font-weight: 600; color: var(--ox-tx-2); }
.ox-legend span { display: inline-flex; align-items: center; gap: 6px; }
.ox-legend i { width: 9px; height: 9px; border-radius: 3px; }
.ox-legend b { font-weight: 800; color: var(--ox-tx); }

.ox-audit { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.ox-audit-tile { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.ox-audit-tile span { font-size: 10.5px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; color: var(--ox-tx-3); }
.ox-audit-tile strong { font-size: 30px; font-weight: 900; letter-spacing: -.6px; line-height: 1; color: var(--ox-tx); font-variant-numeric: tabular-nums; }
.ox-audit-tile small { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--ox-tx-3); }
.ox-audit-tile.ok { box-shadow: inset 0 3px 0 var(--ox-green); }
.ox-audit-tile.ok strong, .ox-audit-tile.ok small i { color: var(--ox-green); }
.ox-audit-tile.bad { box-shadow: inset 0 3px 0 var(--ox-red); }
.ox-audit-tile.bad strong, .ox-audit-tile.bad small i { color: var(--ox-red); }
.ox-audit-meta { margin: 14px 0 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.ox-audit-meta .ox-bdg { font-size: 11px; padding: 5px 10px; }
.ox-table-wrap { max-height: 520px; overflow: auto; padding: 0 12px 12px; }
.ox-table { width: 100%; border-collapse: separate; border-spacing: 0 5px; }
.ox-table thead th { position: sticky; top: 0; z-index: 2; padding: 12px 12px 6px; background: var(--ox-panel); font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--ox-tx-3); text-align: left; white-space: nowrap; }
.ox-table td { padding: 9px 12px; background: var(--ox-card); border-top: 1px solid var(--ox-line-soft); border-bottom: 1px solid var(--ox-line-soft); font-size: 13.5px; color: var(--ox-tx); white-space: nowrap; }
.ox-table td:first-child { border-left: 1px solid var(--ox-line-soft); border-radius: 10px 0 0 10px; }
.ox-table td:last-child { border-right: 1px solid var(--ox-line-soft); border-radius: 0 10px 10px 0; }
.ox-table tbody tr:hover td { background: var(--ox-card-in); }
.ox-table .ox-r { text-align: right; }
.ox-table .ox-code { font-weight: 800; color: var(--ox-tx-2); font-variant-numeric: tabular-nums; }
.ox-table tfoot td { background: var(--ox-card-in); font-weight: 800; }
.ox-table tfoot td:first-child { font-size: 11px; letter-spacing: .8px; text-transform: uppercase; color: var(--ox-tx-3); }
.ox-soft { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 16px 16px; }
.ox-soft span { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; background: var(--ox-card-in); border: 1px solid var(--ox-line-soft); font-size: 14px; font-weight: 700; color: var(--ox-tx); }
.ox-soft span i { color: var(--ox-red); }

@media (max-width: 1100px) {
    .ox-hero-in { flex-direction: column; align-items: stretch; }
    .ox-hero-side { width: auto; flex-direction: row; flex-wrap: wrap; }
    .ox-hero-side > * { flex: 1 1 260px; }
    .ox-ops { grid-template-columns: minmax(0, 1fr); }
    .ox-op-photo { height: 200px; }
    .ox-story { grid-template-columns: minmax(0, 1fr); }
    .ox-story-photo { min-height: 280px; }
    .ox-land-grid { grid-template-columns: minmax(0, 1fr); }
    .ox-sgrid-3 { grid-template-columns: minmax(0, 1fr); }
    .ox-span-2 { grid-column: auto; }
    .ox-audit { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .ox-bar { position: static; }
    .ox-feats { grid-template-columns: minmax(0, 1fr); }
    .ox-voices { grid-template-columns: minmax(0, 1fr); }
    .ox-sgrid { grid-template-columns: minmax(0, 1fr); }
    .ox-map-wrap { height: 520px; }
    .ox-flights { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 767px) {
    .ox-wrap { padding: 0 12px; }
    .ox-hero { min-height: 380px; }
    .ox-hero-in { padding: 32px 16px 22px; }
    .onyx .ox-hero-title { font-size: 40px; letter-spacing: -1px; }
    .onyx .ox-hero-home .ox-hero-title { font-size: 34px; letter-spacing: -.8px; }
    .ox-hero-home { min-height: 0; }
    .ox-hero-home .ox-hero-in { padding-top: 90px; }
    .ox-hs { min-width: calc(50% - 5px); flex: 1 1 calc(50% - 5px); }
    .ox-hero-actions .ox-btn { flex: 1 1 auto; }
    .ox-page-head-in { padding: 18px 16px; }
    :where(.onyx) .ox-page-head h1 { font-size: 26px; }
    .ox-page-head-r { margin-left: 0; width: 100%; }
    .ox-bar-in { padding: 10px 12px; }
    .ox-bar-search { flex-basis: 100%; }
    .ox-sec { padding: 36px 0; }
    .ox-sec-flush { padding-top: 0; }
    .ox-sec-tight { padding: 20px 0 40px; }
    .onyx .ox-sec-title { font-size: 26px; }
    .ox-sec-head-r { margin-left: 0; }
    .ox-grid { grid-template-columns: minmax(0, 1fr); }
    .ox-story-body { padding: 22px 18px; }
    .ox-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ox-quote { padding: 22px 18px 18px; min-height: 0; }
    .ox-quote-tx { font-size: 15.5px; }
    .onyx .ox-cta h2 { font-size: 30px; }
    .ox-cta-in { padding: 40px 16px; }
    .ox-cta-actions { width: 100%; }
    .ox-cta-actions .ox-btn { flex: 1 1 auto; }
    .ox-dark-band-in { gap: 16px 28px; padding: 22px 12px; }
    .ox-sims img { height: 28px; max-width: 130px; }
    .ox-sims img.ox-sim-p3d { height: 16px; }
    .ox-partners img { height: 26px; max-width: 120px; }
    .ox-map-wrap { height: 440px; }
    .ox-map-short { height: 360px; }
    .ox-flight-stats { display: none; }
    .ox-audit-tile strong { font-size: 24px; }
    .ox-footer-social { margin-left: 0; }
    .ox-spanel .ox-seg { margin-left: 0; }
}
@media (max-width: 560px) {
    .ox-cookie-in { flex-wrap: wrap; }
    .ox-cookie-in .ox-btn { width: 100%; }
    .ox-row-n { display: none; }
    .ox-audit { grid-template-columns: minmax(0, 1fr); }
    .ox-lcard { min-width: 0; max-width: 260px; }
}
