
/* 🔥 ANTI-FLICKER */
body.page-equipados {
    visibility: hidden;
}
body.page-equipados.ready {
    visibility: visible;
}

/* =========================
   XP (IMPORTANTE)
========================= */

.xp-bg {
    width: 100%;
    height: 8px;
    background: #18181b;
    border-radius: 4px;
    margin-top: 5px;
    overflow: hidden;
    border: 1px solid #27272a;
}

#xp-bar {
    height: 100%;
    background: linear-gradient(90deg, #facc15, #eab308);
    width: 0%;
}

/* =========================
   MENU BASE (IGUAL INDEX)
========================= */

.menu-list { 
    padding: 10px 15px 90px 15px; 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
    margin-top: 10px; 
}

.menu-category { 
    font-size: 10px; 
    color: #71717a; 
    text-transform: uppercase; 
    letter-spacing: 1.2px; 
    margin: 12px 0 4px 5px; 
    font-weight: 800;
}

.menu-item { 
    background: #111113; 
    border: 1px solid #27272a; 
    padding: 10px 12px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    text-decoration: none;
    min-height: 46px;
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-info { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: #f4f4f5; 
    font-size: 13px;
    white-space: nowrap;
}

.menu-icon { 
    width: 30px; 
    height: 30px; 
    background: #09090b; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 6px; 
    font-size: 16px; 
    border: 1px solid #18181b; 
}

.arrow { 
    color: #3f3f46; 
    font-size: 12px; 
    opacity: 0.4; 
}


/* =========================
   NOVA UI EQUIPADOS
========================= */

.equip-card {
    background: linear-gradient(145deg, #111113, #0c0c0f);
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.equip-card:active {
    transform: scale(0.97);
}

.equip-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.equip-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #09090b;
    border: 1px solid #18181b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.equip-name {
    font-size: 13px;
    font-weight: bold;
    color: #f4f4f5;
}

.equip-meta {
    font-size: 10px;
}

/* cores raridade */
.raridade-comum { color: #a1a1aa; }
.raridade-raro { color: #3b82f6; }
.raridade-epico { color: #a855f7; }
.raridade-lendario { color: #facc15; }
.raridade-mistico { color: #ec4899; }
.raridade-divino { color: #22c55e; }

.btn-remove {
    background: #7f1d1d;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.btn-remove:hover {
    background: #b91c1c;
}

