:root {
    --black: #080808;
    --panel: #111111;
    --panel-2: #171717;
    --line: #303030;
    --white: #f5f5f5;
    --muted: #929292;

    --red: #d71920;
    --red-dark: #7d0d12;
    --yellow: #ffc400;
    --yellow-soft: #ffe36a;

    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 80% 0%, rgba(215,25,32,.09), transparent 28rem),
        var(--black);
    color: var(--white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button {
    font: inherit;
}

.site-header {
    min-height: 92px;
    padding: 18px 4vw;
    border-bottom: 1px solid var(--line);
    background: rgba(8,8,8,.94);

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;

    background: var(--red);
    border: 2px solid var(--yellow);
    border-radius: 50%;

    color: white;
    font-size: 1.35rem;
    font-weight: 900;
}

.brand h1 {
    margin: 0;
    letter-spacing: .12em;
    font-size: 1.2rem;
}

.brand p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .78rem;
}

.network-selector {
    padding: 5px;
    display: flex;
    gap: 5px;

    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.network-button,
.time-selector button {
    border: 0;
    cursor: pointer;
}

.network-button {
    min-width: 70px;
    padding: 10px 20px;
    border-radius: 999px;

    background: transparent;
    color: var(--muted);
    font-weight: 800;
}

.network-button.active {
    background: var(--yellow);
    color: #000;
}

.pool-status {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 12px rgba(255,196,0,.7);
}

.dashboard {
    width: min(1440px, 94vw);
    margin: 0 auto;
    padding: 38px 0 70px;
}

.network-hero {
    min-height: 205px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(110deg, rgba(215,25,32,.20), transparent 42%),
        var(--panel);

    border: 1px solid var(--line);
    border-left: 5px solid var(--red);
    border-radius: var(--radius);
}

.eyebrow {
    color: var(--yellow);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.network-hero h2 {
    margin: 8px 0 2px;
    font-size: clamp(2.8rem, 7vw, 5.7rem);
    line-height: .95;
    letter-spacing: -.045em;
}

.network-hero p {
    margin: 12px 0 0;
    color: var(--muted);
}

.network-symbol {
    width: 118px;
    height: 118px;

    display: grid;
    place-items: center;

    border: 2px solid var(--yellow);
    border-radius: 50%;

    color: var(--yellow);
    font-size: 1.5rem;
    font-weight: 900;

    box-shadow:
        inset 0 0 35px rgba(255,196,0,.08),
        0 0 30px rgba(255,196,0,.08);
}

.metric-grid {
    margin: 18px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.metric-card,
.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.metric-card {
    min-height: 132px;
    padding: 24px;
}

.metric-label {
    display: block;
    margin-bottom: 15px;

    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.metric-card strong {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1;
}

.metric-unit {
    margin-left: 6px;
    color: var(--yellow);
    font-size: .85rem;
    font-weight: 800;
}

.panel {
    padding: 26px;
}

.panel-heading {
    margin-bottom: 22px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.panel-heading h3 {
    margin: 5px 0 0;
    font-size: 1rem;
    letter-spacing: .08em;
}

#hashrate-window {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
}

.hashrate-chart {
    min-height: 300px;
    overflow: hidden;

    display: grid;
    place-items: center;

    border: 1px solid #252525;
    border-radius: 10px;

    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        #0c0c0c;

    background-size: 44px 44px;
}

.chart-placeholder {
    color: #555;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.time-selector {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.time-selector button {
    padding: 8px 15px;

    background: transparent;
    color: var(--muted);

    border-radius: 7px;
    font-size: .78rem;
    font-weight: 800;
}

.time-selector button:hover,
.time-selector button.active {
    background: var(--yellow);
    color: #000;
}

.two-column {
    margin: 18px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.stat-list {
    margin: 0;
}

.stat-list > div {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #242424;
}

.stat-list > div:last-child {
    border-bottom: 0;
}

.stat-list dt {
    color: var(--muted);
}

.stat-list dd {
    margin: 0;
    font-weight: 800;
}

.highlight-stat dd {
    color: var(--yellow);
}

.table-panel {
    margin-top: 18px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid #242424;
}

th {
    color: var(--muted);
    font-size: .7rem;
    letter-spacing: .1em;
}

td {
    font-size: .88rem;
}

.empty-row td {
    padding: 35px;
    text-align: center;
    color: #555;
}

.site-footer {
    min-height: 85px;
    padding: 20px 4vw;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid var(--line);

    color: var(--muted);
    font-size: .75rem;
}

.site-footer span:first-child {
    color: var(--red);
    font-weight: 900;
    letter-spacing: .12em;
}

/* BTC personality without changing BisonPool identity */

body[data-network="btc"] .network-symbol,
body[data-network="btc"] .eyebrow,
body[data-network="btc"] .metric-unit,
body[data-network="btc"] .highlight-stat dd {
    color: var(--yellow-soft);
}

/* Responsive */

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .network-selector {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-self: center;
    }

    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .dashboard {
        width: 92vw;
        padding-top: 22px;
    }

    .site-header {
        padding: 15px 4vw;
    }

    .brand p {
        display: none;
    }

    .pool-status {
        font-size: .65rem;
    }

    .network-hero {
        min-height: 170px;
        padding: 25px;
    }

    .network-symbol {
        width: 82px;
        height: 82px;
        font-size: 1rem;
    }

    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metric-card {
        min-height: 110px;
        padding: 18px;
    }

    .panel {
        padding: 19px;
    }

    .hashrate-chart {
        min-height: 220px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Live evidence chart */

.live-chart {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: visible;
}

.chart-line {
    fill: none;
    stroke: var(--yellow);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 0 7px rgba(255,196,0,.35));
}

.chart-dot {
    fill: var(--red);
    stroke: var(--yellow);
    stroke-width: 3;
}

.chart-value {
    fill: var(--white);
    font-size: 15px;
    font-weight: 800;
}

.chart-label {
    fill: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

/* =========================================================
   COMPACT DESKTOP DASHBOARD
   ========================================================= */

@media (min-width: 901px) {

    .site-header {
        min-height: 68px;
        padding: 10px 3vw;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .brand h1 {
        font-size: 1rem;
    }

    .brand p {
        margin-top: 2px;
        font-size: .68rem;
    }

    .network-button {
        min-width: 58px;
        padding: 7px 16px;
    }

    .dashboard {
        width: min(1440px, 94vw);
        padding: 20px 0 42px;
    }

    .network-hero {
        min-height: 125px;
        padding: 20px 30px;
    }

    .network-hero h2 {
        margin: 5px 0 0;
        font-size: clamp(2.4rem, 4vw, 3.8rem);
    }

    .network-hero p {
        margin-top: 7px;
        font-size: .85rem;
    }

    .network-symbol {
        width: 78px;
        height: 78px;
        font-size: 1.05rem;
    }

    .metric-grid {
        margin: 12px 0;
        gap: 10px;
    }

    .metric-card {
        min-height: 88px;
        padding: 16px 20px;
    }

    .metric-label {
        margin-bottom: 9px;
        font-size: .65rem;
    }

    .metric-card strong {
        font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    }

    .panel {
        padding: 18px 20px;
    }

    .panel-heading {
        margin-bottom: 13px;
    }

    .panel-heading h3 {
        font-size: .88rem;
    }

    .eyebrow {
        font-size: .62rem;
    }

    .hashrate-chart {
        min-height: 205px;
    }

    .live-chart {
        min-height: 205px;
    }

    .time-selector {
        margin-top: 9px;
    }

    .time-selector button {
        padding: 6px 12px;
        font-size: .7rem;
    }

    .two-column {
        margin: 12px 0;
        gap: 12px;
    }

    .stat-list > div {
        min-height: 37px;
    }

    .stat-list dt,
    .stat-list dd {
        font-size: .82rem;
    }

    .table-panel {
        margin-top: 12px;
    }

    th,
    td {
        padding: 10px 10px;
    }
}

.history-grid-line {
    stroke: rgba(255,255,255,.075);
    stroke-width: 1;
}

.history-axis-label {
    fill: #747474;
    font-size: 11px;
    font-weight: 700;
}

@media (min-width: 901px) {
    .hashrate-panel {
        padding-bottom: 14px;
    }

    .hashrate-chart,
    .live-chart {
        min-height: 190px;
        height: 190px;
    }
}

/* =========================================================
   LIVE DATA DENSITY PASS
   ========================================================= */

@media (min-width: 901px) {

    .dashboard {
        padding-top: 12px;
    }

    .network-hero {
        min-height: 82px;
        padding: 13px 26px;
    }

    .network-hero h2 {
        margin: 3px 0 0;
        font-size: 2.65rem;
        line-height: .9;
    }

    .network-hero p {
        margin-top: 5px;
        font-size: .72rem;
    }

    .network-symbol {
        width: 58px;
        height: 58px;
        font-size: .85rem;
    }

    .metric-grid {
        margin: 9px 0;
    }

    .metric-card {
        min-height: 73px;
        padding: 12px 17px;
    }

    .metric-label {
        margin-bottom: 6px;
    }

    .metric-card strong {
        font-size: 1.8rem;
    }

    .hashrate-panel {
        padding: 14px 17px 10px;
    }

    .hashrate-panel .panel-heading {
        margin-bottom: 7px;
    }

    .hashrate-chart,
    .live-chart {
        min-height: 215px;
        height: 215px;
    }

    .time-selector {
        margin-top: 5px;
    }

    .two-column {
        margin-top: 9px;
    }
}

.history-axis-label {
    fill: #969696;
    font-size: 13px;
    font-weight: 700;
}


.mono {
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
}

.block-status {
    display: inline-block;
    padding: 4px 8px;

    border: 1px solid rgba(255,196,0,.35);
    border-radius: 999px;

    color: var(--yellow);

    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.table-panel tbody tr:hover {
    background: rgba(255,255,255,.025);
}


.payout-status {
    display: inline-block;
    padding: 4px 8px;

    border: 1px solid rgba(80,220,110,.4);
    border-radius: 999px;

    color: #63e879;

    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
}


.miner-panel {
    margin-top: 9px;
}

.miner-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.miner-search input {
    min-width: 0;
    padding: 10px 13px;

    border: 1px solid var(--line);
    border-radius: 7px;

    background: #0b0b0b;
    color: var(--white);

    font: inherit;
}

.miner-search input:focus {
    outline: none;
    border-color: var(--yellow);
}

.miner-search button {
    padding: 0 24px;

    border: 0;
    border-radius: 7px;

    background: var(--red);
    color: white;

    font-weight: 900;
    letter-spacing: .08em;

    cursor: pointer;
}

.miner-message {
    margin-top: 8px;

    color: var(--muted);
    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: .72rem;
    overflow-wrap: anywhere;
}

.miner-results {
    margin-top: 13px;
}

.miner-stat-grid,
.miner-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.miner-stat-grid > div,
.miner-detail-grid > div {
    padding: 10px 14px;
    border-right: 1px solid var(--line);
}

.miner-stat-grid > div:last-child,
.miner-detail-grid > div:last-child {
    border-right: 0;
}

.miner-stat-grid {
    border-bottom: 1px solid var(--line);
}

.miner-stat-grid span,
.miner-detail-grid span {
    display: block;

    margin-bottom: 5px;

    color: var(--muted);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.miner-stat-grid strong {
    font-size: 1.25rem;
}

.miner-detail-grid strong {
    font-size: .85rem;
}

@media (max-width: 700px) {
    .miner-stat-grid,
    .miner-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .miner-search {
        grid-template-columns: 1fr;
    }

    .miner-search button {
        min-height: 40px;
    }
}


/* Top-level miner lookup */

.network-hero + .miner-panel {
    margin-top: 9px;
}

.miner-panel .panel-heading {
    margin-bottom: 8px;
}

.miner-panel:has(#miner-results[hidden]) {
    padding-top: 12px;
    padding-bottom: 12px;
}

.miner-panel:has(#miner-results[hidden]) .panel-heading {
    display: none;
}

.miner-panel:has(#miner-results[hidden]) .miner-message {
    margin-top: 6px;
}



/* =========================================================
   BISONPOOL APPLICATION SHELL
   ========================================================= */

:root {
    --sidebar-width: 184px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

.site-shell {
    min-height: 100vh;
    margin-left: var(--sidebar-width);
}

.site-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;

    width: var(--sidebar-width);

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--line);

    background:
        linear-gradient(
            180deg,
            #090909 0%,
            #0d0d0d 62%,
            #080808 100%
        );
}

.sidebar-brand {
    min-height: 122px;
    padding: 22px 18px;

    display: flex;
    align-items: center;
    gap: 11px;

    border-bottom: 1px solid var(--line);
}

.sidebar-bison {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border: 1px solid var(--red);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 35%,
            #e52a32,
            #9e1018
        );

    color: white;
    font-size: 1.25rem;
    font-weight: 1000;
}

.sidebar-brand strong {
    display: block;

    color: white;

    font-size: 1.05rem;
    font-weight: 1000;
    letter-spacing: .045em;
}

.sidebar-brand strong span {
    color: var(--red);
}

.sidebar-brand small {
    display: block;
    margin-top: 4px;

    color: var(--muted);

    font-size: .48rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
}

.sidebar-nav {
    padding: 12px 0;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-link {
    position: relative;

    min-height: 41px;
    padding: 0 17px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #b6b6b6;
    text-decoration: none;

    font-size: .78rem;
    font-weight: 700;

    transition:
        background .15s ease,
        color .15s ease;
}

.sidebar-link:hover {
    color: white;
    background: rgba(255,255,255,.035);
}

.sidebar-link.active {
    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(222,25,35,.88),
            rgba(222,25,35,.45)
        );
}

.sidebar-link.active::before {
    content: "";

    position: absolute;
    inset: 0 auto 0 0;

    width: 4px;

    background: var(--yellow);
}

.nav-icon {
    width: 20px;

    color: currentColor;

    text-align: center;
    font-size: .82rem;
    font-weight: 900;
}

.sidebar-rule {
    height: 1px;
    margin: 10px 20px;

    background: var(--line);
}

.sidebar-footer {
    margin-top: auto;
    padding: 18px 20px 24px;

    border-top: 1px solid var(--line);
}

.sidebar-bison-silhouette {
    margin-bottom: 10px;

    font-size: 2.6rem;
    line-height: 1;
    filter: grayscale(1);
}

.sidebar-footer strong {
    color: white;
    font-size: .82rem;
}

.sidebar-footer p {
    margin: 5px 0 12px;

    color: var(--muted);

    font-size: .64rem;
    line-height: 1.45;
}

.sidebar-footer span {
    color: var(--yellow);

    font-size: .58rem;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: .12em;
}

.mobile-menu-button {
    display: none;
}


/* Header now belongs to the application shell */

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;

    backdrop-filter: blur(14px);

    background:
        rgba(12,12,12,.94);
}


/* Stronger hero identity */

.network-hero {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            rgba(120,15,20,.30),
            rgba(24,24,24,.96) 43%
        );
}

.network-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            transparent 0 73%,
            rgba(220,24,33,.055) 73% 100%
        );
}


/* Section navigation */

#overview,
#my-mining,
#workers,
#blocks,
#payouts,
#evidence,
#network,
#api,
#help {
    scroll-margin-top: 78px;
}


/* Future destinations */

.utility-anchor {
    margin-top: 9px;
    padding: 15px 18px;

    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 2px 14px;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: var(--panel);
}

.utility-anchor > span {
    grid-row: 1 / 3;

    color: var(--yellow);

    font-size: .64rem;
    font-weight: 1000;
    letter-spacing: .12em;
}

.utility-anchor strong {
    color: white;
    font-size: .75rem;
}

.utility-anchor small {
    color: var(--muted);
    font-size: .65rem;
}


/* =========================================================
   MOBILE APPLICATION SHELL
   ========================================================= */

@media (max-width: 900px) {

    :root {
        --sidebar-width: 0px;
    }

    .site-shell {
        margin-left: 0;
    }

    .site-sidebar {
        width: 230px;

        transform: translateX(-100%);

        box-shadow:
            20px 0 50px rgba(0,0,0,.55);

        transition:
            transform .2s ease;
    }

    body.sidebar-open .site-sidebar {
        transform: translateX(0);
    }

    .mobile-menu-button {
        position: fixed;
        top: 12px;
        left: 12px;
        z-index: 130;

        width: 38px;
        height: 38px;

        display: grid;
        place-items: center;

        border: 1px solid var(--line);
        border-radius: 7px;

        background: #111;
        color: white;

        font-size: 1rem;

        cursor: pointer;
    }

    body.sidebar-open::after {
        content: "";

        position: fixed;
        inset: 0;
        z-index: 90;

        background: rgba(0,0,0,.58);
    }

    .site-header {
        padding-left: 60px;
    }
}



/* =========================================================
   BISONPOOL VISUAL ASSETS
   ========================================================= */

.sidebar-brand {
    position: relative;
    overflow: hidden;

    min-height: 138px;
    padding: 15px 12px;

    flex-direction: column;
    justify-content: center;
    gap: 4px;

    text-align: center;
}

.sidebar-logo {
    width: 105px;
    max-height: 82px;

    display: block;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(0 5px 10px rgba(0,0,0,.6));
}

.sidebar-wordmark strong {
    display: block;

    color: white;

    font-size: 1.03rem;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: .035em;
}

.sidebar-wordmark strong span {
    color: var(--red);
}

.sidebar-wordmark small {
    display: block;
    margin-top: 5px;

    color: #d0d0d0;

    font-size: .46rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .09em;
}


/* Mountain atmosphere */

.network-hero {
    min-height: 128px;

    isolation: isolate;

    background:
        linear-gradient(
            90deg,
            rgba(10,10,10,.82) 0%,
            rgba(10,10,10,.70) 42%,
            rgba(10,10,10,.86) 100%
        ),
        url("../assets/mountains.png");

    background-size: cover;
    background-position: center 48%;
    background-repeat: no-repeat;
}

.network-hero > * {
    position: relative;
    z-index: 2;
}

.network-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(218,24,34,.18),
            transparent 28%
        );
}

.network-hero::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            transparent 0 77%,
            rgba(218,24,34,.09) 77% 100%
        );
}


/* Sidebar bison */

.sidebar-footer {
    position: relative;
    overflow: hidden;

    min-height: 300px;
    padding-top: 160px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0,0,0,.28)
        );
}

.sidebar-bison-art {
    position: absolute;

    top: 0;
    left: 50%;

    width: 190px;
    height: 170px;

    transform: translateX(-50%);

    object-fit: cover;
    object-position: center 64%;

    opacity: .88;

    filter:
        grayscale(1)
        contrast(1.08)
        brightness(.72);

    pointer-events: none;
}

.sidebar-footer strong,
.sidebar-footer p,
.sidebar-footer span {
    position: relative;
    z-index: 2;
}


/* Make header branding subordinate to the sidebar */

@media (min-width: 901px) {

    .site-header .brand {
        min-width: 175px;
    }

    .site-header .brand-mark {
        display: none;
    }

    .site-header .brand h1 {
        font-size: .82rem;
        letter-spacing: .11em;
    }

    .site-header .brand p {
        font-size: .48rem;
    }
}


@media (max-width: 900px) {

    .sidebar-brand {
        min-height: 132px;
    }

    .sidebar-logo {
        width: 100px;
    }

    .sidebar-footer {
        min-height: 280px;
        padding-top: 150px;
    }

    .network-hero {
        background-position: center;
    }
}


.hero-network-name > span {
    display: block;

    margin-bottom: 3px;

    color: #d7d7d7;

    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .20em;
}

.hero-network-name h2 {
    text-shadow:
        0 2px 18px rgba(0,0,0,.9);
}


/* Final BisonPool identity polish */

.sidebar-bison-art {
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 76%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 76%,
            transparent 100%
        );
}

.network-hero h2 {
    font-size: clamp(2rem, 3.1vw, 3.35rem);
    line-height: .92;
    letter-spacing: -.035em;
}

.hero-network-name::after {
    content: "REAL WORK. REAL REWARDS.";

    display: block;
    margin-top: 7px;

    color: white;

    font-size: clamp(.72rem, 1vw, .95rem);
    font-weight: 900;
    letter-spacing: .09em;

    text-shadow: 0 2px 14px #000;
}

.site-header {
    border-bottom-color: rgba(255,255,255,.12);
}


/* =========================================================
   BTC HASHRATE WINDOW COMPARISON
   ========================================================= */

.btc-hashrate-bar {
    fill: var(--yellow);
    opacity: .88;
}

.btc-hashrate-bar:hover {
    opacity: 1;
}

.chart-grid-line {
    stroke: rgba(255,255,255,.07);
    stroke-width: 1;
}

.chart-axis-label {
    fill: #7f858d;
    font-size: 12px;
    font-weight: 700;
}

.chart-axis-title {
    fill: #8c9299;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}



/* BTC chart cleanup */

.btc-window-label {
    fill: #a7adb5;
    font-size: 13px;
    font-weight: 900;
}

.chart-baseline {
    stroke: rgba(255,255,255,.14);
    stroke-width: 1;
}


/*
 * KAS has selectable chronological ranges.
 * BTC currently displays simultaneous averaging windows.
 */

