/* --- LE TIROIR DES RARETÉS GAMELAND --- */

/* Style de base pour toutes les icônes Wiki */
.gl-item-icon-wiki {
    border-radius: 8px;
    padding: 10px;
    background: #111;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

/* 1. Les Armes (Orange Rust) */
.gl-rare-war { 
    border-color: #cd5212; 
    box-shadow: 0 0 15px rgba(205, 82, 18, 0.3); 
}

/* 2. Les Outils (Bleu électrique) */
.gl-rare-utility { 
    border-color: #2e86de; 
    box-shadow: 0 0 15px rgba(46, 134, 222, 0.3); 
}

/* 3. La Construction (Vert forêt) */
.gl-rare-build { 
    border-color: #10ac84; 
    box-shadow: 0 0 15px rgba(16, 172, 132, 0.3); 
}

/* 4. Les Composants (Gris métal) */
.gl-rare-component { 
    border-color: #95afc0; 
    box-shadow: 0 0 15px rgba(149, 175, 192, 0.3); 
}

/* 5. L'Armure (Or) */
.gl-rare-armor { 
    border-color: #f1c40f; 
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.3); 
}

/* --- DATA VIZ WIKI --- */
.gl-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
}

.gl-stat-label {
    color: #aaa;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.gl-stat-value {
    font-weight: bold;
    color: #cd5212;
}

/* Optionnel : petite barre sous la valeur pour le style */
.gl-stat-bar-bg {
    background: #111;
    height: 4px;
    width: 60px;
    margin-left: 10px;
    border-radius: 2px;
    overflow: hidden;
}
.gl-stat-bar-fill {
    background: #cd5212;
    height: 100%;
}

