/*
 * Armory reputations CSS
 *
 * Phase 2A :
 * - le vrai CSS Réputations est maintenant centralisé ici ;
 * - l'ancien CSS inline dans index.php est encore conservé volontairement ;
 * - le rendu doit donc rester identique ;
 * - prochaine étape : supprimer les blocs Réputations inline de index.php après validation.
 */

/* ============================================================
   REPUTATIONS
   ============================================================ */

.armory-reputations-box {
    padding: 28px 48px 44px 48px;
    min-height: 440px;
    background: rgba(8, 8, 8, 0.84);
    border: 1px solid rgba(255, 204, 0, 0.12);
    box-shadow: inset 0 0 85px rgba(0, 0, 0, 0.78);
}

.armory-reputation-section {
    padding: 24px 0 34px 0;
    border-bottom: 1px solid rgba(255, 204, 0, 0.15);
}

.armory-reputation-section:last-child {
    border-bottom: 0;
}

.armory-reputation-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px 0;
    color: #ffffff;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.2;
    text-shadow: 0 2px 3px #000;
}

.armory-reputation-section-title img {
    width: 34px;
    height: 34px;
    opacity: 0.82;
}

.armory-reputation-group-title {
    margin: 18px 0 12px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 3px #000;
}

.armory-reputation-row {
    display: grid;
    grid-template-columns: 230px minmax(300px, 1fr) 130px;
    align-items: center;
    gap: 28px;
    margin: 13px 0;
}

.armory-reputation-name {
    color: #fff1d6;
    font-size: 17px;
    text-align: right;
    text-shadow: 0 2px 3px #000;
}

.armory-reputation-bar {
    position: relative;
    height: 31px;
    background: rgba(31, 21, 14, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.armory-reputation-fill {
    position: absolute;
    inset: 0 auto 0 0;
    min-width: 2px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.armory-reputation-value {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding-left: 14px;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 2px 4px #000;
}

.armory-reputation-rank {
    font-size: 17px;
    text-shadow: 0 2px 3px #000;
}

.armory-reputation-hated .armory-reputation-fill { background: #a3260f; }

.armory-reputation-hostile .armory-reputation-fill,
.armory-reputation-unfriendly .armory-reputation-fill { background: #cf6b28; }

.armory-reputation-neutral .armory-reputation-fill { background: #d8b917; }

.armory-reputation-friendly .armory-reputation-fill,
.armory-reputation-honored .armory-reputation-fill { background: #2f8913; }

.armory-reputation-revered .armory-reputation-fill,
.armory-reputation-exalted .armory-reputation-fill { background: #47a58b; }

.armory-reputation-hated .armory-reputation-rank,
.armory-reputation-hostile .armory-reputation-rank { color: #ff3c16; }

.armory-reputation-unfriendly .armory-reputation-rank { color: #ff7a22; }

.armory-reputation-neutral .armory-reputation-rank { color: #ffdd00; }

.armory-reputation-friendly .armory-reputation-rank,
.armory-reputation-honored .armory-reputation-rank { color: #39d51d; }

.armory-reputation-revered .armory-reputation-rank,
.armory-reputation-exalted .armory-reputation-rank { color: #55d6b1; }

@media (max-width: 900px) {
.armory-reputations-box {
        padding: 22px 18px 30px 18px;
    }

.armory-reputation-row {
        grid-template-columns: 1fr;
        gap: 7px;
        margin: 20px 0;
    }

.armory-reputation-name {
        text-align: left;
    }
}

/* ============================================================
   END REPUTATIONS
   ============================================================ */
