/* BARRA DE XP */
.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%; 
    transition: width 0.3s ease;
}

/* QUADRADOS DE STATUS */
.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 5px;
}

.box {
    flex: 1;
    background: #111113;
    border: 1px solid #27272a;
    padding: 12px 5px;
    border-radius: 10px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: #f4f4f5;
}

/* MENUS */
.menu-list { 
    padding: 10px 15px 110px 15px; 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    margin-top: 10px; 
}

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

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

.menu-info { display: flex; align-items: center; gap: 14px; color: #f4f4f5; font-size: 14px; }
.menu-icon { width: 36px; height: 36px; background: #09090b; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 18px; border: 1px solid #18181b; }
.arrow { color: #3f3f46; font-size: 14px; opacity: 0.5; }
