/* =========================================================================================================================== */
/*                                            🧩 METRICS – HASHRATE                                                            */
/*                                            📍 static/css/pages/metrics/hashrate.css                                         */
/* =========================================================================================================================== */



/* HEADLINE */
.headline-metrics-btc-hashrate {
    font-family: "Courier New", monospace;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;

    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.25rem;

    /* 🔴 heller Fill → 🔴 Linie (wie im Chart) */
    background: linear-gradient(
        90deg,
        rgb(255, 120, 120) 0%,   /* Hellrot – Chart-Fill */
        rgb(255, 120, 120) 45%,
        rgb(255, 0, 0) 55%,     /* Rot – Chart-Linie */
        rgb(255, 0, 0) 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* ✨ identischer Energie-Glow */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.45),
        0 0 10px rgba(255,0,0,0.6),
        0 0 14px rgba(255,120,120,0.5);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================================================================================================================================= */

/* Abstand zwischen Chart und Info-Box */
#METRICS_BTC_HASHRATE_CONTAINER {
    margin-bottom: 3rem;
}

/* Info-Box – orientiert an Hashrate-Farbe */
.info-box-metrics-hashrate {
    box-shadow:
        /* 🔴 Hashrate-Kurve – gedämpftes Rot */
        0 0 0 1px rgba(200, 30, 30, 1),
        0 0 10px rgba(200, 30, 30, 1);
}



