/* ============================================================
   Academy Gamification — BuddyBoss Frontend Styles
   Scoped strictly to .academy-* selectors.
   Loaded via bp_enqueue_scripts — BuddyBoss pages only.
   No inline styles are used anywhere in the plugin.
   ============================================================ */

/* ── Profile Header Stats Block ──────────────────────────── */
.academy-profile-stats {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        margin-top: 8px;
        font-size: 0.88rem;
        flex-wrap: wrap;
}

.academy-level-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #1e1e2d;
        color: #fff;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: .03em;
}

.academy-level-badge strong {
        font-size: 1rem;
        font-weight: 700;
}

.academy-currency-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #f4f0e8;
        color: #6b4f1a;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.82rem;
        font-weight: 500;
        border: 1px solid #d4b88a;
}

.academy-currency-badge strong {
        font-weight: 700;
}

/* ── XP Progress Bar ─────────────────────────────────────── */
.academy-xp-bar {
        width: 120px;
        height: 6px;
        background: #e4e4e4;
        border-radius: 3px;
        overflow: hidden;
        display: inline-block;
        vertical-align: middle;
}

.academy-xp-fill {
        height: 100%;
        background: linear-gradient(90deg, #4a90d9, #7b5ea7);
        border-radius: 3px;
        transition: width 0.4s ease;
        min-width: 2px;
}

/* ── Member Directory Level Badge ────────────────────────── */
.academy-dir-level-badge {
        display: inline-block;
        background: #1e1e2d;
        color: #fff;
        font-size: 0.72rem;
        font-weight: 600;
        padding: 2px 7px;
        border-radius: 12px;
        margin-left: 6px;
        vertical-align: middle;
        letter-spacing: .03em;
}

/* ── Phase 2A: Equipped title — profile header ───────────── */
.academy-equipped-title {
        display: block;
        width: 100%;
        font-size: 0.82rem;
        font-style: italic;
        color: #7b5ea7;
        font-weight: 500;
        letter-spacing: 0.02em;
        margin-bottom: 4px;
}

/* ── Phase 2A: Equipped title — member directory card ────── */
.academy-dir-title {
        display: inline-block;
        font-size: 0.72rem;
        font-style: italic;
        color: #7b5ea7;
        margin-left: 6px;
        vertical-align: middle;
}

/* ── Phase 2A: Pierres icon in profile header ────────────── */
.academy-icon-pierre-profile {
        width: 14px;
        height: 14px;
        object-fit: contain;
        vertical-align: middle;
}

/* ══════════════════════════════════════════════════════════════
   v2.1.34 — Equipped title badges in activity feed & forums
   ──────────────────────────────────────────────────────────────
   Vibrant solid-color pills with colored glow — matches the
   AMT style that users loved. White text on rarity background.
   ══════════════════════════════════════════════════════════════ */

.academy-activity-title {
        display: inline-block;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding: 2px 9px;
        border-radius: 20px;
        vertical-align: middle;
        margin-left: 6px;
        color: #fff !important;
        white-space: nowrap;
        line-height: 1.5;
        position: relative;
        top: -1px;
}

.academy-activity-title.academy-rarity-common {
        background: #64748b;
        box-shadow: 0 2px 6px rgba(100, 116, 139, 0.35);
}
.academy-activity-title.academy-rarity-rare {
        background: #3b82f6;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.45);
}
.academy-activity-title.academy-rarity-epic {
        background: #a855f7;
        box-shadow: 0 2px 8px rgba(168, 85, 247, 0.45);
}
.academy-activity-title.academy-rarity-legendary {
        background: linear-gradient(135deg, #f59e0b, #e88d00);
        box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
}

/* ── Forum title badge — same vibrant style ──────────────── */
.academy-forum-title {
        display: inline-block;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding: 2px 9px;
        border-radius: 20px;
        margin-top: 5px;
        color: #fff !important;
        white-space: nowrap;
        line-height: 1.5;
}

.academy-forum-title.academy-rarity-common {
        background: #64748b;
        box-shadow: 0 2px 6px rgba(100, 116, 139, 0.35);
}
.academy-forum-title.academy-rarity-rare {
        background: #3b82f6;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.45);
}
.academy-forum-title.academy-rarity-epic {
        background: #a855f7;
        box-shadow: 0 2px 8px rgba(168, 85, 247, 0.45);
}
.academy-forum-title.academy-rarity-legendary {
        background: linear-gradient(135deg, #f59e0b, #e88d00);
        box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
}
