/* ======================================
   HERO CARD
====================================== */

.ff-score-card {
    border: 0;

    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(84, 195, 211, 0.16), transparent 24%),
        linear-gradient(135deg, var(--ff-hero-top) 0%, var(--ff-hero-bottom) 100%);
    box-shadow:
        0 16px 34px rgba(11, 34, 51, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.ff-score-card .card-body {
    padding: 1.15rem 1.2rem;
}

/* ======================================
   SCORE RING
====================================== */

.score-daily-trigger {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ff-score-ring-shell {
    width: 146px;
    height: 146px;
    border-radius: 50%;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.07), transparent 42%),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 10px 22px rgba(0,0,0,0.20);
}

#score-daily {
    width: 128px;
    height: 128px;
    max-width: 128px;
}

.ff-score-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ff-score-number {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.ff-score-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    margin-top: 4px;
}

/* ======================================
   HERO TEXT
====================================== */

.ff-score-title {
    color: #ffffff;

    letter-spacing: -0.01em;
    line-height: 1.15;

}

.ff-score-note {
    color: rgba(231, 243, 248, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 620px;
}

/* ======================================
   HERO STATUS BADGE
====================================== */

.ff-score-status {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: var(--bs-border-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
}

/* ======================================
   HERO METRIC PILLS
====================================== */

.ff-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--bs-border-radius-pill);
    background: rgba(255,255,255,0.10);
    color: #eef7fb;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1;
    transition: background 0.15s ease;
}

.ff-hero-pill i {
    font-size: 0.8rem;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
}

.ff-hero-pill-label {
    color: rgba(226, 241, 248, 0.65);
    font-weight: 500;
}

.ff-hero-pill:hover {
    background: rgba(255,255,255,0.14);
}