.boh-archive {
    --boh-orange: #e96f26;
    --boh-ink: #181512;
    --boh-paper: #fbfaf6;
    --boh-paper-2: #f0ece2;
    --boh-rule: rgba(24, 21, 18, 0.16);
    --boh-muted: #5b544a;
    --boh-terminal: var(--boh-color1, #e96f26);
    --boh-chart-axis: 12px;
    --boh-chart-axis-title: 13px;
    --boh-chart-heading: 16px;
    --boh-chart-note: 13px;
    --boh-loss: #a5162f;
    --boh-tie: #77716a;
    --boh-win: #176f4c;
    color: var(--boh-ink);
    background:
        linear-gradient(90deg, rgba(24, 21, 18, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(24, 21, 18, 0.035) 1px, transparent 1px),
        var(--boh-paper);
    background-size: 18px 18px;
    border: 1px solid var(--boh-rule);
    font-family: Georgia, "Times New Roman", serif;
    margin: 0 auto 28px;
    max-width: 1240px;
    overflow: hidden;
}

.boh-archive * {
    box-sizing: border-box;
}

.boh-archive-stage {
    position: relative;
    min-height: 168px;
}

.boh-archive--ready .boh-archive-stage {
    min-height: 0;
}

.boh-archive--loading .boh-archive-body {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    pointer-events: none;
}

.boh-archive-body {
    transition: opacity 0.28s ease;
}

.boh-archive--loading .boh-archive-body {
    opacity: 0;
}

.boh-archive--ready .boh-archive-body {
    position: static;
    visibility: visible;
    opacity: 1;
}

.boh-loading {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 24px 32px;
    background:
        linear-gradient(180deg, rgba(251, 250, 246, 0.92), rgba(251, 250, 246, 0.98)),
        var(--boh-paper);
}

.boh-archive--loading .boh-loading {
    display: flex;
}

.boh-loading__card {
    min-width: min(320px, 100%);
    padding: 26px 30px 24px;
    border: 1px solid rgba(24, 21, 18, 0.18);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 6px 6px 0 rgba(24, 21, 18, 0.06);
    text-align: center;
}

.boh-loading__scan {
    height: 3px;
    margin: 0 auto 18px;
    max-width: 220px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, var(--boh-orange) 48%, transparent 100%);
    background-size: 220% 100%;
    animation: boh-loading-scan 1.15s ease-in-out infinite;
}

.boh-loading__label {
    color: var(--boh-terminal);
    font: 700 12px/1.2 "Courier New", monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes boh-loading-scan {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.boh-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding: 32px;
    background:
        linear-gradient(135deg, rgba(245, 102, 0, 0.18), transparent 34%),
        repeating-linear-gradient(0deg, rgba(24, 21, 18, 0.04), rgba(24, 21, 18, 0.04) 1px, transparent 1px, transparent 6px),
        #fffdf8;
    border-bottom: 3px double rgba(24, 21, 18, 0.26);
}

.boh-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--boh-terminal);
    font: 700 12px/1.1 "Courier New", monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.boh-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--boh-orange);
    box-shadow: 4px 4px 0 rgba(24, 21, 18, 0.18);
}

.boh-sport-chooser {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    margin: 2px 0 18px;
}

.boh-sport-chooser__label {
    display: inline-flex;
    align-items: center;
    color: var(--boh-muted);
    font: 700 11px/1.2 "Courier New", monospace;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.boh-sport-chooser__group {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    border: 2px solid var(--boh-terminal);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 5px 5px 0 rgba(24, 21, 18, 0.1);
}

.boh-sport-chooser__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border: 0;
    border-right: 1px solid rgba(24, 21, 18, 0.14);
    font: 700 13px/1.2 "Courier New", monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--boh-terminal);
    background: transparent;
    transition: background 0.15s ease, color 0.15s ease;
}

.boh-sport-chooser__item:last-child {
    border-right: 0;
}

.boh-sport-chooser__item--current {
    background: var(--boh-terminal);
    color: #fff;
}

.boh-sport-chooser__item--unavailable {
    color: var(--boh-muted);
    background: rgba(24, 21, 18, 0.04);
    opacity: 0.5;
    cursor: not-allowed;
}

.boh-sport-chooser__item:not(.boh-sport-chooser__item--current):not(.boh-sport-chooser__item--unavailable):hover,
.boh-sport-chooser__item:not(.boh-sport-chooser__item--current):not(.boh-sport-chooser__item--unavailable):focus-visible {
    background: rgba(245, 102, 0, 0.14);
    color: var(--boh-ink);
}

html.dark-mode .boh-sport-chooser__label {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-sport-chooser__group {
    border-color: var(--dm-text-primary, #f1f5f9);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.28);
}

html.dark-mode .boh-sport-chooser__item {
    color: var(--dm-text-primary, #f1f5f9);
    border-right-color: rgba(255, 255, 255, 0.16);
}

html.dark-mode .boh-sport-chooser__item--current {
    background: var(--dm-text-primary, #f1f5f9);
    color: #111;
}

html.dark-mode .boh-sport-chooser__item--unavailable {
    color: var(--dm-text-muted, #a0a0a0);
    background: rgba(255, 255, 255, 0.03);
}

html.dark-mode .boh-sport-chooser__item:not(.boh-sport-chooser__item--current):not(.boh-sport-chooser__item--unavailable):hover,
html.dark-mode .boh-sport-chooser__item:not(.boh-sport-chooser__item--current):not(.boh-sport-chooser__item--unavailable):focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: var(--dm-text-primary, #f1f5f9);
}

.boh-title {
    margin: 0;
    color: var(--boh-ink);
    font-family: "Graduate", Georgia, serif;
    font-size: clamp(30px, 5vw, 58px);
    line-height: 0.98;
    letter-spacing: 0;
}

.boh-title-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease, text-shadow 0.18s ease, transform 0.18s ease;
}

.boh-title-link:link,
.boh-title-link:visited {
    color: inherit;
}

.boh-title-link:hover,
.boh-title-link:focus-visible {
    color: var(--boh-orange);
    text-decoration: none;
    text-shadow: 4px 4px 0 rgba(245, 102, 0, 0.16);
    transform: translateX(3px);
}

.boh-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid currentColor;
    color: var(--boh-terminal);
    font: 700 12px/1.2 "Courier New", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
}

.boh-back:hover,
.boh-back:focus-visible {
    background: var(--boh-terminal);
    color: #fff;
    border-color: var(--boh-terminal);
}

.boh-subtitle {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--boh-muted);
    font-size: 17px;
    line-height: 1.55;
}

.boh-hero-mark {
    align-self: center;
    min-width: 190px;
    padding: 14px 18px;
    border: 1px solid rgba(24, 21, 18, 0.22);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 6px 6px 0 rgba(24, 21, 18, 0.08);
    text-align: right;
}

.boh-hero-mark-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.boh-hero-mark-link:hover,
.boh-hero-mark-link:focus-visible {
    text-decoration: none;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 rgba(24, 21, 18, 0.14);
    border-color: rgba(245, 102, 0, 0.55);
}

.boh-hero-mark-link:hover .boh-hero-mark__value,
.boh-hero-mark-link:focus-visible .boh-hero-mark__value {
    color: var(--boh-orange);
}

.boh-hero-mark-link:hover .boh-hero-mark__label,
.boh-hero-mark-link:focus-visible .boh-hero-mark__label {
    color: var(--boh-ink);
}

.boh-hero-mark__value {
    display: block;
    color: var(--boh-orange);
    font-family: "Graduate", Georgia, serif;
    font-size: 38px;
    line-height: 1;
}

.boh-hero-mark__label {
    display: block;
    margin-top: 6px;
    color: var(--boh-muted);
    font: 700 11px/1.2 "Courier New", monospace;
    text-transform: uppercase;
}

.boh-alert {
    margin: 22px 32px;
    padding: 16px;
    border: 1px dashed rgba(24, 21, 18, 0.35);
    background: rgba(255, 255, 255, 0.72);
    color: var(--boh-muted);
}

.boh-toolbar {
    display: block;
    gap: 14px;
    align-items: center;
    padding: 18px 32px;
    border-bottom: 1px solid var(--boh-rule);
    background: rgba(255, 255, 255, 0.62);
}

.boh-section .boh-toolbar {
    margin-bottom: 18px;
    padding: 0 0 16px;
    background: transparent;
    border-bottom: 0;
}

.boh-section-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin: 0 0 14px;
}

.boh-section-heading .boh-section-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
}

.boh-section-heading .boh-search {
    flex: 0 1 280px;
    width: auto;
    min-width: 180px;
    max-width: 100%;
}

.boh-search {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(24, 21, 18, 0.26);
    border-radius: 0;
    background: #fff;
    color: var(--boh-ink);
    font: 700 14px/1.2 "Courier New", monospace;
}

.boh-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.boh-filter,
.boh-sort {
    min-height: 38px;
    border: 1px solid rgba(24, 21, 18, 0.24);
    border-radius: 0;
    background: #fff;
    color: var(--boh-ink);
    cursor: pointer;
    font: 700 12px/1.1 "Courier New", monospace;
}

.boh-filter {
    padding: 0 12px;
    text-transform: uppercase;
}

.boh-filter.is-active {
    background: var(--boh-ink);
    color: #fff;
    border-color: var(--boh-ink);
}

.boh-sort {
    padding: 0 28px 0 10px;
}

.boh-section {
    padding: 28px 32px;
}

.boh-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--boh-ink);
    font-family: "Graduate", Georgia, serif;
    font-size: 22px;
    letter-spacing: 0;
}

.boh-section-count {
    color: var(--boh-orange);
    font-family: "Courier New", monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.boh-section-meta {
    color: var(--boh-muted);
    font-family: "Courier New", monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.boh-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(24, 21, 18, 0.28), transparent);
}

.boh-section:has(.boh-era-map) {
    padding-bottom: 16px;
}

.boh-series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 14px;
}

.boh-era-map {
    height: 210px;
    border: 1px solid rgba(24, 21, 18, 0.18);
    background:
        repeating-linear-gradient(90deg, rgba(24, 21, 18, 0.035), rgba(24, 21, 18, 0.035) 1px, transparent 1px, transparent 12px),
        rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.boh-era-map svg {
    display: block;
    width: 100%;
    height: 100%;
}

.boh-era-map text {
    fill: var(--boh-ink);
}

.boh-era-map .boh-era-count {
    font-size: var(--boh-chart-note);
    font-weight: 800;
}

.boh-era-map .boh-era-axis text {
    font-size: var(--boh-chart-note);
    font-weight: 800;
}

.boh-era-map .boh-era-axis--x text {
    cursor: default;
}

.boh-constellation-axis-label {
    cursor: default;
}

.boh-chart--constellation .boh-constellation-axis-title {
    font: 700 var(--boh-chart-axis-title)/1.2 "Courier New", monospace;
    letter-spacing: 0.04em;
}

.boh-era-segment {
    cursor: pointer;
}

.boh-era-empty {
    padding: 28px 14px;
    color: var(--boh-muted);
    font: 700 12px/1.5 "Courier New", monospace;
    text-align: center;
}

.boh-era-map--compact .boh-era-axis--x text {
    font-size: var(--boh-chart-axis);
}

.boh-series-tile {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    min-height: 150px;
    padding: 14px;
    border: 1px solid rgba(24, 21, 18, 0.20);
    border-left: 5px solid var(--boh-accent, var(--boh-orange));
    background: rgba(255, 255, 255, 0.82);
    color: var(--boh-ink);
    text-decoration: none;
    box-shadow: 4px 4px 0 rgba(24, 21, 18, 0.06);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.boh-series-tile:hover,
.boh-series-tile:focus,
.boh-series-tile:visited {
    color: var(--boh-ink);
    text-decoration: none;
}

.boh-series-tile:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(24, 21, 18, 0.10);
}

.boh-logo-frame--series .boh-series-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.boh-logo-frame {
    position: relative;
    display: block;
    flex-shrink: 0;
}

.boh-logo-frame--series {
    width: 54px;
    height: 54px;
}

.boh-logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        var(--boh-accent, var(--boh-orange)) 0%,
        rgba(24, 21, 18, 0.88) 100%
    );
    color: #fff;
    font: 800 22px/1 Georgia, serif;
    text-transform: uppercase;
}

.boh-logo-frame--lockup {
    width: clamp(58px, 9vw, 104px);
    height: clamp(58px, 9vw, 104px);
}

.boh-logo-frame--lockup .boh-logo-fallback {
    border-radius: 14px;
    font-size: clamp(24px, 4vw, 42px);
}

.boh-logo-frame--fallback .boh-logo-fallback {
    display: flex;
}

.boh-logo-frame--fallback .boh-series-logo,
.boh-logo-frame--fallback .boh-lockup-logo {
    display: none;
}

.boh-series-name {
    display: block;
    color: var(--boh-ink);
    font: 700 18px/1.1 Georgia, serif;
}

.boh-series-record {
    display: block;
    margin-top: 4px;
    color: var(--boh-orange);
    font-family: "Graduate", Georgia, serif;
    font-size: 28px;
    line-height: 1;
}

.boh-series-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    grid-column: 1 / -1;
    margin-top: 2px;
    color: var(--boh-muted);
    font: 700 14px/1.2 "Courier New", monospace;
    text-transform: uppercase;
}

.boh-series-sort-stat {
    flex: 1 1 100%;
    color: var(--boh-orange);
    letter-spacing: 0.04em;
}

.boh-series-sort-stat.is-active {
    font-size: 12px;
}

html.dark-mode .boh-series-sort-stat {
    color: var(--dm-text-primary, #f1f5f9);
}

.boh-spark {
    grid-column: 1 / -1;
    width: 100%;
    height: 22px;
    margin-top: 4px;
}

.boh-detail-hero {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px 32px 30px;
    border-bottom: 1px solid var(--boh-rule);
    background:
        linear-gradient(90deg, rgba(245, 102, 0, 0.14), transparent 52%),
        rgba(255, 255, 255, 0.72);
}

.boh-detail-hero__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
}

.boh-detail-hero__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 22px;
    align-items: start;
}

.boh-matchup-lockup {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.boh-logo-frame--lockup .boh-lockup-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(4px 5px 0 rgba(24, 21, 18, 0.12));
}

.boh-lockup-logo {
    object-fit: contain;
}

.boh-vs {
    color: var(--boh-muted);
    font: 700 12px/1 "Courier New", monospace;
    text-transform: uppercase;
}

.boh-detail-title {
    margin: 18px 0 0;
    color: var(--boh-ink);
    font-family: "Graduate", Georgia, serif;
    font-size: clamp(28px, 4.5vw, 52px);
    line-height: 1;
}

.boh-stats-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.boh-stat {
    padding: 12px;
    border: 1px solid rgba(24, 21, 18, 0.18);
    background: rgba(255, 255, 255, 0.76);
}

.boh-stat--school {
    background: linear-gradient(90deg, rgba(245, 102, 0, 0.12) 0%, rgba(255, 255, 255, 0.76) 72%);
    box-shadow: inset 4px 0 0 var(--boh-school, #e96f26);
}

.boh-stat--opponent {
    background: linear-gradient(90deg, color-mix(in srgb, var(--boh-accent, #73000a) 14%, transparent) 0%, rgba(255, 255, 255, 0.76) 72%);
    box-shadow: inset 4px 0 0 var(--boh-accent, #73000a);
}

.boh-stat--tie {
    box-shadow: inset 4px 0 0 #77716a;
}

.boh-stat--school .boh-stat__value {
    color: var(--boh-school, #e96f26);
}

.boh-stat--opponent .boh-stat__value {
    color: var(--boh-accent, #73000a);
}

.boh-stat__label {
    display: block;
    color: var(--boh-muted);
    font: 700 11px/1.1 "Courier New", monospace;
    text-transform: uppercase;
}

.boh-stat__value {
    display: block;
    margin-top: 5px;
    color: var(--boh-ink);
    font-family: "Graduate", Georgia, serif;
    font-size: 25px;
    line-height: 1;
}

.boh-timeline-shell {
    padding: 24px 32px 8px;
    border-bottom: 1px solid var(--boh-rule);
}

.boh-barcode-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    margin-bottom: 12px;
}

.boh-barcode-heading .boh-section-title {
    margin: 0;
    flex: 1 1 auto;
}

.boh-barcode {
    position: relative;
    min-height: 104px;
}

.boh-barcode--bucketed {
    min-height: 112px;
}

.boh-barcode-axis text {
    fill: var(--boh-ink);
    font-size: var(--boh-chart-axis);
    font-weight: 700;
}

.boh-barcode--all {
    padding-top: 92px;
    min-height: 204px;
}

.boh-barcode--all::after {
    content: attr(data-boh-barcode-hint);
    position: absolute;
    top: 72px;
    left: 0;
    color: var(--boh-muted);
    font: 700 var(--boh-chart-axis)/1.2 "Courier New", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.boh-barcode-lens {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 248px;
    padding: 8px 10px 10px;
    border: 1px solid rgba(24, 21, 18, 0.2);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 6px 6px 0 rgba(24, 21, 18, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
}

.boh-barcode--all.is-lens-active .boh-barcode-lens {
    opacity: 1;
}

.boh-barcode-lens__meta {
    margin-bottom: 6px;
    color: var(--boh-terminal);
    font: 700 var(--boh-chart-axis)/1.3 "Courier New", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.boh-barcode-lens__svg {
    display: block;
    width: 100%;
    height: 54px;
}

.boh-barcode-canvas {
    position: relative;
}

.boh-barcode-crosshair {
    stroke: var(--boh-orange);
    stroke-width: 1.5;
    pointer-events: none;
}

.boh-barcode-scrub {
    cursor: crosshair;
}

.boh-streak-summary {
    margin: 0 0 10px;
    padding: 0 14px;
    color: var(--boh-muted);
    font: 700 var(--boh-chart-note)/1.45 "Courier New", monospace;
    letter-spacing: 0.02em;
}

.boh-streak-timeline--lens {
    position: relative;
}

.boh-streak-timeline--all::after {
    content: attr(data-boh-streak-hint);
    position: absolute;
    top: 58px;
    left: 0;
    color: var(--boh-muted);
    font: 700 var(--boh-chart-axis)/1.2 "Courier New", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.boh-streak-lens {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 280px;
    padding: 8px 10px 10px;
    border: 1px solid rgba(24, 21, 18, 0.2);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 6px 6px 0 rgba(24, 21, 18, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
}

.boh-streak-timeline--lens.is-lens-active .boh-streak-lens {
    opacity: 1;
}

.boh-streak-timeline--lens.is-lens-frozen .boh-streak-lens {
    pointer-events: auto;
    box-shadow: 6px 6px 0 rgba(24, 21, 18, 0.08), 0 0 0 1px var(--boh-orange);
}

.boh-streak-lens__meta {
    color: var(--boh-ink);
    font: 700 var(--boh-chart-axis)/1.3 "Courier New", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.boh-streak-lens__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.boh-streak-lens__steps {
    display: inline-flex;
    gap: 3px;
}

.boh-streak-lens__steps button {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(24, 21, 18, 0.22);
    background: rgba(255, 255, 255, 0.92);
    color: var(--boh-ink);
    font: 700 var(--boh-chart-axis)/1 "Courier New", monospace;
    cursor: pointer;
}

.boh-streak-lens__steps button:hover {
    background: var(--boh-ink);
    color: #fff;
}

.boh-streak-lens__svg {
    display: block;
    width: 100%;
    height: 58px;
}

.boh-streak-lens__svg .boh-streak-lens-focus,
.boh-streak-lens__svg .boh-streak-lens-focus-ring,
.boh-streak-lens__svg .boh-streak-lens-streak-band {
    pointer-events: none;
}

.boh-streak-canvas {
    position: relative;
}

.boh-streak-crosshair {
    stroke: var(--boh-orange);
    stroke-width: 1.5;
    pointer-events: none;
}

.boh-streak-scrub {
    cursor: crosshair;
}

.boh-chart-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(24, 21, 18, 0.14);
}

.boh-chart-heading .boh-chart-title {
    padding: 0;
    border-bottom: 0;
}

.boh-chart-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.boh-chart-toggle {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(24, 21, 18, 0.24);
    border-radius: 0;
    background: #fff;
    color: var(--boh-ink);
    cursor: pointer;
    font: 700 var(--boh-chart-note)/1.1 "Courier New", monospace;
    text-transform: uppercase;
}

.boh-chart-toggle.is-active {
    background: var(--boh-ink);
    color: #fff;
    border-color: var(--boh-ink);
}

.boh-chart-caption {
    margin-left: auto;
    max-width: 460px;
    color: var(--boh-muted);
    font: 700 var(--boh-chart-axis)/1.5 "Courier New", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: right;
}

.boh-chart-panel--constellation-sparse .boh-chart-heading .boh-chart-caption {
    display: none;
}

.boh-chart-footnote {
    margin: 0;
    padding: 8px 14px 14px;
    color: var(--boh-muted);
    font: 700 var(--boh-chart-note)/1.55 "Courier New", monospace;
}

.boh-chart--streak {
    min-height: 0;
    height: auto;
}

.boh-chart--streak svg {
    display: block;
}

.boh-chart--constellation {
    min-height: 0;
    height: auto;
    padding: 10px 8px 4px;
}

.boh-chart--constellation svg,
.boh-chart--grudge svg {
    display: block;
}

.boh-chart--grudge {
    min-height: 300px;
    padding: 4px 8px 0;
}

.boh-chart-panel--compare-deferred {
    opacity: 0.42;
    filter: grayscale(0.25);
    pointer-events: none;
    user-select: none;
}

.boh-chart-panel--compare-deferred .boh-chart-title::after {
    content: " · Unavailable in coach compare";
    color: var(--boh-muted);
    font-weight: 700;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 0.02em;
    text-transform: none;
}

.boh-chart-panel--compare-deferred .boh-chart-caption,
.boh-chart-panel--compare-deferred .boh-chart-footnote,
.boh-chart-panel--compare-deferred .boh-chart-scope {
    display: none;
}

.boh-chart-panel--compare-deferred .boh-chart--grudge {
    min-height: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
}

.boh-grudge-trace {
    filter: drop-shadow(0 0 3px rgba(245, 102, 0, 0.55));
}

.boh-constellation-empty {
    padding: 28px 14px;
    color: var(--boh-muted);
    font: 700 var(--boh-chart-note)/1.5 "Courier New", monospace;
    text-align: center;
}

.boh-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.boh-chart-panel {
    min-width: 0;
    border: 1px solid rgba(24, 21, 18, 0.18);
    background: rgba(255, 255, 255, 0.78);
}

.boh-chart-panel--wide {
    grid-column: 1 / -1;
}

.boh-chart-title {
    margin: 0;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(24, 21, 18, 0.14);
    color: var(--boh-ink);
    font: 700 var(--boh-chart-heading)/1.1 "Courier New", monospace;
    text-transform: uppercase;
}

.boh-chart-scope {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border: 1px solid rgba(24, 21, 18, 0.14);
    background: rgba(24, 21, 18, 0.06);
    color: var(--boh-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    vertical-align: middle;
}

.boh-chart {
    width: 100%;
    min-height: 300px;
}

.boh-chart--streak,
.boh-chart--constellation {
    min-height: 0;
    height: auto;
}

.boh-chart--short {
    min-height: 210px;
}

.boh-extremes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px 20px;
    --boh-extreme-opponent: var(--boh-loss);
}

.boh-extremes__side-label {
    display: block;
    margin-bottom: 8px;
    color: var(--boh-muted);
    font: 700 var(--boh-chart-note)/1.1 "Courier New", monospace;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.boh-extremes__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.boh-extreme {
    padding: 14px 12px 12px;
    border: 1px solid rgba(24, 21, 18, 0.18);
    background: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.boh-extreme__label {
    display: block;
    color: var(--boh-ink);
    font: 700 11px/1.2 "Courier New", monospace;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.boh-extreme__value {
    display: block;
    margin-top: 8px;
    font-family: "Graduate", Georgia, serif;
    font-size: 34px;
    line-height: 1;
}

.boh-extreme--school .boh-extreme__value {
    color: var(--boh-orange);
}

.boh-extreme--opponent .boh-extreme__value {
    color: var(--boh-extreme-opponent, var(--boh-loss));
}

.boh-extreme__detail {
    display: block;
    margin-top: 6px;
    color: var(--boh-muted);
    font-size: 13px;
}

@media (max-width: 760px) {
    .boh-extremes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .boh-extremes__cards {
        grid-template-columns: 1fr;
    }
}

.boh-signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 12px;
}

.boh-signature {
    padding: 13px;
    border: 1px solid rgba(24, 21, 18, 0.18);
    background: rgba(255, 255, 255, 0.78);
}

.boh-signature__label {
    display: block;
    color: var(--boh-color1, var(--boh-orange));
    font: 700 var(--boh-chart-note)/1.1 "Courier New", monospace;
    text-transform: uppercase;
}

.boh-signature__score {
    display: block;
    margin-top: 8px;
    color: var(--boh-ink);
    font-family: "Graduate", Georgia, serif;
    font-size: 23px;
}

.boh-signature__score--win {
    color: var(--boh-win);
}

.boh-signature__score--loss {
    color: var(--boh-loss);
}

.boh-signature__score--tie {
    color: var(--boh-tie);
}

.boh-signature__meta {
    display: block;
    margin-top: 3px;
    color: var(--boh-muted);
    font-size: 13px;
}

.boh-last-scoreboard {
    --boh-scoreboard-school: #e96f26;
    --boh-scoreboard-opponent: #6b6257;
    position: relative;
    overflow-x: auto;
    border: 1px solid rgba(24, 21, 18, 0.18);
    background: rgba(255, 255, 255, 0.78);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.boh-scoreboard-view-link {
    flex: 0 0 auto;
    font-family: "Courier New", monospace;
    font-size: 13px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.boh-scoreboard-hit {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.boh-last-scoreboard--linked {
    cursor: pointer;
}

.boh-last-scoreboard--linked:hover,
.boh-last-scoreboard--linked:focus-within {
    border-color: rgba(24, 21, 18, 0.42);
    box-shadow: 0 4px 16px rgba(24, 21, 18, 0.1);
}

.boh-scoreboard-row td:first-child {
    font-family: "Graduate", Georgia, serif;
    font-size: 15px;
}

.boh-scoreboard-row:not(.boh-scoreboard-row--winner) {
    opacity: 0.72;
}

.boh-scoreboard-row--winner {
    opacity: 1;
}

.boh-scoreboard-row--winner.boh-scoreboard-row--school td {
    background: linear-gradient(90deg, rgba(245, 102, 0, 0.16) 0%, rgba(245, 102, 0, 0.05) 58%, transparent 100%);
}

.boh-scoreboard-row--winner.boh-scoreboard-row--opponent td {
    background: linear-gradient(90deg, color-mix(in srgb, var(--boh-scoreboard-opponent, #73000a) 18%, transparent) 0%, transparent 58%);
}

.boh-scoreboard-row--winner.boh-scoreboard-row--school td:first-child {
    box-shadow: inset 5px 0 0 var(--boh-scoreboard-school, #e96f26);
    color: var(--boh-scoreboard-school, #e96f26);
}

.boh-scoreboard-row--winner.boh-scoreboard-row--opponent td:first-child {
    box-shadow: inset 5px 0 0 var(--boh-scoreboard-opponent, #73000a);
    color: var(--boh-scoreboard-opponent, #73000a);
}

.boh-scoreboard-row--winner td:last-child strong {
    display: inline-flex;
    min-width: 2.1em;
    align-items: center;
    justify-content: center;
    padding: 5px 11px;
    border-radius: 999px;
    color: #fff;
    font-family: "Graduate", Georgia, serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.boh-scoreboard-row--winner.boh-scoreboard-row--school td:last-child strong {
    background-color: var(--boh-scoreboard-school, #e96f26);
    background-image: linear-gradient(135deg, var(--boh-scoreboard-school, #e96f26), #ff8a33);
    box-shadow: 0 3px 12px rgba(245, 102, 0, 0.38);
}

.boh-scoreboard-row--winner.boh-scoreboard-row--opponent td:last-child strong {
    background-color: var(--boh-scoreboard-opponent, #73000a);
    background-image: linear-gradient(135deg, var(--boh-scoreboard-opponent, #73000a), color-mix(in srgb, var(--boh-scoreboard-opponent, #73000a) 72%, #000));
    box-shadow: 0 3px 12px color-mix(in srgb, var(--boh-scoreboard-opponent, #73000a) 38%, transparent);
}

.boh-last-scoreboard--tie .boh-scoreboard-row {
    opacity: 1;
}

.boh-last-scoreboard--tie .boh-scoreboard-row--school td {
    background: linear-gradient(90deg, rgba(245, 102, 0, 0.12) 0%, transparent 55%);
}

.boh-last-scoreboard--tie .boh-scoreboard-row--school td:first-child {
    box-shadow: inset 5px 0 0 var(--boh-scoreboard-school, #e96f26);
}

.boh-last-scoreboard--tie .boh-scoreboard-row--opponent td {
    background: linear-gradient(90deg, rgba(119, 113, 106, 0.12) 0%, transparent 55%);
}

.boh-last-scoreboard--tie .boh-scoreboard-row--opponent td:first-child {
    box-shadow: inset 5px 0 0 var(--boh-scoreboard-opponent, #77716a);
}

.boh-last-scoreboard--tie .boh-scoreboard-row--winner td:last-child strong {
    background: linear-gradient(135deg, #77716a, #9a9289);
    box-shadow: 0 3px 10px rgba(119, 113, 106, 0.28);
}

.boh-table-scroll {
    max-height: clamp(320px, 55vh, 560px);
    overflow: auto;
    border: 1px solid rgba(24, 21, 18, 0.18);
    background: rgba(255, 255, 255, 0.78);
    -webkit-overflow-scrolling: touch;
}

.boh-scoreboard-table,
.boh-history-table {
    width: 100%;
    border-collapse: collapse;
}

.boh-scoreboard-table th,
.boh-scoreboard-table td,
.boh-history-table th,
.boh-history-table td {
    padding: 11px 12px;
    border-bottom: 1px solid rgba(24, 21, 18, 0.12);
    text-align: left;
    vertical-align: middle;
}

.boh-scoreboard-table th,
.boh-history-table th {
    background: var(--boh-ink);
    color: #fff;
    text-transform: uppercase;
}

.boh-scoreboard-table th {
    font: 700 14px/1.2 "Courier New", monospace;
}

.boh-history-table th {
    font: 700 11px/1.1 "Courier New", monospace;
}

.boh-history-table th[data-sort] {
    padding: 0;
}

.boh-th-sort {
    display: flex;
    align-items: center;
    gap: 0.35em;
    width: 100%;
    margin: 0;
    padding: 11px 12px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    text-align: left;
    cursor: pointer;
}

.boh-th-sort::after {
    content: "\2195";
    opacity: 0.45;
    font-size: 0.95em;
    line-height: 1;
}

.boh-history-table th[aria-sort="ascending"] .boh-th-sort::after {
    content: "\25B2";
    opacity: 1;
}

.boh-history-table th[aria-sort="descending"] .boh-th-sort::after {
    content: "\25BC";
    opacity: 1;
}

.boh-th-sort:hover {
    background: rgba(255, 255, 255, 0.08);
}

.boh-th-sort:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: -2px;
    background: rgba(255, 255, 255, 0.08);
}

html.dark-mode .boh-th-sort:hover {
    background: rgba(0, 0, 0, 0.12);
}

html.dark-mode .boh-th-sort:focus-visible {
    outline-color: rgba(17, 17, 17, 0.85);
    background: rgba(0, 0, 0, 0.12);
}

.boh-history-table th:nth-child(1),
.boh-history-table td:nth-child(1),
.boh-history-table th:nth-child(2),
.boh-history-table td:nth-child(2),
.boh-history-table th:nth-child(3),
.boh-history-table td:nth-child(3) {
    white-space: nowrap;
}

.boh-history-table th:nth-child(2),
.boh-history-table td:nth-child(2) {
    width: 4.75rem;
}

.boh-history-table th:nth-child(3),
.boh-history-table td:nth-child(3) {
    width: 4.5rem;
}

.boh-history-table th:nth-child(4),
.boh-history-table td:nth-child(4) {
    min-width: 10rem;
    max-width: 18rem;
}

.boh-history-table th:nth-child(7),
.boh-history-table td:nth-child(7) {
    white-space: nowrap;
    width: 4.25rem;
    text-align: right;
}

.boh-history-table--with-event th:nth-child(5),
.boh-history-table--with-event td:nth-child(5) {
    width: 1%;
    white-space: nowrap;
}

.boh-history-table--with-event th:nth-child(7),
.boh-history-table--with-event td:nth-child(7) {
    white-space: normal;
    width: auto;
    text-align: left;
}

.boh-history-table--with-event th:nth-child(8),
.boh-history-table--with-event td:nth-child(8) {
    white-space: nowrap;
    width: 4.25rem;
    text-align: right;
}

.boh-table-scroll .boh-history-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    box-shadow: 0 1px 0 rgba(24, 21, 18, 0.18);
}

.boh-table-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.boh-table-tools input#boh-game-search {
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 320px;
}

.boh-table-tools select#boh-result-filter,
.boh-table-tools select#boh-site-filter,
.boh-table-tools select#boh-conference-filter,
.boh-table-tools select#boh-postseason-filter,
.boh-table-tools select#boh-ranked-filter {
    flex: 0 0 112px;
}

.boh-table-tools select#boh-venue-filter,
.boh-table-tools select#boh-coach-filter {
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
}

.boh-table-tools input,
.boh-table-tools select {
    height: 40px;
    border: 1px solid rgba(24, 21, 18, 0.22);
    background: #fff;
    color: var(--boh-ink);
    font: 700 12px/1.1 "Courier New", monospace;
}

.boh-analysis-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
    margin-bottom: 22px;
    padding: 20px 22px 18px;
    border: 1px solid rgba(24, 21, 18, 0.2);
    border-left: 4px solid var(--boh-orange);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 4px 4px 0 rgba(24, 21, 18, 0.06);
}

.boh-analysis-scope__controls {
    display: grid;
    grid-template-columns: max-content fit-content(560px) minmax(180px, 1fr);
    gap: 12px 12px;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    width: 100%;
}

.boh-analysis-scope__header {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}

.boh-analysis-scope__heading {
    margin: 0;
    color: var(--boh-ink);
    font-family: "Graduate", Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: none;
}

.boh-analysis-scope__share {
    flex: 0 0 auto;
    height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(24, 21, 18, 0.24);
    background: #fff;
    color: var(--boh-ink);
    font: 700 11px/1 "Courier New", monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.boh-analysis-scope__share:hover,
.boh-analysis-scope__share:focus {
    border-color: var(--boh-orange);
    outline: none;
}

.boh-analysis-scope__share.is-copied {
    border-color: var(--boh-orange);
    color: var(--boh-orange);
}

.boh-analysis-scope__compare-label {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    margin: 0;
    color: var(--boh-muted);
    font: 700 12px/1.2 "Courier New", monospace;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.boh-analysis-scope__controls select {
    min-width: 0;
    width: auto;
    max-width: 100%;
    justify-self: start;
    height: 48px;
    border: 1px solid rgba(24, 21, 18, 0.24);
    background: #fff;
    color: var(--boh-ink);
    font: 700 15px/1.2 "Courier New", monospace;
}

.boh-analysis-scope__type {
    grid-column: 1;
    grid-row: 2;
    max-width: 152px;
}

.boh-analysis-scope__value {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    min-inline-size: 14ch;
}

.boh-analysis-scope__compare {
    grid-column: 3;
    grid-row: 2;
    min-width: 0;
    min-inline-size: 16ch;
}

.boh-analysis-scope__controls select[hidden] {
    display: none;
}

.boh-analysis-scope__controls label[hidden] {
    display: none;
}

.boh-analysis-summary,
.boh-table-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--boh-muted);
    font: 700 12px/1.2 "Courier New", monospace;
}

.boh-analysis-summary {
    flex: 1 0 100%;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-top: 16px;
    margin-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(24, 21, 18, 0.2);
    font-size: 15px;
    line-height: 1.35;
}

.boh-table-summary {
    margin: -2px 0 12px;
}

.boh-analysis-summary strong,
.boh-table-summary strong {
    color: var(--boh-ink);
    font-size: 13px;
}

.boh-analysis-summary strong {
    font-size: 18px;
}

.boh-analysis-summary span,
.boh-table-summary span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 5px 8px;
    border: 1px solid rgba(24, 21, 18, 0.12);
    background: rgba(255, 255, 255, 0.64);
}

.boh-analysis-summary span {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 14px;
}

.boh-analysis-summary--compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.boh-analysis-summary__group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(24, 21, 18, 0.14);
    border-left: 4px solid var(--boh-coach-accent, var(--boh-orange));
    background: rgba(255, 255, 255, 0.58);
}

.boh-analysis-summary__group strong {
    flex: 1 0 100%;
}

.boh-analysis-summary__group span.is-winning-stat {
    border-color: var(--boh-coach-accent, var(--boh-orange));
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
        linear-gradient(var(--boh-coach-accent, var(--boh-orange)), var(--boh-coach-accent, var(--boh-orange)));
    color: var(--boh-ink);
}

.boh-compare-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    margin: 0 0 10px;
    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 700;
    color: #181512;
}

.boh-compare-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.boh-compare-legend__swatch {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.boh-compare-legend__item--key {
    gap: 8px;
    color: #6b6257;
    font-weight: 700;
}

.boh-compare-legend__swatch--solid {
    background: #181512;
    border-radius: 2px;
}

.boh-compare-legend__swatch--tint {
    background: rgba(24, 21, 18, 0.35);
    border-radius: 2px;
}

.boh-points-pulse-compare__chart {
    width: 100%;
    min-height: 280px;
}

.boh-streak-summary__coach {
    display: block;
    margin: 0 0 4px;
    padding-left: 8px;
    border-left: 3px solid var(--boh-coach-accent, var(--boh-orange));
    color: #181512;
    font-size: 12px;
    line-height: 1.35;
}

.boh-streak-summary__coach strong {
    margin-right: 4px;
}

.boh-constellation-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.boh-decade-heatmap-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.boh-decade-heatmap-compare__pane {
    min-width: 0;
}

.boh-decade-heatmap-compare__label {
    margin: 0 0 8px;
    padding-left: 8px;
    border-left: 3px solid var(--boh-coach-accent, var(--boh-orange));
    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 700;
    color: #181512;
}

.boh-decade-heatmap-compare__label span {
    font-weight: 400;
    color: #6b6257;
}

.boh-decade-heatmap-compare__chart {
    min-height: 260px;
}

.boh-decade-heatmap--compare {
    min-height: 0;
}

.boh-constellation-compare__pane {
    min-width: 0;
}

.boh-constellation-compare__label {
    margin: 0 0 8px;
    padding-left: 8px;
    border-left: 3px solid var(--boh-coach-accent, var(--boh-orange));
    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 700;
    color: #181512;
}

.boh-constellation-compare__label span {
    font-weight: 400;
    color: #6b6257;
}

.boh-chart-panel--constellation-compare .boh-chart--constellation {
    min-height: 0;
}

.boh-barcode--compare {
    min-height: 150px;
}

.boh-streak-timeline--compare {
    min-height: 180px;
}

.boh-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.boh-split-scroll {
    position: relative;
}

.boh-split-scroll.is-scrollable:not(.is-scrolled-end) .boh-split-list {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 32px), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 32px), transparent 100%);
}

.boh-split-list {
    display: grid;
    gap: 8px;
    max-height: 360px;
    overflow: auto;
    padding-right: 4px;
    scrollbar-gutter: stable;
}

.boh-split-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(24, 21, 18, 0.16);
    background: rgba(255, 255, 255, 0.76);
    color: var(--boh-ink);
    text-align: left;
    cursor: pointer;
    transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.boh-split-card:hover,
.boh-split-card:focus-visible {
    transform: translate(-2px, -2px);
    border-color: rgba(245, 102, 0, 0.62);
    box-shadow: 4px 4px 0 rgba(245, 102, 0, 0.2);
    outline: none;
}

.boh-split-card__label,
.boh-split-card__record {
    font: 700 13px/1.2 "Courier New", monospace;
}

.boh-split-card__label {
    min-width: 0;
    overflow-wrap: anywhere;
}

.boh-split-card__record {
    font-weight: 700;
}

.boh-split-card__record--win {
    color: var(--boh-win);
}

.boh-split-card__record--loss {
    color: var(--boh-loss);
}

.boh-split-card__record--tie {
    color: var(--boh-tie);
}

.boh-split-card__meta {
    grid-column: 1 / -1;
    color: var(--boh-muted);
    font: 700 11px/1.3 "Courier New", monospace;
}

.boh-split-empty,
.boh-chart-empty {
    padding: 18px;
    border: 1px dashed rgba(24, 21, 18, 0.2);
    color: var(--boh-muted);
    font: 700 12px/1.4 "Courier New", monospace;
}

.boh-result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 24px;
    border: 1px solid rgba(24, 21, 18, 0.18);
    color: #fff;
    font: 700 13px/1 "Courier New", monospace;
}

.boh-result--win {
    background: var(--boh-win);
}

.boh-result--loss {
    background: var(--boh-loss);
}

.boh-result--tie {
    background: var(--boh-tie);
}

.boh-link {
    color: var(--boh-terminal);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.boh-empty {
    padding: 24px;
    border: 1px dashed rgba(24, 21, 18, 0.32);
    background: rgba(255, 255, 255, 0.72);
    color: var(--boh-muted);
}

.boh-tooltip {
    position: fixed;
    z-index: 10000;
    max-width: 250px;
    padding: 9px 10px;
    border: 1px solid rgba(24, 21, 18, 0.24);
    background: #fffdf8;
    color: var(--boh-ink);
    box-shadow: 5px 5px 0 rgba(24, 21, 18, 0.10);
    font: 700 var(--boh-chart-note)/1.35 "Courier New", monospace;
    pointer-events: none;
}

.boh-tooltip:has(.boh-era-tip__head) {
    max-width: 340px;
    padding: 10px 12px;
}

.boh-era-tip__head {
    display: block;
    margin-bottom: 5px;
    color: var(--boh-ink);
    font: 700 16px/1.1 Georgia, "Times New Roman", serif;
}

.boh-era-tip__line {
    display: block;
    margin-bottom: 3px;
}

.boh-era-tip__teams {
    display: block;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(24, 21, 18, 0.12);
    color: var(--boh-muted);
    font-weight: 400;
    font-size: var(--boh-chart-note);
    line-height: 1.45;
}

html.dark-mode .boh-archive {
    --boh-ink: var(--dm-text-primary);
    --boh-paper: #201c18;
    --boh-paper-2: #2a241f;
    --boh-rule: rgba(255, 255, 255, 0.16);
    --boh-muted: var(--dm-text-secondary);
    color: var(--dm-text-primary);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #201c18;
}

html.dark-mode .boh-hero,
html.dark-mode .boh-detail-hero,
html.dark-mode .boh-toolbar {
    background-color: rgba(255, 255, 255, 0.04);
}

html.dark-mode .boh-analysis-scope {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    border-left-color: var(--boh-orange);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.22);
}

html.dark-mode .boh-analysis-summary {
    border-top-color: rgba(255, 255, 255, 0.14);
}

html.dark-mode .boh-analysis-scope__controls label {
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-analysis-scope__share {
    background: var(--dm-bg-elevated, #1e293b);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-analysis-scope__share:hover,
html.dark-mode .boh-analysis-scope__share:focus,
html.dark-mode .boh-analysis-scope__share.is-copied {
    border-color: var(--boh-orange);
    color: var(--boh-orange);
}

html.dark-mode .boh-back {
    color: var(--dm-text-primary, #f1f5f9);
    border-color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-back:hover,
html.dark-mode .boh-back:focus-visible {
    background: var(--dm-text-primary, #f1f5f9);
    color: #111;
    border-color: var(--dm-text-primary, #f1f5f9);
    text-shadow: none;
}

html.dark-mode .boh-title-link:hover,
html.dark-mode .boh-title-link:focus-visible {
    color: var(--boh-orange);
    text-shadow: 4px 4px 0 rgba(245, 102, 0, 0.22);
}

html.dark-mode .boh-hero-mark-link:hover,
html.dark-mode .boh-hero-mark-link:focus-visible {
    border-color: rgba(245, 102, 0, 0.65);
    box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.35);
}

html.dark-mode .boh-hero-mark-link:hover .boh-hero-mark__label,
html.dark-mode .boh-hero-mark-link:focus-visible .boh-hero-mark__label {
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-loading {
    background:
        linear-gradient(180deg, rgba(24, 21, 18, 0.88), rgba(24, 21, 18, 0.96)),
        var(--dm-bg-elevated, #221a30);
}

html.dark-mode .boh-loading__card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.22);
}

html.dark-mode .boh-loading__label {
    color: var(--dm-text-secondary, #e2e2e2);
}

html.dark-mode .boh-barcode-lens {
    background: rgba(34, 26, 48, 0.96);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.28);
}

html.dark-mode .boh-streak-summary,
html.dark-mode .boh-chart-caption,
html.dark-mode .boh-chart-footnote,
html.dark-mode .boh-constellation-empty {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-streak-lens {
    background: rgba(34, 26, 48, 0.96);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.28);
}

html.dark-mode .boh-streak-lens__steps button {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.92);
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-streak-lens__steps button:hover {
    background: var(--dm-text-primary, #f1f5f9);
    color: #111827;
}

html.dark-mode .boh-streak-timeline--all::after {
    color: var(--dm-text-muted, #a0a0a0);
}

html.dark-mode .boh-barcode--all::after {
    color: var(--dm-text-muted, #a0a0a0);
}

html.dark-mode .boh-barcode-axis text {
    fill: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-hero-mark,
html.dark-mode .boh-alert,
html.dark-mode .boh-series-tile,
html.dark-mode .boh-stat,
html.dark-mode .boh-era-map,
html.dark-mode .boh-chart-panel,
html.dark-mode .boh-signature,
html.dark-mode .boh-extreme,
html.dark-mode .boh-last-scoreboard,
html.dark-mode .boh-empty {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

html.dark-mode .boh-extremes__side-label,
html.dark-mode .boh-extreme__label {
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-extreme__detail {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-last-scoreboard--linked:hover,
html.dark-mode .boh-last-scoreboard--linked:focus-within {
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

html.dark-mode .boh-chart-panel--compare-deferred {
    opacity: 0.38;
}

html.dark-mode .boh-chart-panel--compare-deferred .boh-chart-title::after {
    color: var(--dm-text-muted, #a0a0a0);
}

html.dark-mode .boh-stat--school {
    background: linear-gradient(90deg, rgba(245, 102, 0, 0.18) 0%, rgba(255, 255, 255, 0.06) 72%);
}

html.dark-mode .boh-stat--opponent {
    background: linear-gradient(90deg, color-mix(in srgb, var(--boh-accent, #73000a) 22%, transparent) 0%, rgba(255, 255, 255, 0.06) 72%);
}

html.dark-mode .boh-stat--school .boh-stat__value {
    color: #ffb066;
}

html.dark-mode .boh-stat--opponent .boh-stat__value {
    color: color-mix(in srgb, var(--boh-accent, #73000a) 68%, #fff);
}

html.dark-mode .boh-table-scroll {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

html.dark-mode .boh-search,
html.dark-mode .boh-filter,
html.dark-mode .boh-sort,
html.dark-mode .boh-chart-toggle,
html.dark-mode .boh-analysis-scope__controls select,
html.dark-mode .boh-table-tools input,
html.dark-mode .boh-table-tools select {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--dm-text-primary);
}

html.dark-mode .boh-filter.is-active,
html.dark-mode .boh-chart-toggle.is-active,
html.dark-mode .boh-scoreboard-table th,
html.dark-mode .boh-history-table th {
    background: #e96f26;
    color: #111;
}

html.dark-mode .boh-scoreboard-row:not(.boh-scoreboard-row--winner) {
    opacity: 0.58;
}

html.dark-mode .boh-scoreboard-row--winner.boh-scoreboard-row--school td {
    background: linear-gradient(90deg, rgba(245, 102, 0, 0.24) 0%, rgba(245, 102, 0, 0.07) 58%, transparent 100%);
}

html.dark-mode .boh-scoreboard-row--winner.boh-scoreboard-row--opponent td {
    background: linear-gradient(90deg, color-mix(in srgb, var(--boh-scoreboard-opponent, #73000a) 32%, transparent) 0%, transparent 58%);
}

html.dark-mode .boh-scoreboard-row--winner.boh-scoreboard-row--school td:first-child {
    color: #ffb066;
}

html.dark-mode .boh-scoreboard-row--winner.boh-scoreboard-row--opponent td:first-child {
    color: color-mix(in srgb, var(--boh-scoreboard-opponent, #73000a) 68%, #fff);
}

html.dark-mode .boh-table-scroll .boh-history-table thead th {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
}

html.dark-mode .boh-tooltip {
    background: #241f1a;
    color: var(--dm-text-primary);
    border-color: rgba(255, 255, 255, 0.18);
}

html.dark-mode .boh-chart-scope {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-section-meta {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-era-map text {
    fill: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-era-empty {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-analysis-summary,
html.dark-mode .boh-table-summary,
html.dark-mode .boh-split-card__meta,
html.dark-mode .boh-split-empty,
html.dark-mode .boh-chart-empty {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-analysis-scope__compare-label {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-analysis-summary strong,
html.dark-mode .boh-table-summary strong,
html.dark-mode .boh-split-card {
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-analysis-summary span,
html.dark-mode .boh-table-summary span,
html.dark-mode .boh-split-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

html.dark-mode .boh-analysis-summary__group {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
}

html.dark-mode .boh-analysis-summary__group span.is-winning-stat {
    border-color: var(--boh-coach-accent, var(--boh-orange));
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.72)),
        linear-gradient(var(--boh-coach-accent, var(--boh-orange)), var(--boh-coach-accent, var(--boh-orange)));
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-compare-legend,
html.dark-mode .boh-streak-summary__coach,
html.dark-mode .boh-constellation-compare__label,
html.dark-mode .boh-decade-heatmap-compare__label {
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-compare-legend__item--key {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-compare-legend__swatch--solid {
    background: #f1f5f9;
}

html.dark-mode .boh-compare-legend__swatch--tint {
    background: rgba(241, 245, 249, 0.35);
}

html.dark-mode .boh-constellation-compare__label span,
html.dark-mode .boh-decade-heatmap-compare__label span {
    color: var(--dm-text-secondary, #bbb);
}

html.dark-mode .boh-split-card:hover,
html.dark-mode .boh-split-card:focus-visible {
    border-color: rgba(245, 102, 0, 0.68);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.32);
}

html.dark-mode .boh-era-tip__head {
    color: var(--dm-text-primary, #f1f5f9);
}

html.dark-mode .boh-era-tip__teams {
    color: var(--dm-text-secondary, #bbb);
    border-top-color: rgba(255, 255, 255, 0.12);
}

.boh-venue-unconfirmed {
    color: var(--boh-muted);
    font-size: 0.92em;
}

html.dark-mode .boh-venue-unconfirmed {
    color: var(--dm-text-secondary, #bbb);
}

.boh-event-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(82, 45, 128, 0.1);
    color: #522d80;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
    vertical-align: middle;
}

html.dark-mode .boh-event-badge {
    background: rgba(241, 245, 249, 0.08);
    color: var(--dm-text-secondary, #e2e2e2);
}

@media (max-width: 820px) {
    .boh-hero,
    .boh-detail-hero,
    .boh-toolbar {
        padding: 24px 18px;
    }

    .boh-detail-hero__body,
    .boh-toolbar {
        grid-template-columns: 1fr;
    }

    .boh-section-heading {
        flex-direction: column;
        align-items: stretch;
    }

    .boh-section-heading .boh-search {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }

    .boh-section .boh-toolbar {
        grid-template-columns: 1fr;
        padding: 0 0 16px;
    }

    .boh-analysis-scope {
        flex-direction: column;
        align-items: stretch;
    }

    .boh-analysis-scope__controls {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    .boh-analysis-scope__controls label,
    .boh-analysis-scope__header,
    .boh-analysis-scope__heading,
    .boh-analysis-scope__compare-label {
        grid-column: auto;
        grid-row: auto;
    }

    .boh-analysis-scope__type,
    .boh-analysis-scope__value,
    .boh-analysis-scope__compare {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        max-width: none;
    }

    .boh-analysis-summary--compare {
        grid-template-columns: 1fr;
    }

    .boh-constellation-compare {
        grid-template-columns: 1fr;
    }

    .boh-decade-heatmap-compare {
        grid-template-columns: 1fr;
    }

    .boh-analysis-summary {
        width: 100%;
        min-width: 0;
        padding-left: 0;
        margin-left: 0;
        border-left: 0;
        padding-top: 12px;
        border-top: 1px solid rgba(24, 21, 18, 0.16);
    }

    .boh-split-grid {
        grid-template-columns: 1fr;
    }

    .boh-table-tools {
        align-items: stretch;
    }

    .boh-table-tools input#boh-game-search,
    .boh-table-tools select#boh-result-filter,
    .boh-table-tools select#boh-site-filter,
    .boh-table-tools select#boh-venue-filter,
    .boh-table-tools select#boh-coach-filter,
    .boh-table-tools select#boh-conference-filter,
    .boh-table-tools select#boh-postseason-filter,
    .boh-table-tools select#boh-ranked-filter {
        flex: 1 1 100%;
        width: 100%;
    }

    .boh-hero-mark {
        text-align: left;
    }

    .boh-section,
    .boh-timeline-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .boh-controls {
        justify-content: flex-start;
    }

    .boh-chart-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 560px) {
    .boh-archive {
        border-left: 0;
        border-right: 0;
    }

    .boh-series-grid {
        grid-template-columns: 1fr;
    }

    .boh-stats-band {
        grid-template-columns: 1fr;
    }

    .boh-matchup-lockup {
        gap: 10px;
    }

    .boh-chart {
        min-height: 250px;
    }
}
