/* ===== Ballistics Lab — red/black theme (matches refine.css) ===== */

.ballistics-workspace,
.ballistics-page {
    --bl-accent: var(--zb-accent-bright, #ff1a1a);
    --bl-accent-dim: var(--zb-accent, #e01a1a);
    --bl-accent-muted: var(--zb-accent-muted, rgba(255, 26, 26, 0.12));
    --bl-accent-glow: var(--zb-accent-glow, rgba(255, 26, 26, 0.35));
    --bl-border: rgba(255, 26, 26, 0.1);
    --bl-border-strong: rgba(255, 26, 26, 0.22);
    --bl-text-accent: #ff6b6b;
    --bl-text-highlight: #ff8888;
    --bl-surface-tint: rgba(255, 26, 26, 0.06);
}

.ballistics-workspace {
    position: relative;
    border: 1px solid #2a2a2a;
    border-left: 2px solid var(--bl-accent);
    overflow: hidden;
    background: var(--zb-bg-elevated, #0e0e10);
}

.ballistics-workspace::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 26, 26, 0.06), transparent 55%),
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 1px,
            transparent 1px,
            transparent 3px
        );
    pointer-events: none;
    z-index: 0;
}

.ballistics-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 240px 1fr 300px;
    align-items: stretch;
    min-height: 560px;
}

/* ── Sidebar ── */

.ballistics-sidebar {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 60, 60, 0.08);
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(8px);
    max-height: 640px;
}

.ballistics-sidebar-head {
    padding: 16px 14px 10px;
    border-bottom: 1px solid rgba(255, 60, 60, 0.06);
}

.ballistics-sidebar-title {
    font-family: 'Bender', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--zb-text-muted, rgba(255, 255, 255, 0.55));
    margin-bottom: 10px;
}

.bl-search {
    width: 100%;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 60, 60, 0.12);
    color: #d8d0c4;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.bl-search:focus {
    border-color: rgba(255, 26, 26, 0.45);
}

.bl-search::placeholder {
    color: rgba(140, 130, 115, 0.5);
}

.ballistics-weapon-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 10px 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 26, 26, 0.3) transparent;
}

.ballistics-cat-title {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 26, 26, 0.45);
    padding: 12px 6px 5px;
}

.ballistics-weapon-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 9px 11px;
    margin-bottom: 3px;
    border: 1px solid transparent;
    border-left: 2px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    color: #c9c0b4;
    cursor: pointer;
    text-align: left;
    transition: all 0.18s ease;
}

.ballistics-weapon-btn:hover {
    background: rgba(220, 150, 150, 0.06);
    border-color: rgba(255, 60, 60, 0.12);
    border-left-color: rgba(255, 26, 26, 0.35);
}

.ballistics-weapon-btn.active {
    background: linear-gradient(90deg, rgba(200, 20, 20, 0.14), rgba(200, 20, 20, 0.04));
    border-color: rgba(200, 30, 30, 0.25);
    border-left-color: var(--bl-accent);
    box-shadow: inset 0 0 20px rgba(200, 20, 20, 0.06);
}

.ballistics-weapon-btn.hidden {
    display: none;
}

.ballistics-cat-title.hidden {
    display: none;
}

.ballistics-weapon-btn-name {
    font-size: 12px;
    font-weight: 600;
}

.ballistics-weapon-btn-meta {
    font-size: 10px;
    color: rgba(180, 170, 150, 0.5);
    margin-top: 2px;
}

/* ── Main ── */

.ballistics-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0;
    gap: 0;
}

.bl-weapon-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px 16px;
    border-bottom: 1px solid rgba(255, 60, 60, 0.08);
    background: linear-gradient(135deg, rgba(200, 20, 20, 0.06) 0%, transparent 60%);
}

.bl-hero-badge {
    display: inline-block;
    font-family: 'Bender', sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bl-accent);
    background: rgba(255, 26, 26, 0.12);
    border: 1px solid rgba(255, 26, 26, 0.25);
    padding: 3px 8px;
    margin-bottom: 8px;
}

.bl-hero-name {
    margin: 0;
    font-family: 'Bender', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #f0e8dc;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.bl-hero-meta {
    margin: 6px 0 0;
    font-size: 11px;
    color: rgba(160, 150, 130, 0.55);
}

.bl-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    max-width: 280px;
}

.bl-pill {
    font-family: 'Bender', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: rgba(220, 210, 195, 0.85);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 60, 60, 0.12);
    padding: 5px 10px;
    white-space: nowrap;
}

.bl-pill strong {
    color: var(--bl-text-accent);
    font-weight: 600;
}

/* Kill bar */

.bl-kill-section {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 60, 60, 0.06);
}

.bl-kill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.bl-kill-header .ballistics-panel-title {
    margin-bottom: 0;
}

.bl-kill-summary {
    font-size: 10px;
    color: rgba(180, 170, 150, 0.6);
}

.bl-kill-legend {
    margin: 0 0 10px;
    font-size: 9px;
    line-height: 1.45;
    color: rgba(140, 130, 115, 0.6);
}

.bl-kill-legend strong {
    color: var(--bl-text-accent);
    font-weight: 600;
}

.bl-kill-bar-wrap {
    display: flex;
    align-items: stretch;
    gap: 4px;
}

.bl-kill-bar {
    display: flex;
    gap: 3px;
    height: 22px;
    flex: 1;
}

.bl-kill-overkill {
    display: flex;
    gap: 2px;
    align-items: stretch;
}

.bl-kill-overkill-seg {
    width: 8px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(255, 60, 40, 0.9), rgba(180, 30, 20, 0.75));
    border: 1px solid rgba(255, 80, 60, 0.5);
    box-shadow: 0 0 6px rgba(255, 60, 40, 0.3);
}

.bl-kill-shots-label {
    margin-top: 10px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(150, 140, 125, 0.5);
}

.bl-kill-shots {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
}

.bl-kill-shot {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bender', sans-serif;
    font-size: 10px;
    color: rgba(200, 190, 170, 0.8);
    background: rgba(200, 25, 25, 0.12);
    border: 1px solid rgba(220, 40, 40, 0.25);
    border-radius: 2px;
}

.bl-kill-shot.last {
    background: rgba(200, 20, 20, 0.22);
    border-color: rgba(255, 26, 26, 0.45);
    color: var(--bl-text-highlight);
    box-shadow: 0 0 8px rgba(200, 20, 20, 0.15);
}

.bl-kill-seg {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 60, 60, 0.08);
    border-radius: 2px;
    transition: background 0.25s, box-shadow 0.25s;
}

.bl-kill-seg.filled {
    background: linear-gradient(180deg, rgba(200, 25, 25, 0.85), rgba(180, 20, 20, 0.7));
    border-color: rgba(220, 40, 40, 0.4);
    box-shadow: 0 0 8px rgba(200, 20, 20, 0.25);
}

.bl-kill-seg.filled-last {
    background: linear-gradient(180deg, rgba(230, 60, 60, 0.9), rgba(160, 15, 15, 0.75));
    border-color: rgba(230, 70, 70, 0.5);
}

.bl-kill-seg.overkill {
    background: linear-gradient(180deg, rgba(255, 60, 40, 0.9), rgba(180, 30, 20, 0.75));
    border-color: rgba(255, 80, 60, 0.5);
}

/* Cards row */

.ballistics-lower {
    display: grid;
    grid-template-columns: minmax(0, 300px) 1fr;
    gap: 0;
    flex: 1;
    align-items: stretch;
}

.bl-card {
    padding: 14px 18px 16px;
    border-top: 1px solid rgba(255, 60, 60, 0.06);
}

.ballistics-spray-wrap {
    border-right: 1px solid rgba(255, 60, 60, 0.06);
}

.bl-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.ballistics-panel-title {
    font-family: 'Bender', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--zb-text-muted, rgba(255, 255, 255, 0.55));
    margin-bottom: 4px;
}

.ballistics-panel-hint {
    margin: 0;
    font-size: 9px;
    line-height: 1.4;
    color: rgba(140, 130, 115, 0.55);
}

.bl-headshot-hint {
    margin-top: 8px;
    color: rgba(220, 100, 100, 0.55);
}

.bl-icon-btn {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 60, 60, 0.15);
    background: rgba(0, 0, 0, 0.3);
    color: rgba(220, 150, 150, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s;
    line-height: 1;
}

.bl-icon-btn:hover {
    border-color: rgba(255, 26, 26, 0.45);
    color: var(--bl-text-accent);
    background: rgba(200, 20, 20, 0.12);
}

/* Spray */

.bl-spray-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 60, 60, 0.12);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3);
}

.bl-spray-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(230, 100, 100, 0.06);
    pointer-events: none;
}

#ballistics-spray-canvas {
    width: 100%;
    height: 168px;
    display: block;
}

.bl-recoil-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.bl-recoil-row {
    display: grid;
    grid-template-columns: 52px 1fr 36px;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    color: rgba(150, 140, 125, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bl-recoil-track {
    height: 5px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
}

.bl-recoil-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #cc0000, var(--bl-accent));
    transition: width 0.3s ease;
}

.bl-recoil-val {
    text-align: right;
    font-family: 'Bender', sans-serif;
    color: rgba(220, 200, 170, 0.75);
    font-size: 10px;
}

/* Dropoff chart */

.bl-dropoff-wrap {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.bl-dropoff-y {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 9px;
    color: rgba(130, 120, 105, 0.45);
    font-family: 'Bender', sans-serif;
    padding: 2px 0 4px;
    min-width: 22px;
    text-align: right;
}

.bl-dropoff-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 168px;
    padding: 4px 0;
    position: relative;
}

.bl-dropoff-chart::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 60, 60, 0.12);
}

.bl-drop-bar {
    flex: 1;
    min-width: 3px;
    background: linear-gradient(180deg, rgba(220, 50, 50, 0.35), rgba(200, 20, 20, 0.15));
    border-radius: 2px 2px 0 0;
    transition: height 0.2s ease, background 0.2s, box-shadow 0.2s;
    position: relative;
    cursor: default;
}

.bl-drop-bar:hover {
    background: linear-gradient(180deg, rgba(230, 80, 80, 0.55), rgba(200, 25, 25, 0.25));
}

.bl-drop-bar.active {
    background: linear-gradient(180deg, #ff4444, #cc0000);
    box-shadow: 0 0 12px rgba(255, 26, 26, 0.45);
}

.bl-drop-bar.beyond {
    opacity: 0.35;
}

.bl-dropoff-x {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    padding-left: 30px;
    font-size: 9px;
    color: rgba(130, 120, 105, 0.45);
    font-family: 'Bender', sans-serif;
}

/* ── Stats panel ── */

.ballistics-stats {
    border-left: 1px solid rgba(255, 60, 60, 0.08);
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(8px);
    padding: 14px;
    overflow-y: auto;
    max-height: 640px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 26, 26, 0.3) transparent;
}

.bl-stats-card {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 60, 60, 0.08);
    padding: 12px 14px;
}

.bl-stats-highlight {
    background: linear-gradient(145deg, rgba(200, 20, 20, 0.1), rgba(0, 0, 0, 0.25));
    border-color: rgba(255, 26, 26, 0.2);
}

.bl-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.bl-highlight-item {
    text-align: center;
    padding: 6px 4px;
}

.bl-highlight-pen .bl-stat-val {
    font-size: 18px;
}

.bl-stat-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: rgba(150, 140, 125, 0.55);
    margin-bottom: 4px;
}

.bl-stat-val {
    font-family: 'Bender', sans-serif;
    font-size: 15px;
    color: #e8dcc8;
    line-height: 1.2;
}

.bl-stat-val.bl-stat-xl {
    font-size: 20px;
    color: #f5ead8;
}

.bl-stat-val.bl-stat-sm {
    font-size: 12px;
}

.bl-stat-val.positive { color: #6fd968; }
.bl-stat-val.negative { color: #e86868; }

.bl-pen-detail {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 60, 60, 0.08);
    font-size: 10px;
    color: rgba(170, 160, 140, 0.65);
    line-height: 1.45;
    text-align: center;
}

.ballistics-controls {
    margin: 0;
}

.ballistics-control-row {
    margin-bottom: 12px;
}

.ballistics-control-row label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: rgba(170, 160, 140, 0.55);
    margin-bottom: 7px;
}

.bl-val-accent {
    color: var(--bl-accent);
    font-family: 'Bender', sans-serif;
    font-size: 11px;
}

.ballistics-control-row input[type="range"] {
    width: 100%;
    height: 4px;
    accent-color: var(--bl-accent);
    cursor: pointer;
}

.ballistics-control-row select {
    width: 100%;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 60, 60, 0.15);
    color: #d8d0c4;
    font-size: 11px;
    outline: none;
    cursor: pointer;
}

.ballistics-control-row select:focus {
    border-color: rgba(255, 26, 26, 0.4);
}

.bl-dist-presets {
    display: flex;
    gap: 5px;
    margin-top: 8px;
}

.bl-dist-presets button {
    flex: 1;
    padding: 5px 0;
    font-family: 'Bender', sans-serif;
    font-size: 9px;
    letter-spacing: 0.5px;
    color: rgba(180, 170, 150, 0.65);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 60, 60, 0.1);
    cursor: pointer;
    transition: all 0.15s;
}

.bl-dist-presets button:hover {
    border-color: rgba(255, 26, 26, 0.35);
    color: var(--bl-text-accent);
}

.bl-dist-presets button.active {
    background: rgba(200, 20, 20, 0.15);
    border-color: rgba(255, 26, 26, 0.45);
    color: var(--bl-text-highlight);
}

.ballistics-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.bl-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.bl-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bl-toggle span {
    font-size: 10px;
    color: rgba(170, 160, 145, 0.65);
    padding: 5px 10px;
    border: 1px solid rgba(255, 60, 60, 0.1);
    background: rgba(0, 0, 0, 0.25);
    transition: all 0.15s;
}

.bl-toggle input:checked + span {
    color: var(--bl-text-highlight);
    border-color: rgba(255, 26, 26, 0.45);
    background: rgba(200, 20, 20, 0.12);
    box-shadow: 0 0 10px rgba(200, 20, 20, 0.1);
}

.bl-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.bl-stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 60, 60, 0.06);
    padding: 8px 10px;
    transition: border-color 0.15s;
}

.bl-stat-item:hover {
    border-color: rgba(255, 60, 60, 0.14);
}

/* Pen table */

.bl-pen-table-wrap {
    overflow-x: auto;
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.bl-pen-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
}

.bl-pen-table-wrap th,
.bl-pen-table-wrap td {
    padding: 6px 7px;
    border-bottom: 1px solid rgba(255, 60, 60, 0.06);
    text-align: left;
}

.bl-pen-table-wrap th {
    position: sticky;
    top: 0;
    background: rgba(12, 11, 10, 0.95);
    color: rgba(150, 140, 125, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 8px;
    z-index: 1;
}

.bl-pen-table-wrap tr.pen-yes td:last-child { color: #6fd968; }
.bl-pen-table-wrap tr.pen-no td:last-child { color: #e86868; }

.bl-pen-table-wrap tr.selected {
    background: rgba(200, 20, 20, 0.08);
}

.bl-pen-table-wrap tr.selected td:first-child {
    color: var(--bl-text-highlight);
}

.bl-pen-icon {
    font-size: 11px;
}

/* ── Responsive ── */

@media (max-width: 1200px) {
    .ballistics-layout {
        grid-template-columns: 220px 1fr 260px;
    }

    .bl-highlight-grid {
        grid-template-columns: 1fr;
    }

    .bl-highlight-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 4px 0;
    }

    .bl-highlight-item .bl-stat-label {
        margin-bottom: 0;
    }
}

@media (max-width: 1100px) {
    .ballistics-layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ballistics-sidebar {
        max-height: 200px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 60, 60, 0.08);
    }

    .ballistics-stats {
        max-height: none;
        border-left: none;
        border-top: 1px solid rgba(255, 60, 60, 0.08);
    }

    .ballistics-lower {
        grid-template-columns: 1fr;
    }

    .ballistics-spray-wrap {
        border-right: none;
        border-bottom: 1px solid rgba(255, 60, 60, 0.06);
    }

    .bl-weapon-hero {
        flex-direction: column;
    }

    .bl-hero-pills {
        justify-content: flex-start;
        max-width: none;
    }

    .bl-highlight-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .bl-highlight-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Explosives view ── */

.bl-explosion-section {
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(255, 60, 60, 0.08);
}

.bl-explosion-frame {
    position: relative;
    width: 100%;
    min-height: 220px;
    aspect-ratio: 16 / 9;
    max-height: 340px;
    background: radial-gradient(ellipse at center, #1a1210 0%, #0c0b0a 70%);
    border: 1px solid rgba(255, 60, 60, 0.12);
    overflow: hidden;
}

.bl-explosion-3d-host {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.bl-explosion-frame canvas,
.bl-explosion-gl {
    display: block;
    width: 100% !important;
    height: 100% !important;
    outline: none;
    cursor: grab;
}

.bl-explosion-gl:active {
    cursor: grabbing;
}

.bl-explosion-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    font-size: 10px;
    color: rgba(160, 150, 135, 0.7);
}

.bl-explosion-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bl-explosion-legend .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bl-explosion-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 16px 16px;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.bl-explosion-param {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 60, 60, 0.08);
    padding: 8px 10px;
}

.bl-explosion-param-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: rgba(150, 140, 125, 0.55);
    margin-bottom: 3px;
}

.bl-explosion-param-val {
    font-family: 'Bender', sans-serif;
    font-size: 11px;
    color: var(--bl-text-accent);
    word-break: break-word;
}

.bl-explosion-param.full {
    grid-column: 1 / -1;
}

.ballistics-weapon-btn[data-kind="explosive"] .ballistics-weapon-btn-meta {
    color: var(--bl-text-accent);
}
