/* =========================================================================================================================== */
/*                                            🧩 METRICS – DIFFICULTY                                                          */
/*                                            📍 static/css/pages/metrics/difficulty.css                                       */
/* =========================================================================================================================== */



/* HEADLINE */
.headline-metrics-difficulty {
    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 (exakt wie im Chart) */
    background: linear-gradient(
        90deg,
        rgb(120, 120, 255) 0%,   /* Hellblau – Chart-Fill-Eindruck */
        rgb(120, 120, 255) 45%,
        rgb(0, 0, 255) 55%,     /* Blau – Chart-Linie */
        rgb(0, 0, 255) 100%
    );

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

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

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

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

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

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

/* Info Box - Rahmenfarbe*/
.info-box-metrics-difficulty {
    box-shadow:
        /* 🔵 Difficulty – Blau */
        0 0 0 1px rgba(0, 0, 255, 1),
        0 0 10px rgba(0, 0, 255, 1);
}