.ngi-card {
    background: #fff;
    color: #111;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    font-family: 'Inter', sans-serif !important;
    height: 100%;
    min-height: 295px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.ngi-card * {
    font-family: 'Inter', sans-serif !important;
}

.ngi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ngi-small-title {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.ngi-info {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.18);
    color: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.ngi-main-score {
    display: inline-block;
    font-size: 72px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 12px;
}

.ngi-badge {
    display: inline-flex;
    width: fit-content;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ngi-breakdown {
    display: grid;
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.ngi-breakdown div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    font-weight: 700;
}

.ngi-breakdown span {
    color: #222;
}

.ngi-breakdown strong {
    font-size: 14px;
    font-weight: 900;
}

/* Score colours */

.ngi-elite {
    color: #d4a017 !important;
}

.ngi-good {
    color: #178a43 !important;
}

.ngi-mid {
    color: #f28c00 !important;
}

.ngi-bad {
    color: #e53935 !important;
}

/* Badge colours */

.ngi-elite-bg {
    background: rgba(212,160,23,0.16);
    color: #b8860b;
}

.ngi-good-bg {
    background: rgba(31,122,62,0.14);
    color: #1f7a3e;
}

.ngi-mid-bg {
    background: rgba(245,130,0,0.16);
    color: #f58200;
}

.ngi-bad-bg {
    background: rgba(217,58,47,0.14);
    color: #d93a2f;
}

@media (max-width: 640px) {
    .ngi-main-score {
        font-size: 56px;
    }
}