/* =========================================
   🎮 BADGES SYSTÈME (STYLE CLEAN & LOGO)
   ========================================= */

.badge-coach {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px; /* Style Pillule comme l'Admin */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-coach i {
    font-size: 13px;
}

/* ⚪ RECRUE */
.badge-recrue {
    background: linear-gradient(135deg, #636e72 0%, #b2bec3 100%);
}

/* 🔵 CONFIRMÉ */
.badge-confirme {
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
}

/* 🟣 EXPERT */
.badge-expert {
    background: linear-gradient(135deg, #a29bfe 0%, #c4b5fd 100%);
}

/* 🟡 ELITE */
.badge-elite {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #000000;
}

.badge-elite i {
    color: #000000;
}

/* 🔴 PIONNIER */
.badge-pionnier {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
}

/* 🚀 BOOSTÉ (Sur les cartes) */
.badge-boosted {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.badge-boosted i {
    color: #000000;
}